diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md new file mode 100644 index 0000000000..68f4ea71f4 --- /dev/null +++ b/.github/copilot-instructions.md @@ -0,0 +1,82 @@ +# GitHub Copilot Instructions for SkiaSharp + +This file provides context for AI coding assistants working on SkiaSharp. + +## Quick Start + +**For quick reference:** See **[AGENTS.md](../AGENTS.md)** - 2 minute overview + +**For practical guide:** See **[design/QUICKSTART.md](../design/QUICKSTART.md)** - 10 minute tutorial + +**For comprehensive docs:** See **[design/](../design/)** folder + +## Path-Specific Instructions + +AI assistants automatically load context based on file paths from `.github/instructions/`: + +- **C API Layer** (`externals/skia/src/c/`) → [c-api-layer.instructions.md](instructions/c-api-layer.instructions.md) +- **C# Bindings** (`binding/SkiaSharp/`) → [csharp-bindings.instructions.md](instructions/csharp-bindings.instructions.md) +- **Generated Code** (`*.generated.cs`) → [generated-code.instructions.md](instructions/generated-code.instructions.md) +- **Native Skia** (`externals/skia/`) → [native-skia.instructions.md](instructions/native-skia.instructions.md) +- **Tests** (`tests/`) → [tests.instructions.md](instructions/tests.instructions.md) +- **Samples** (`samples/`) → [samples.instructions.md](instructions/samples.instructions.md) +- **Documentation** (`*.md`) → [documentation.instructions.md](instructions/documentation.instructions.md) + +See [instructions/README.md](instructions/README.md) for details. + +## Documentation Index + +### Essential Reading +- **[AGENTS.md](../AGENTS.md)** - Quick reference (AI agents, quick lookup) +- **[design/QUICKSTART.md](../design/QUICKSTART.md)** - Practical tutorial (new contributors) +- **[design/README.md](../design/README.md)** - Documentation index + +### Architecture & Concepts +- **[design/architecture-overview.md](../design/architecture-overview.md)** - Three-layer architecture, design principles +- **[design/memory-management.md](../design/memory-management.md)** - **Critical:** Pointer types, ownership, lifecycle +- **[design/error-handling.md](../design/error-handling.md)** - Error propagation through layers + +### Contributor Guides +- **[design/adding-new-apis.md](../design/adding-new-apis.md)** - Complete step-by-step guide with examples +- **[design/layer-mapping.md](../design/layer-mapping.md)** - Type mappings and naming conventions + +## Core Principles + +### Memory Management +Three pointer types (see [memory-management.md](../design/memory-management.md)): +1. **Raw (Non-Owning)** - Parameters, borrowed refs → No cleanup +2. **Owned** - Canvas, Paint → Call delete on dispose +3. **Ref-Counted** - Image, Shader, Data → Call unref on dispose + +### Error Handling +- **C API:** Minimal wrapper, trusts C# validation +- **C#:** Validates ALL parameters, checks returns, throws exceptions + +### Layer Boundaries +- **C++ → C API:** Direct calls, type conversion +- **C API → C#:** P/Invoke, parameter validation + +## Build & Test + +```bash +# Build managed code only +dotnet cake --target=libs + +# Run tests +dotnet cake --target=tests + +# Download pre-built native libraries +dotnet cake --target=externals-download +``` + +## When In Doubt + +1. Check [QUICKSTART.md](../design/QUICKSTART.md) for common patterns +2. Find similar existing API and follow its pattern +3. See [design/](../design/) for comprehensive details +4. Verify pointer type carefully (most important!) +5. Test memory management thoroughly + +--- + +**Remember:** Three layers, three pointer types, C# is the safety boundary. diff --git a/.github/copilot-instructions.md.backup b/.github/copilot-instructions.md.backup new file mode 100644 index 0000000000..2f282a52f5 --- /dev/null +++ b/.github/copilot-instructions.md.backup @@ -0,0 +1,585 @@ +# GitHub Copilot Instructions for SkiaSharp + +This file provides context and guidelines for AI assistants (like GitHub Copilot) working on the SkiaSharp codebase. It supplements the detailed documentation in the `design/` folder. + +## Project Overview + +SkiaSharp is a cross-platform 2D graphics API for .NET that wraps Google's Skia Graphics Library using a three-layer architecture: + +1. **C++ Skia Layer** (`externals/skia/`) - Native Skia graphics engine +2. **C API Layer** (`externals/skia/include/c/`, `externals/skia/src/c/`) - C wrapper for P/Invoke +3. **C# Wrapper Layer** (`binding/SkiaSharp/`) - Managed .NET API + +**Key Principle:** C++ exceptions cannot cross the C API boundary. All error handling must use return values, not exceptions. + +## Architecture Quick Reference + +### Three-Layer Call Flow + +``` +C# Application + ↓ (calls method) +SKCanvas.DrawRect() in binding/SkiaSharp/SKCanvas.cs + ↓ (validates parameters, P/Invoke) +sk_canvas_draw_rect() in externals/skia/src/c/sk_canvas.cpp + ↓ (type conversion, AsCanvas macro) +SkCanvas::drawRect() in native Skia C++ code + ↓ (renders) +Native Graphics +``` + +### File Locations by Layer + +| What | C++ | C API | C# | +|------|-----|-------|-----| +| **Headers** | `externals/skia/include/core/*.h` | `externals/skia/include/c/*.h` | `binding/SkiaSharp/SkiaApi.cs` | +| **Implementation** | `externals/skia/src/` | `externals/skia/src/c/*.cpp` | `binding/SkiaSharp/*.cs` | +| **Example** | `SkCanvas.h` | `sk_canvas.h`, `sk_canvas.cpp` | `SKCanvas.cs`, `SkiaApi.cs` | + +## Critical Memory Management Rules + +### Three Pointer Type Categories + +SkiaSharp uses three distinct pointer/ownership patterns. **You must identify which type before adding or modifying APIs.** + +#### 1. Raw Pointers (Non-Owning) +- **C++:** `SkType*` or `const SkType&` parameters/returns from getters +- **C API:** `sk_type_t*` passed or returned, no create/destroy functions +- **C#:** `OwnsHandle = false`, often in `OwnedObjects` collection +- **Cleanup:** None (owned elsewhere) +- **Examples:** Parameters to draw methods, `Canvas.Surface` getter + +```csharp +// Non-owning example +public SKSurface Surface { + get { + var handle = SkiaApi.sk_canvas_get_surface(Handle); + return GetOrAddObject(handle, owns: false, (h, o) => new SKSurface(h, o)); + } +} +``` + +#### 2. Owned Pointers (Unique Ownership) +- **C++:** Mutable classes, `new`/`delete`, or `std::unique_ptr` +- **C API:** `sk_type_new()`/`sk_type_delete()` or `sk_type_destroy()` +- **C#:** `SKObject` with `OwnsHandle = true`, calls delete in `DisposeNative()` +- **Cleanup:** `delete` or `destroy` function +- **Examples:** `SKCanvas`, `SKPaint`, `SKPath`, `SKBitmap` + +```csharp +// Owned pointer example +public class SKCanvas : SKObject +{ + public SKCanvas(SKBitmap bitmap) : base(IntPtr.Zero, true) + { + Handle = SkiaApi.sk_canvas_new_from_bitmap(bitmap.Handle); + } + + protected override void DisposeNative() + { + SkiaApi.sk_canvas_destroy(Handle); + } +} +``` + +#### 3. Reference-Counted Pointers (Shared Ownership) + +Skia has **two variants** of reference counting: + +**Variant A: Virtual Reference Counting (`SkRefCnt`)** +- **C++:** Inherits `SkRefCnt`, has virtual destructor +- **C API:** `sk_type_ref()`/`sk_type_unref()` or `sk_refcnt_safe_ref()` +- **C#:** `SKObject` implements `ISKReferenceCounted`, calls `unref` in `DisposeNative()` +- **Cleanup:** `unref()` (automatic via `ISKReferenceCounted`) +- **Examples:** `SKImage`, `SKShader`, `SKColorFilter`, `SKImageFilter`, `SKTypeface`, `SKSurface` + +**Variant B: Non-Virtual Reference Counting (`SkNVRefCnt`)** +- **C++:** Inherits `SkNVRefCnt` template, no virtual destructor (lighter weight) +- **C API:** Type-specific functions like `sk_data_ref()`/`sk_data_unref()` +- **C#:** `SKObject` implements `ISKNonVirtualReferenceCounted`, calls type-specific unref +- **Cleanup:** Type-specific `unref()` (automatic via interface) +- **Examples:** `SKData`, `SKTextBlob`, `SKVertices`, `SKColorSpace` + +```csharp +// Virtual ref-counted example (most common) +public class SKImage : SKObject, ISKReferenceCounted +{ + public static SKImage FromBitmap(SKBitmap bitmap) + { + var handle = SkiaApi.sk_image_new_from_bitmap(bitmap.Handle); + return GetObject(handle); // Ref count = 1, will unref on dispose + } +} + +// Non-virtual ref-counted example (lighter weight) +public class SKData : SKObject, ISKNonVirtualReferenceCounted +{ + void ISKNonVirtualReferenceCounted.ReferenceNative() => SkiaApi.sk_data_ref(Handle); + void ISKNonVirtualReferenceCounted.UnreferenceNative() => SkiaApi.sk_data_unref(Handle); +} +``` + +**Why two variants:** +- `SkRefCnt`: Most types, supports inheritance/polymorphism (8-16 byte overhead) +- `SkNVRefCnt`: Performance-critical types, no inheritance (4 byte overhead) + +### How to Identify Pointer Type + +**Check the C++ API:** +1. **Inherits `SkRefCnt` or `SkRefCntBase`?** → Virtual reference-counted +2. **Inherits `SkNVRefCnt`?** → Non-virtual reference-counted +3. **Returns `sk_sp`?** → Reference-counted (either variant) +4. **Mutable class (Canvas, Paint, Path)?** → Owned pointer +5. **Parameter or getter return?** → Raw pointer (non-owning) + +**In C API layer:** +- Type-specific `sk_data_ref()`/`sk_data_unref()` exist? → Non-virtual ref-counted +- Generic `sk_type_ref()`/`sk_type_unref()` or `sk_refcnt_safe_ref()`? → Virtual ref-counted +- `sk_type_new()` and `sk_type_delete()`? → Owned +- Neither? → Raw pointer + +**In C# layer:** +- Implements `ISKNonVirtualReferenceCounted`? → Non-virtual ref-counted +- Implements `ISKReferenceCounted`? → Virtual ref-counted +- Has `DisposeNative()` calling `delete` or `destroy`? → Owned +- Created with `owns: false`? → Raw pointer + +## Error Handling Rules + +### C API Layer (Exception Firewall) + +**Never let exceptions cross the C API boundary:** + +```cpp +// ❌ WRONG - Exception will crash +SK_C_API void sk_function() { + throw std::exception(); // NEVER DO THIS +} + +// ✅ CORRECT - Catch and convert to error code +SK_C_API bool sk_function() { + try { + // C++ code that might throw + return true; + } catch (...) { + return false; // Convert to bool/null/error code + } +} +``` + +**Error signaling patterns:** +- Return `bool` for success/failure +- Return `nullptr` for factory failures +- Use out parameters for detailed error codes +- Add defensive null checks + +### C# Layer (Validation) + +**Validate before calling native code:** + +```csharp +public void DrawRect(SKRect rect, SKPaint paint) +{ + // 1. Validate parameters + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + + // 2. Check object state + if (Handle == IntPtr.Zero) + throw new ObjectDisposedException("SKCanvas"); + + // 3. Call native (safe, validated) + SkiaApi.sk_canvas_draw_rect(Handle, &rect, paint.Handle); +} + +// For factory methods, check return values +public static SKImage FromData(SKData data) +{ + if (data == null) + throw new ArgumentNullException(nameof(data)); + + var handle = SkiaApi.sk_image_new_from_encoded(data.Handle); + + if (handle == IntPtr.Zero) + throw new InvalidOperationException("Failed to decode image"); + + return GetObject(handle); +} +``` + +## Common Patterns and Examples + +### Pattern 1: Adding a Drawing Method + +```cpp +// C API (externals/skia/src/c/sk_canvas.cpp) +void sk_canvas_draw_rect(sk_canvas_t* canvas, const sk_rect_t* rect, const sk_paint_t* paint) { + if (!canvas || !rect || !paint) // Defensive null checks + return; + AsCanvas(canvas)->drawRect(*AsRect(rect), *AsPaint(paint)); +} +``` + +```csharp +// C# (binding/SkiaSharp/SKCanvas.cs) +public unsafe void DrawRect(SKRect rect, SKPaint paint) +{ + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + SkiaApi.sk_canvas_draw_rect(Handle, &rect, paint.Handle); +} +``` + +### Pattern 2: Property with Get/Set + +```cpp +// C API +sk_color_t sk_paint_get_color(const sk_paint_t* paint) { + return AsPaint(paint)->getColor(); +} + +void sk_paint_set_color(sk_paint_t* paint, sk_color_t color) { + AsPaint(paint)->setColor(color); +} +``` + +```csharp +// C# +public SKColor Color +{ + get => (SKColor)SkiaApi.sk_paint_get_color(Handle); + set => SkiaApi.sk_paint_set_color(Handle, (uint)value); +} +``` + +### Pattern 3: Factory Returning Reference-Counted Object + +```cpp +// C API - Notice sk_ref_sp() for ref-counted parameter +sk_image_t* sk_image_new_from_encoded(const sk_data_t* data) { + try { + // sk_ref_sp increments ref count when creating sk_sp + auto image = SkImages::DeferredFromEncodedData(sk_ref_sp(AsData(data))); + return ToImage(image.release()); // .release() returns pointer, ref count = 1 + } catch (...) { + return nullptr; + } +} +``` + +```csharp +// C# - GetObject() for reference-counted objects +public static SKImage FromEncodedData(SKData data) +{ + if (data == null) + throw new ArgumentNullException(nameof(data)); + + var handle = SkiaApi.sk_image_new_from_encoded(data.Handle); + if (handle == IntPtr.Zero) + throw new InvalidOperationException("Failed to decode image"); + + return GetObject(handle); // For ISKReferenceCounted types +} +``` + +### Pattern 4: Taking Reference-Counted Parameter + +```cpp +// When C++ expects sk_sp, use sk_ref_sp() to increment ref count +SK_C_API sk_image_t* sk_image_apply_filter(const sk_image_t* image, const sk_imagefilter_t* filter) { + // filter is ref-counted, C++ wants sk_sp - use sk_ref_sp to increment ref + return ToImage(AsImage(image)->makeWithFilter( + sk_ref_sp(AsImageFilter(filter))).release()); +} +``` + +## Type Conversion Reference + +### C API Type Conversion Macros + +Located in `externals/skia/src/c/sk_types_priv.h`: + +```cpp +AsCanvas(sk_canvas_t*) → SkCanvas* // C to C++ +ToCanvas(SkCanvas*) → sk_canvas_t* // C++ to C +AsPaint(sk_paint_t*) → SkPaint* +ToPaint(SkPaint*) → sk_paint_t* +AsImage(sk_image_t*) → SkImage* +ToImage(SkImage*) → sk_image_t* +AsRect(sk_rect_t*) → SkRect* +// ... and many more +``` + +**Usage:** +- `AsXxx()`: Converting from C API type to C++ type (reading parameter) +- `ToXxx()`: Converting from C++ type to C API type (returning value) +- Dereference with `*` to convert pointer to reference: `*AsRect(rect)` + +### C# Type Aliases + +In `binding/SkiaSharp/SkiaApi.generated.cs`: + +```csharp +using sk_canvas_t = System.IntPtr; +using sk_paint_t = System.IntPtr; +using sk_image_t = System.IntPtr; +// All opaque pointer types are IntPtr in C# +``` + +## Naming Conventions + +### Across Layers + +| C++ | C API | C# | +|-----|-------|-----| +| `SkCanvas` | `sk_canvas_t*` | `SKCanvas` | +| `SkCanvas::drawRect()` | `sk_canvas_draw_rect()` | `SKCanvas.DrawRect()` | +| `SkPaint::getColor()` | `sk_paint_get_color()` | `SKPaint.Color` (property) | +| `SkImage::width()` | `sk_image_get_width()` | `SKImage.Width` (property) | + +### Function Naming + +**C API pattern:** `sk__[_
]` + +Examples: +- `sk_canvas_draw_rect` - Draw method +- `sk_paint_get_color` - Getter +- `sk_paint_set_color` - Setter +- `sk_image_new_from_bitmap` - Factory +- `sk_canvas_save_layer` - Method with detail + +**C# conventions:** +- PascalCase for methods and properties +- Use properties instead of get/set methods +- Add convenience overloads +- Use XML documentation comments + +## Code Generation + +SkiaSharp has both hand-written and generated code: + +### Hand-Written +- C API layer: All `.cpp` files in `externals/skia/src/c/` +- C# wrappers: Logic in `binding/SkiaSharp/*.cs` +- Some P/Invoke: `binding/SkiaSharp/SkiaApi.cs` + +### Generated +- P/Invoke declarations: `binding/SkiaSharp/SkiaApi.generated.cs` +- Generator: `utils/SkiaSharpGenerator/` + +**Don't manually edit generated files.** Regenerate with: +```bash +dotnet run --project utils/SkiaSharpGenerator/SkiaSharpGenerator.csproj -- generate +``` + +## Threading Considerations + +**Skia is NOT thread-safe:** +- Most objects should only be accessed from one thread +- Canvas operations must be single-threaded +- Immutable objects (SKImage) can be shared after creation +- Reference counting is atomic (thread-safe) +- Handle dictionary uses ConcurrentDictionary + +**In code:** +- Don't add locks to wrapper code +- Document thread-safety requirements +- Let users handle synchronization + +## Common Mistakes to Avoid + +### ❌ Wrong Pointer Type +```csharp +// WRONG - SKImage is reference-counted, not owned +public class SKImage : SKObject // Missing ISKReferenceCounted +{ + protected override void DisposeNative() + { + SkiaApi.sk_image_delete(Handle); // Should be unref, not delete! + } +} +``` + +### ❌ Not Incrementing Ref Count +```cpp +// WRONG - C++ expects sk_sp but we're not incrementing ref count +sk_image_t* sk_image_apply_filter(const sk_image_t* image, const sk_imagefilter_t* filter) { + return ToImage(AsImage(image)->makeWithFilter( + AsImageFilter(filter)).release()); // Missing sk_ref_sp! +} +``` + +### ❌ Exception Crossing Boundary +```cpp +// WRONG - Exception will crash +SK_C_API sk_image_t* sk_image_from_data(sk_data_t* data) { + auto image = SkImages::DeferredFromEncodedData(sk_ref_sp(AsData(data))); + if (!image) + throw std::runtime_error("Failed"); // DON'T THROW! + return ToImage(image.release()); +} +``` + +### ❌ Disposing Borrowed Objects +```csharp +// WRONG - Surface is owned by canvas, not by this wrapper +public SKSurface Surface { + get { + var handle = SkiaApi.sk_canvas_get_surface(Handle); + return new SKSurface(handle, true); // Should be owns: false! + } +} +``` + +### ❌ Missing Parameter Validation +```csharp +// WRONG - No validation before P/Invoke +public void DrawRect(SKRect rect, SKPaint paint) +{ + SkiaApi.sk_canvas_draw_rect(Handle, &rect, paint.Handle); + // What if paint is null? What if this object is disposed? +} +``` + +## Checklist for AI-Assisted Changes + +When adding or modifying APIs: + +### Analysis +- [ ] Located C++ API in Skia headers +- [ ] Identified pointer type (raw/owned/ref-counted) +- [ ] Checked if operation can fail +- [ ] Verified parameter types + +### C API Layer +- [ ] Added defensive null checks +- [ ] Used correct conversion macros (AsXxx/ToXxx) +- [ ] Handled reference counting correctly (sk_ref_sp when needed) +- [ ] Caught exceptions (if operation can throw) +- [ ] Returned appropriate error signal (bool/null/code) + +### C# Layer +- [ ] Validated parameters before P/Invoke +- [ ] Checked return values +- [ ] Used correct wrapper pattern (owned vs ref-counted) +- [ ] Applied correct marshaling (bool → UnmanagedType.I1) +- [ ] Added XML documentation +- [ ] Threw appropriate exceptions + +## Quick Decision Trees + +### "What wrapper pattern should I use?" + +``` +Does C++ type inherit SkRefCnt or SkRefCntBase? +├─ Yes → Use ISKReferenceCounted (virtual ref-counting) +└─ No → Does C++ type inherit SkNVRefCnt? + ├─ Yes → Use ISKNonVirtualReferenceCounted (non-virtual ref-counting) + └─ No → Is it mutable (Canvas, Paint, Path)? + ├─ Yes → Use owned pattern (DisposeNative calls delete/destroy) + └─ No → Is it returned from a getter? + ├─ Yes → Use non-owning pattern (owns: false) + └─ No → Default to owned pattern +``` + +### "How should I handle errors?" + +``` +Where am I working? +├─ C API layer → Catch exceptions, return bool/null +├─ C# wrapper → Validate parameters, check return values, throw exceptions +└─ C++ layer → Use normal C++ error handling +``` + +### "How do I pass a ref-counted parameter?" + +``` +Is the C++ parameter sk_sp? +├─ Yes → Use sk_ref_sp() in C API to increment ref count +└─ No (const SkType* or SkType*) → Use AsType() without sk_ref_sp +``` + +## Documentation References + +For detailed information, see `design/` folder: + +- **[architecture-overview.md](design/architecture-overview.md)** - Three-layer architecture, call flow, design principles +- **[memory-management.md](design/memory-management.md)** - Pointer types, ownership, lifecycle patterns, examples +- **[error-handling.md](design/error-handling.md)** - Error propagation, exception boundaries, patterns +- **[adding-new-apis.md](design/adding-new-apis.md)** - Step-by-step guide with complete examples +- **[layer-mapping.md](design/layer-mapping.md)** - Type mappings, naming conventions, quick reference + +## Example Workflows + +### Adding a New Drawing Method + +1. Find C++ API: `void SkCanvas::drawArc(const SkRect& oval, float start, float sweep, bool useCenter, const SkPaint& paint)` +2. Identify types: Canvas (owned), Rect (value), Paint (borrowed), primitives +3. Add C API in `sk_canvas.cpp`: + ```cpp + void sk_canvas_draw_arc(sk_canvas_t* c, const sk_rect_t* oval, + float start, float sweep, bool useCenter, const sk_paint_t* paint) { + if (!c || !oval || !paint) return; + AsCanvas(c)->drawArc(*AsRect(oval), start, sweep, useCenter, *AsPaint(paint)); + } + ``` +4. Add P/Invoke in `SkiaApi.cs`: + ```csharp + [DllImport("libSkiaSharp")] + public static extern void sk_canvas_draw_arc(sk_canvas_t canvas, sk_rect_t* oval, + float start, float sweep, [MarshalAs(UnmanagedType.I1)] bool useCenter, sk_paint_t paint); + ``` +5. Add wrapper in `SKCanvas.cs`: + ```csharp + public unsafe void DrawArc(SKRect oval, float startAngle, float sweepAngle, + bool useCenter, SKPaint paint) + { + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + SkiaApi.sk_canvas_draw_arc(Handle, &oval, startAngle, sweepAngle, useCenter, paint.Handle); + } + ``` + +### Adding a Factory Method for Reference-Counted Object + +1. Find C++ API: `sk_sp SkImages::DeferredFromEncodedData(sk_sp data)` +2. Identify: Returns ref-counted (sk_sp), takes ref-counted parameter +3. Add C API: + ```cpp + sk_image_t* sk_image_new_from_encoded(const sk_data_t* data) { + try { + // sk_ref_sp increments ref count on data + auto image = SkImages::DeferredFromEncodedData(sk_ref_sp(AsData(data))); + return ToImage(image.release()); // Ref count = 1 + } catch (...) { + return nullptr; + } + } + ``` +4. Add C# wrapper: + ```csharp + public static SKImage FromEncodedData(SKData data) + { + if (data == null) + throw new ArgumentNullException(nameof(data)); + + var handle = SkiaApi.sk_image_new_from_encoded(data.Handle); + if (handle == IntPtr.Zero) + throw new InvalidOperationException("Failed to decode image"); + + return GetObject(handle); // For ISKReferenceCounted + } + ``` + +## Summary + +Key concepts for working with SkiaSharp: + +1. **Three-layer architecture** - C++ → C API → C# +2. **Three pointer types** - Raw (non-owning), Owned, Reference-counted +3. **Exception firewall** - C API never throws, converts to error codes +4. **Reference counting** - Use `sk_ref_sp()` when C++ expects `sk_sp` +5. **Validation** - C# validates before calling native code +6. **Naming** - `SkType` → `sk_type_t*` → `SKType` + +When in doubt, find a similar existing API and follow its pattern. The codebase is consistent in its approaches. diff --git a/.github/instructions/README.md b/.github/instructions/README.md new file mode 100644 index 0000000000..fed538020f --- /dev/null +++ b/.github/instructions/README.md @@ -0,0 +1,137 @@ +# Path-Specific Instructions for SkiaSharp + +This directory contains path-specific instruction files that provide targeted guidance for AI coding agents working on different parts of the SkiaSharp codebase. + +## Overview + +Path-specific instructions automatically apply based on the files being edited, ensuring AI assistants use appropriate patterns, rules, and best practices for each layer or component. + +## Instruction Files + +| File | Applies To | Key Focus | +|------|-----------|-----------| +| **[c-api-layer.instructions.md](c-api-layer.instructions.md)** | `externals/skia/include/c/`, `externals/skia/src/c/` | C API bridging layer - no exceptions, C types, error codes | +| **[csharp-bindings.instructions.md](csharp-bindings.instructions.md)** | `binding/SkiaSharp/` | C# wrappers - IDisposable, P/Invoke, validation, exceptions | +| **[generated-code.instructions.md](generated-code.instructions.md)** | `*.generated.cs` files | Generated code - don't edit manually, modify templates | +| **[native-skia.instructions.md](native-skia.instructions.md)** | `externals/skia/` (excluding C API) | Upstream Skia C++ - understanding only, pointer types | +| **[tests.instructions.md](tests.instructions.md)** | `tests/`, `*Tests.cs` | Test code - memory management, error cases, lifecycle | +| **[documentation.instructions.md](documentation.instructions.md)** | `design/`, `*.md` | Documentation - clear examples, architecture focus | +| **[samples.instructions.md](samples.instructions.md)** | `samples/` | Sample code - best practices, complete examples | + +## How It Works + +AI coding agents that support path-specific instructions (like GitHub Copilot, Cursor, etc.) will automatically load and apply the relevant instruction file based on the file paths you're working with. + +For example: +- Editing `externals/skia/src/c/sk_canvas.cpp` → Loads **c-api-layer.instructions.md** +- Editing `binding/SkiaSharp/SKCanvas.cs` → Loads **csharp-bindings.instructions.md** +- Editing `tests/SKCanvasTests.cs` → Loads **tests.instructions.md** + +## Key Benefits + +### 1. Layer-Specific Guidance +Each layer has unique requirements: +- **C API:** Never throw exceptions, use C types, handle errors with return codes +- **C# Bindings:** Always dispose, validate parameters, convert to C# exceptions +- **Tests:** Focus on memory management, error cases, lifecycle + +### 2. Automatic Context +AI assistants automatically understand: +- Which patterns to follow +- What mistakes to avoid +- How to handle special cases + +### 3. Consistency +Ensures all AI-generated code follows the same patterns across the codebase. + +## Critical Concepts Covered + +### Memory Management (All Layers) +- **Raw pointers** (non-owning) - No cleanup needed +- **Owned pointers** - One owner, explicit delete/dispose +- **Reference-counted** - Shared ownership, ref/unref + +### Error Handling (Per Layer) +- **C API:** Catch all exceptions, return bool/null, defensive null checks +- **C#:** Validate parameters, check returns, throw typed exceptions +- **Tests:** Verify proper exception handling + +### Best Practices +- Proper disposal in C# (`using` statements) +- Complete, self-contained examples in samples +- Memory leak testing in test code +- Clear documentation with examples + +## Usage Examples + +### For AI Assistants + +When working on different files: + +``` +# Editing C API layer +externals/skia/src/c/sk_canvas.cpp +→ Applies: Never throw exceptions, use SK_C_API, handle errors + +# Editing C# wrapper +binding/SkiaSharp/SKCanvas.cs +→ Applies: Validate parameters, use IDisposable, throw exceptions + +# Writing tests +tests/SKCanvasTests.cs +→ Applies: Use using statements, test disposal, verify no leaks +``` + +### For Contributors + +These files serve as quick reference guides for: +- Understanding layer-specific requirements +- Following established patterns +- Avoiding common mistakes + +## Maintaining Instructions + +### When to Update + +Update instruction files when: +- Patterns or best practices change +- New common mistakes are discovered +- Layer responsibilities change +- New tooling or generators are added + +### What to Include + +Each instruction file should cover: +- ✅ Critical rules and requirements +- ✅ Common patterns with code examples +- ✅ What NOT to do (anti-patterns) +- ✅ Error handling specifics +- ✅ Memory management patterns + +### What to Avoid + +Don't include in instruction files: +- ❌ Exhaustive API documentation +- ❌ Build/setup instructions (use main docs) +- ❌ Temporary workarounds +- ❌ Implementation details + +## Related Documentation + +For comprehensive guidance, see: +- **[AGENTS.md](../../AGENTS.md)** - High-level project overview for AI agents +- **[design/](../../design/)** - Detailed architecture documentation +- **[.github/copilot-instructions.md](../copilot-instructions.md)** - General AI assistant context + +## Integration with AI Tools + +These instructions integrate with: +- **GitHub Copilot** - Workspace instructions +- **Cursor** - .cursorrules and workspace context +- **Other AI assistants** - Supporting path-specific patterns + +## Summary + +Path-specific instructions ensure AI coding agents apply the right patterns in the right places, maintaining code quality and consistency across SkiaSharp's three-layer architecture. + +**Key Principle:** Different layers require different approaches - these instructions ensure AI assistants understand and apply the correct patterns for each context. diff --git a/.github/instructions/c-api-layer.instructions.md b/.github/instructions/c-api-layer.instructions.md new file mode 100644 index 0000000000..4a6ddc2904 --- /dev/null +++ b/.github/instructions/c-api-layer.instructions.md @@ -0,0 +1,193 @@ +--- +applyTo: "externals/skia/include/c/**/*.h,externals/skia/src/c/**/*.cpp" +--- + +# C API Layer Instructions + +You are working in the C API layer that bridges Skia C++ to managed C#. + +> **📚 Documentation:** +> - **Quick Start:** [design/QUICKSTART.md](../../design/QUICKSTART.md) +> - **Architecture:** [design/architecture-overview.md](../../design/architecture-overview.md) +> - **Memory Management:** [design/memory-management.md](../../design/memory-management.md) +> - **Error Handling:** [design/error-handling.md](../../design/error-handling.md) + +## Critical Rules + +- All functions must use C linkage: `SK_C_API` or `extern "C"` +- Use C-compatible types only (no C++ classes in signatures) +- **Trust C# to validate** - C API is a minimal wrapper +- **No exception handling needed** - Skia rarely throws, C# prevents invalid inputs +- **No parameter validation needed** - C# validates before calling +- Keep implementations simple and direct + +## Pointer Type Handling + +> **💡 See [design/memory-management.md](../../design/memory-management.md) for pointer type concepts.** +> Below are C API-specific patterns for each type. + +### Raw Pointers (Non-Owning) +```cpp +// Just pass through, no ref counting +SK_C_API sk_canvas_t* sk_canvas_get_surface(sk_canvas_t* canvas); +``` + +### Owned Pointers +```cpp +// Create/destroy pairs +SK_C_API sk_paint_t* sk_paint_new(void); +SK_C_API void sk_paint_delete(sk_paint_t* paint); +``` + +### Reference-Counted Pointers +```cpp +// Explicit ref/unref functions +SK_C_API void sk_image_ref(const sk_image_t* image); +SK_C_API void sk_image_unref(const sk_image_t* image); + +// When C++ expects sk_sp, use sk_ref_sp to increment ref count +SK_C_API sk_image_t* sk_image_apply_filter( + const sk_image_t* image, + const sk_imagefilter_t* filter) +{ + return ToImage(AsImage(image)->makeWithFilter( + sk_ref_sp(AsImageFilter(filter))).release()); +} +``` + +## Naming Conventions + +- **Functions:** `sk__` (e.g., `sk_canvas_draw_rect`) +- **Types:** `sk__t` (e.g., `sk_canvas_t`) +- Keep names consistent with C++ equivalents + +## Type Conversion + +Use macros from `sk_types_priv.h`: +```cpp +AsCanvas(sk_canvas_t*) → SkCanvas* +ToCanvas(SkCanvas*) → sk_canvas_t* +``` + +Dereference pointers to get references: +```cpp +AsCanvas(canvas)->drawRect(*AsRect(rect), *AsPaint(paint)); +``` + +## Memory Management + +- Document ownership transfer in function comments +- Provide explicit create/destroy or ref/unref pairs +- Never assume caller will manage memory unless documented + +## Error Handling Patterns (Actual Implementation) + +### Boolean Return - Pass Through +```cpp +// C++ method returns bool, C API passes it through +SK_C_API bool sk_bitmap_try_alloc_pixels(sk_bitmap_t* bitmap, const sk_imageinfo_t* info) { + return AsBitmap(bitmap)->tryAllocPixels(AsImageInfo(info)); +} +``` + +**Note:** C# validates `bitmap` and `info` are non-null before calling. + +### Null Return for Factory Failure +```cpp +// Returns nullptr if Skia factory fails +SK_C_API sk_surface_t* sk_surface_new_raster(const sk_imageinfo_t* info) { + auto surface = SkSurfaces::Raster(AsImageInfo(info)); + return ToSurface(surface.release()); +} +``` + +**Note:** C# checks for `IntPtr.Zero` and throws exception if null. + +### Void Methods - Direct Call +```cpp +// Simple pass-through - C# ensures valid parameters +SK_C_API void sk_canvas_draw_rect( + sk_canvas_t* canvas, + const sk_rect_t* rect, + const sk_paint_t* paint) +{ + AsCanvas(canvas)->drawRect(*AsRect(rect), *AsPaint(paint)); +} +``` + +**Design:** C API trusts C# has validated all parameters. + +## Common Patterns + +### Simple Method Call +```cpp +SK_C_API void sk_canvas_clear(sk_canvas_t* canvas, sk_color_t color) { + AsCanvas(canvas)->clear(color); +} +``` + +### Property Getter +```cpp +SK_C_API int sk_image_get_width(const sk_image_t* image) { + return AsImage(image)->width(); +} +``` + +### Property Setter +```cpp +SK_C_API void sk_paint_set_color(sk_paint_t* paint, sk_color_t color) { + AsPaint(paint)->setColor(color); +} +``` + +## What NOT to Do + +❌ **Never throw exceptions:** +```cpp +// WRONG +SK_C_API void sk_function() { + throw std::exception(); // Will crash! +} +``` + +❌ **Don't use C++ types in signatures:** +```cpp +// WRONG +SK_C_API void sk_function(std::string name); + +// CORRECT +SK_C_API void sk_function(const char* name); +``` + +❌ **Don't add unnecessary validation:** +```cpp +// WRONG - C# already validated +SK_C_API void sk_canvas_draw_rect(sk_canvas_t* canvas, const sk_rect_t* rect, const sk_paint_t* paint) { + if (!canvas || !rect || !paint) // Unnecessary - C# validated + return; + AsCanvas(canvas)->drawRect(*AsRect(rect), *AsPaint(paint)); +} + +// CORRECT - trust C# validation +SK_C_API void sk_canvas_draw_rect(sk_canvas_t* canvas, const sk_rect_t* rect, const sk_paint_t* paint) { + AsCanvas(canvas)->drawRect(*AsRect(rect), *AsPaint(paint)); +} +``` + +❌ **Don't add try-catch unless truly necessary:** +```cpp +// Usually NOT needed - Skia rarely throws, C# validates inputs +SK_C_API sk_image_t* sk_image_new_from_encoded(const sk_data_t* data) { + return ToImage(SkImages::DeferredFromEncodedData(sk_ref_sp(AsData(data))).release()); +} +``` + +**Current implementation philosophy:** Minimal C API layer, safety enforced in C#. + +## Documentation + +Document these in function comments: +- Ownership transfer (who owns returned pointers) +- Null parameter handling +- Error conditions +- Thread-safety implications diff --git a/.github/instructions/csharp-bindings.instructions.md b/.github/instructions/csharp-bindings.instructions.md new file mode 100644 index 0000000000..2ff577db4f --- /dev/null +++ b/.github/instructions/csharp-bindings.instructions.md @@ -0,0 +1,116 @@ +--- +applyTo: "binding/SkiaSharp/**/*.cs" +--- + +# C# Bindings Instructions + +You are working in the C# wrapper layer that provides .NET access to Skia via P/Invoke. + +> **📚 Documentation:** +> - **Quick Start:** [design/QUICKSTART.md](../../design/QUICKSTART.md) +> - **Architecture:** [design/architecture-overview.md](../../design/architecture-overview.md) +> - **Memory Management:** [design/memory-management.md](../../design/memory-management.md) +> - **Adding APIs:** [design/adding-new-apis.md](../../design/adding-new-apis.md) + +## Critical Rules + +- All `IDisposable` types MUST dispose native handles +- Use `SKObject` base class for handle management +- Never expose `IntPtr` directly in public APIs +- Always validate parameters before P/Invoke calls +- Check return values from C API + +## Pointer Type to C# Mapping + +> **💡 See [design/memory-management.md](../../design/memory-management.md) for pointer type concepts.** +> Below are C#-specific patterns for each type. + +### Raw Pointers (Non-Owning) +```csharp +// OwnsHandle = false, no disposal +public SKSurface Surface { + get { + var handle = SkiaApi.sk_canvas_get_surface(Handle); + return GetOrAddObject(handle, owns: false, (h, o) => new SKSurface(h, o)); + } +} +``` + +### Owned Pointers +```csharp +public class SKCanvas : SKObject +{ + public SKCanvas(SKBitmap bitmap) : base(IntPtr.Zero, true) + { + if (bitmap == null) + throw new ArgumentNullException(nameof(bitmap)); + Handle = SkiaApi.sk_canvas_new_from_bitmap(bitmap.Handle); + } + + protected override void DisposeNative() + { + SkiaApi.sk_canvas_destroy(Handle); + } +} +``` + +### Reference-Counted Pointers +```csharp +public class SKImage : SKObject, ISKReferenceCounted +{ + public static SKImage FromBitmap(SKBitmap bitmap) + { + if (bitmap == null) + throw new ArgumentNullException(nameof(bitmap)); + + var handle = SkiaApi.sk_image_new_from_bitmap(bitmap.Handle); + if (handle == IntPtr.Zero) + throw new InvalidOperationException("Failed to create image"); + + return GetObject(handle); // For ISKReferenceCounted + } +} +``` + +## Parameter Validation + +### Before P/Invoke +```csharp +public void DrawRect(SKRect rect, SKPaint paint) +{ + // 1. Validate parameters + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + + // 2. Check object state + if (Handle == IntPtr.Zero) + throw new ObjectDisposedException(nameof(SKCanvas)); + + // 3. Call native + SkiaApi.sk_canvas_draw_rect(Handle, &rect, paint.Handle); +} +``` + +## Error Handling + +Convert C API errors to exceptions: +```csharp +public static SKImage FromEncodedData(SKData data) +{ + if (data == null) + throw new ArgumentNullException(nameof(data)); + + var handle = SkiaApi.sk_image_new_from_encoded(data.Handle); + + if (handle == IntPtr.Zero) + throw new InvalidOperationException("Failed to decode image"); + + return GetObject(handle); +} +``` + +## What NOT to Do + +❌ **Don't expose IntPtr directly in public APIs** +❌ **Don't skip parameter validation** +❌ **Don't ignore return values** diff --git a/.github/instructions/documentation.instructions.md b/.github/instructions/documentation.instructions.md new file mode 100644 index 0000000000..10b38aebe8 --- /dev/null +++ b/.github/instructions/documentation.instructions.md @@ -0,0 +1,56 @@ +--- +applyTo: "design/**/*.md,*.md,!node_modules/**,!externals/**" +--- + +# Documentation Instructions + +You are working on project documentation. + +> **📚 Reference:** +> - **Documentation Index:** [design/README.md](../../design/README.md) +> - **Quick Start:** [design/QUICKSTART.md](../../design/QUICKSTART.md) + +## Documentation Standards + +- Use clear, concise language +- Include code examples where helpful +- Document memory management and ownership +- Explain pointer type implications +- Cover error handling patterns +- Optimize for AI readability + +## Code Examples Best Practices + +### Always Show Disposal + +```csharp +// ✅ Good - proper disposal +using (var paint = new SKPaint()) +{ + paint.Color = SKColors.Red; +} +``` + +### Include Error Handling + +```csharp +if (string.IsNullOrEmpty(path)) + throw new ArgumentException("Path cannot be null or empty"); +``` + +### Show Complete Context +Include all necessary using statements and complete, runnable examples. + +## Structure Guidelines + +- Use clear headings +- Include diagrams where helpful (ASCII, Mermaid) +- Provide complete examples through all layers +- Cross-reference related documents + +## What NOT to Document + +- Exhaustive API lists (use XML comments instead) +- Implementation details (focus on concepts) +- Temporary workarounds +- Platform-specific details (unless critical) diff --git a/.github/instructions/generated-code.instructions.md b/.github/instructions/generated-code.instructions.md new file mode 100644 index 0000000000..a66d7881ff --- /dev/null +++ b/.github/instructions/generated-code.instructions.md @@ -0,0 +1,44 @@ +--- +applyTo: "binding/SkiaSharp/**/*.generated.cs,binding/SkiaSharp/**/SkiaApi.generated.cs" +--- + +# Generated Code Instructions + +You are viewing or working near **GENERATED CODE**. + +> **⚠️ Important:** Do NOT manually edit generated files. See [design/adding-new-apis.md](../../design/adding-new-apis.md) for the proper process. + +## Critical Rules + +- ⛔ **DO NOT manually edit generated files** +- Look for generation markers/comments at the top of files +- To modify generated code, change the generation templates/configs instead +- Document generation source in commit messages + +## If You Need to Change Generated Code + +### Step 1: Find the Generator +Located in: `utils/SkiaSharpGenerator/` + +### Step 2: Modify Template or Config +```bash +# Regenerate after changes +dotnet run --project utils/SkiaSharpGenerator/SkiaSharpGenerator.csproj -- generate +``` + +### Step 3: Verify Output +- Check generated code matches expectations +- Ensure no unintended changes +- Test the modified bindings + +## What You CAN Do + +✅ **Add hand-written wrappers** in separate files +✅ **Add convenience overloads** in non-generated files +✅ **Reference generated code** from hand-written code + +## What You CANNOT Do + +❌ **Manually edit generated P/Invoke declarations** +❌ **Add custom logic to generated files** +❌ **Modify generated file directly** (changes will be lost) diff --git a/.github/instructions/native-skia.instructions.md b/.github/instructions/native-skia.instructions.md new file mode 100644 index 0000000000..80cb4ecf13 --- /dev/null +++ b/.github/instructions/native-skia.instructions.md @@ -0,0 +1,49 @@ +--- +applyTo: "externals/skia/include/**/*.h,externals/skia/src/**/*.cpp,!externals/skia/include/c/**,!externals/skia/src/c/**" +--- + +# Native Skia C++ Instructions + +You are viewing native Skia C++ code. This is **upstream code** and should generally **NOT be modified directly**. + +> **📚 Documentation:** +> - **Quick Start:** [design/QUICKSTART.md](../../design/QUICKSTART.md) +> - **Memory Management:** [design/memory-management.md](../../design/memory-management.md) - See pointer type identification +> - **Adding APIs:** [design/adding-new-apis.md](../../design/adding-new-apis.md) - How to create bindings + +## Understanding This Code + +- This is the source C++ library that SkiaSharp wraps +- Pay attention to pointer types in function signatures +- Note: `sk_sp` is a smart pointer with reference counting +- Note: Raw `T*` may be owning or non-owning (check docs/context) + +## Pointer Type Identification + +> **💡 See [design/memory-management.md](../../design/memory-management.md) for complete guide.** +> Quick reference below: + +### Smart Pointers (Ownership) +- **`sk_sp`** - Skia Smart Pointer (Reference Counted) +- **`std::unique_ptr`** - Unique Ownership + +### Reference Counting +- **`SkRefCnt`** base class → Reference counted +- Methods: `ref()` increment, `unref()` decrement + +### Raw Pointers +- **`const T*` or `const T&`** → Usually non-owning, read-only +- **`T*`** → Could be owning or non-owning (requires context) + +## If Creating Bindings + +1. Identify pointer type from C++ signature +2. Create C API wrapper in `externals/skia/src/c/` +3. Handle ownership transfer appropriately +4. Ensure exceptions can't escape to C boundary + +## What NOT to Do + +❌ **Don't modify upstream Skia code** unless contributing upstream +❌ **Don't assume pointer ownership** without checking +❌ **Don't create C API here** - use `externals/skia/src/c/` instead diff --git a/.github/instructions/samples.instructions.md b/.github/instructions/samples.instructions.md new file mode 100644 index 0000000000..d689be7b5a --- /dev/null +++ b/.github/instructions/samples.instructions.md @@ -0,0 +1,67 @@ +--- +applyTo: "samples/**/*.cs" +--- + +# Sample Code Instructions + +You are working on sample/example code. + +> **📚 Documentation:** +> - **Quick Start:** [design/QUICKSTART.md](../../design/QUICKSTART.md) - See best practices +> - **API Guide:** [design/adding-new-apis.md](../../design/adding-new-apis.md) + +## Sample Code Standards + +- Demonstrate **best practices** (always use `using` statements) +- Include **error handling** +- Show **complete, working examples** +- Keep code **simple and educational** +- **Comment** complex or non-obvious parts + +## Memory Management in Samples + +### Always Use Using Statements +```csharp +// ✅ Correct +using (var surface = SKSurface.Create(info)) +using (var canvas = surface.Canvas) +using (var paint = new SKPaint()) +{ + // Use objects +} +``` + +### Make Self-Contained +```csharp +using System; +using System.IO; +using SkiaSharp; + +public static void DrawRectangleSample() +{ + var info = new SKImageInfo(256, 256); + + using (var surface = SKSurface.Create(info)) + using (var canvas = surface.Canvas) + using (var paint = new SKPaint { Color = SKColors.Blue }) + { + canvas.Clear(SKColors.White); + canvas.DrawRect(new SKRect(50, 50, 200, 200), paint); + + // Save + using (var image = surface.Snapshot()) + using (var data = image.Encode(SKEncodedImageFormat.Png, 100)) + using (var stream = File.OpenWrite("output.png")) + { + data.SaveTo(stream); + } + } +} +``` + +## What NOT to Do + +❌ **Don't skip disposal** +❌ **Don't show bad patterns** +❌ **Don't leave code incomplete** +❌ **Don't skip error handling** diff --git a/.github/instructions/tests.instructions.md b/.github/instructions/tests.instructions.md new file mode 100644 index 0000000000..2a9b40c17e --- /dev/null +++ b/.github/instructions/tests.instructions.md @@ -0,0 +1,75 @@ +--- +applyTo: "tests/**/*.cs,**/*Tests.cs,**/*Test.cs" +--- + +# Test Code Instructions + +You are working on test code for SkiaSharp. + +> **📚 Documentation:** +> - **Quick Start:** [design/QUICKSTART.md](../../design/QUICKSTART.md) +> - **Memory Management:** [design/memory-management.md](../../design/memory-management.md) +> - **Error Handling:** [design/error-handling.md](../../design/error-handling.md) + +## Testing Focus Areas + +1. **Memory Management** - Verify no leaks, proper disposal, ref counting +2. **Error Handling** - Test invalid inputs, failure cases, exceptions +3. **Object Lifecycle** - Test create → use → dispose pattern +4. **Threading** - Test thread-safety where documented + +## Test Patterns + +### Always Use Using Statements +```csharp +[Fact] +public void DrawRectWorksCorrectly() +{ + using (var bitmap = new SKBitmap(100, 100)) + using (var canvas = new SKCanvas(bitmap)) + using (var paint = new SKPaint { Color = SKColors.Red }) + { + canvas.DrawRect(new SKRect(10, 10, 90, 90), paint); + Assert.NotEqual(SKColors.White, bitmap.GetPixel(50, 50)); + } +} +``` + +### Test Disposal +```csharp +[Fact] +public void DisposedObjectThrows() +{ + var paint = new SKPaint(); + paint.Dispose(); + Assert.Throws(() => paint.Color = SKColors.Red); +} +``` + +### Test Error Cases +```csharp +[Fact] +public void NullParameterThrows() +{ + using (var canvas = new SKCanvas(bitmap)) + { + Assert.Throws(() => + canvas.DrawRect(rect, null)); + } +} +``` + +## What to Test + +✅ Test both success and failure paths +✅ Test edge cases (empty, null, zero, negative, max) +✅ Verify exception types and messages +✅ Test complete lifecycle +✅ Test memory management (no leaks) + +## What NOT to Do + +❌ Leave objects undisposed in tests +❌ Ignore exception types +❌ Test only happy path +❌ Assume GC will clean up diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000000..5e9326d8d9 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,182 @@ +# SkiaSharp - AGENTS.md + +## Project Overview + +SkiaSharp is a cross-platform 2D graphics API for .NET that wraps Google's Skia Graphics Library. It uses a three-layer architecture to bridge native C++ code with managed C#. + +**Key principle:** C++ exceptions cannot cross the C API boundary - all error handling uses return values. + +## Architecture + +### Three-Layer Design +``` +C# Wrapper Layer (binding/SkiaSharp/) + ↓ P/Invoke +C API Layer (externals/skia/include/c/, externals/skia/src/c/) + ↓ Type casting +C++ Skia Library (externals/skia/) +``` + +**Call flow example:** +``` +SKCanvas.DrawRect() → sk_canvas_draw_rect() → SkCanvas::drawRect() +``` + +## Critical Concepts + +### Memory Management - Pointer Types + +Three pointer types with different ownership rules: +- **Raw (`T*`)**: Non-owning, no cleanup needed +- **Owned**: Single owner, caller deletes (Canvas, Paint, Path) +- **Reference-Counted**: Shared ownership with ref counting (Image, Shader, Data) + +**Critical:** Wrong pointer type = memory leaks or crashes. + +👉 **Full details:** [design/memory-management.md](design/memory-management.md) + +### Error Handling + +- **C# validates all parameters** before calling C API +- **C API is minimal wrapper** - no validation, trusts C# +- **Factory methods return null** on failure (do NOT throw) +- **Constructors throw** on failure + +👉 **Full details:** [design/error-handling.md](design/error-handling.md) + +## File Organization + +### Naming Convention +``` +C++: SkCanvas.h → C API: sk_canvas.h, sk_canvas.cpp → C#: SKCanvas.cs +Pattern: SkType → sk_type_t* → SKType +``` + +### Key Directories + +**Do Not Modify:** +- `docs/` - Auto-generated API documentation + +**Core Areas:** +- `externals/skia/include/c/` - C API headers +- `externals/skia/src/c/` - C API implementation +- `binding/SkiaSharp/` - C# wrappers and P/Invoke +- `design/` - Architecture documentation (comprehensive guides) + +## Adding New APIs - Quick Steps + +1. Find C++ API in Skia +2. Identify pointer type (raw/owned/ref-counted) +3. Add C API wrapper (minimal, no validation) +4. Add C API header +5. Add P/Invoke declaration +6. Add C# wrapper with validation + +👉 **Full step-by-step guide:** [design/adding-new-apis.md](design/adding-new-apis.md) + +## Common Pitfalls + +❌ Wrong pointer type → memory leaks/crashes +❌ Missing ref count increment when C++ expects `sk_sp` +❌ Disposing borrowed objects +❌ Not checking factory method null returns +❌ Missing parameter validation in C# + +👉 **Full list with solutions:** [design/memory-management.md#common-pitfalls](design/memory-management.md#common-pitfalls) and [design/error-handling.md#common-mistakes](design/error-handling.md#common-mistakes) + +## Code Generation + +- **Hand-written:** C API layer (all `.cpp` in `externals/skia/src/c/`) +- **Generated:** Some P/Invoke declarations (`SkiaApi.generated.cs`) +- **Tool:** `utils/SkiaSharpGenerator/` + +To regenerate: +```bash +dotnet run --project utils/SkiaSharpGenerator/SkiaSharpGenerator.csproj -- generate +``` + +## Testing Checklist + +- [ ] Pointer type correctly identified +- [ ] Memory properly managed (no leaks) +- [ ] Object disposes correctly +- [ ] Error cases handled (null params, failed operations) +- [ ] P/Invoke signature matches C API +- [ ] Parameters validated in C# +- [ ] Return values checked + +## Threading + +**⚠️ Skia is NOT thread-safe** - Most objects must be used from a single thread. + +| Type | Thread-Safe? | Notes | +|------|--------------|-------| +| **Canvas/Paint/Path** | ❌ No | Keep thread-local | +| **Image/Shader/Typeface** | ✅ Yes* | Read-only after creation | + +*Immutable objects can be shared across threads. + +👉 **Full threading guide:** [design/architecture-overview.md#threading-model-and-concurrency](design/architecture-overview.md#threading-model-and-concurrency) + +## Build Commands + +```bash +# Build managed code only (after downloading native bits) +dotnet cake --target=libs + +# Run tests +dotnet cake --target=tests + +# Download pre-built native libraries +dotnet cake --target=externals-download +``` + +## Documentation + +**Quick reference:** This file + code comments + +**Practical tutorial:** [design/QUICKSTART.md](design/QUICKSTART.md) - 10-minute walkthrough + +**Detailed guides** in `design/` folder: +- `QUICKSTART.md` - **Start here!** Practical end-to-end tutorial +- `architecture-overview.md` - Three-layer architecture, design principles +- `memory-management.md` - **Critical**: Pointer types, ownership, lifecycle +- `error-handling.md` - Error propagation patterns through layers +- `adding-new-apis.md` - Complete step-by-step guide with examples +- `layer-mapping.md` - Type mappings and naming conventions + +**AI assistant context:** `.github/copilot-instructions.md` + +## Quick Decision Trees + +**"What pointer type?"** +Inherits SkRefCnt/SkNVRefCnt? → Reference-counted +Mutable (Canvas/Paint)? → Owned +Parameter/getter? → Raw (non-owning) + +**"What wrapper pattern?"** +Reference-counted → `ISKReferenceCounted` or `ISKNonVirtualReferenceCounted` +Owned → `SKObject` with `DisposeNative()` +Raw → `owns: false` in handle + +**"How to handle errors?"** +C API → Minimal pass-through; no extra exception handling, returns whatever Skia returns (bool/null/void) +C# → Validate where needed, but some APIs propagate null/bool/default results instead of throwing + +👉 **See also:** [design/adding-new-apis.md#decision-flowcharts](design/adding-new-apis.md#decision-flowcharts) + +## Examples + +See [design/adding-new-apis.md](design/adding-new-apis.md) for complete examples with all three layers. + +## When In Doubt + +1. Find similar existing API and follow its pattern +2. Check `design/` documentation for detailed guidance +3. Verify pointer type carefully (most important!) +4. Test memory management thoroughly +5. Ensure error handling at all layers + +--- + +**Remember:** Three layers, three pointer types, C# is the safety boundary. diff --git a/CPP_RENDER_PATH.md b/CPP_RENDER_PATH.md new file mode 100644 index 0000000000..a5e1e95099 --- /dev/null +++ b/CPP_RENDER_PATH.md @@ -0,0 +1,337 @@ +# C++ MotionMark Render Path Analysis + +This document traces the complete rendering path in the fast C++ MotionMark implementation. + +## 1. Entry Point: main_mac.mm + +**Location:** `/extern/skia/tools/sk_app/mac/main_mac.mm` + +```cpp +int main(int argc, char * argv[]) { + // Setup NSApp, menu, etc. + Application* app = Application::Create(argc, argv, nullptr); + + // Run NSApp briefly to finish launching + [NSApp run]; // Returns immediately due to AppDelegate stop + + // THE MAIN RENDER LOOP - Direct event loop + while (![appDelegate done]) { + // 1. Process all pending NSEvents (mouse, keyboard, etc.) + NSEvent* event; + do { + event = [NSApp nextEventMatchingMask:NSEventMaskAny + untilDate:[NSDate distantPast] // NON-BLOCKING + inMode:NSDefaultRunLoopMode + dequeue:YES]; + [NSApp sendEvent:event]; + } while (event != nil); + + // 2. Paint ALL windows that are invalidated + Window_mac::PaintWindows(); // DIRECT CALL - NO DISPLAY QUEUE + + // 3. App idle processing + app->onIdle(); // Invalidates window for next frame + } +} +``` + +**Key Points:** +- **NOT using `[NSApp run]` main loop** - it's stopped immediately +- **Custom tight loop** that processes events then paints directly +- **No display system** - calls `PaintWindows()` directly every iteration +- **Non-blocking event processing** - `distantPast` means "don't wait" + +--- + +## 2. Window Painting: Window_mac::PaintWindows() + +**Location:** `/extern/skia/tools/sk_app/mac/Window_mac.mm:191` + +```cpp +void Window_mac::PaintWindows() { + gWindowMap.foreach([&](Window_mac* window) { + if (window->fIsContentInvalidated) { + window->onPaint(); // DIRECT CALL + } + }); +} +``` + +**Key Points:** +- **Static method** that paints all windows +- **Checks invalidation flag** - set by `app->onIdle()` each frame +- **Direct call to `onPaint()`** - no Cocoa drawing system involved + +--- + +## 3. Window Painting: Window::onPaint() + +**Location:** `/extern/skia/tools/sk_app/Window.cpp:89` + +```cpp +void Window::onPaint() { + if (!fWindowContext) return; + if (!fIsActive) return; + + // 1. Get the backbuffer surface from WindowContext + sk_sp backbuffer = fWindowContext->getBackbufferSurface(); + if (backbuffer == nullptr) { + return; + } + + markInvalProcessed(); // Clear invalidation flag + + // 2. Call layer onPaint methods (MotionMarkLayer::onPaint) + this->visitLayers([](Layer* layer) { layer->onPrePaint(); }); + this->visitLayers([=](Layer* layer) { layer->onPaint(backbuffer.get()); }); + + // 3. Flush GPU commands + #if defined(SK_GANESH) + if (auto dContext = this->directContext()) { + dContext->flushAndSubmit(backbuffer.get(), GrSyncCpu::kNo); + } + #endif + + // 4. Swap buffers + fWindowContext->swapBuffers(); +} +``` + +**Key Points:** +- Gets surface directly from WindowContext (no `drawRect:` callback) +- Calls layer paint methods directly +- Flushes GPU with `GrSyncCpu::kNo` (async) +- Swaps buffers immediately + +--- + +## 4. MotionMark Scene Rendering + +**Location:** `/samples/MotionMark.SkiaNative/motionmark_app.cpp:92` + +```cpp +void MotionMarkLayer::onPaint(SkSurface* surface) { + SkCanvas* canvas = surface->getCanvas(); + canvas->clear(fBackgroundPaint.getColor()); + + if (fElements.empty()) { + return; + } + + // Calculate scaling + const float scaleX = static_cast(fWidth) / static_cast(kGridWidth + 1); + const float scaleY = static_cast(fHeight) / static_cast(kGridHeight + 1); + const float uniformScale = std::max(0.0f, std::min(scaleX, scaleY)); + + const float offsetX = (static_cast(fWidth) - uniformScale * (kGridWidth + 1)) * 0.5f; + const float offsetY = (static_cast(fHeight) - uniformScale * (kGridHeight + 1)) * 0.5f; + + // Build and draw paths + SkPathBuilder pathBuilder; + bool pathStarted = false; + + for (size_t i = 0; i < fElements.size(); ++i) { + Element& element = fElements[i]; + + if (!pathStarted) { + const SkPoint start = this->toPoint(element.start, uniformScale, offsetX, offsetY); + pathBuilder.moveTo(start); + pathStarted = true; + } + + // Add segment based on kind (Line/Quad/Cubic) + switch (element.kind) { + case SegmentKind::kLine: + pathBuilder.lineTo(this->toPoint(element.end, uniformScale, offsetX, offsetY)); + break; + case SegmentKind::kQuad: + pathBuilder.quadTo(this->toPoint(element.control1, uniformScale, offsetX, offsetY), + this->toPoint(element.end, uniformScale, offsetX, offsetY)); + break; + case SegmentKind::kCubic: + pathBuilder.cubicTo(this->toPoint(element.control1, uniformScale, offsetX, offsetY), + this->toPoint(element.control2, uniformScale, offsetX, offsetY), + this->toPoint(element.end, uniformScale, offsetX, offsetY)); + break; + } + + // Finalize path when split or at end + const bool finalize = element.split || i + 1 == fElements.size(); + if (finalize && !pathBuilder.isEmpty()) { + fStrokePaint.setColor(element.color); + fStrokePaint.setStrokeWidth(element.width); + canvas->drawPath(pathBuilder.detach(), fStrokePaint); + pathStarted = false; + } + } +} +``` + +**Key Points:** +- Receives `SkSurface*` directly (not creating one) +- Uses `SkPathBuilder` to batch path segments +- Draws paths with stroke paint +- No disposal needed - just uses the provided surface + +--- + +## 5. OpenGL Context & Buffer Swap + +**Location:** `/extern/skia/tools/window/mac/GaneshGLWindowContext_mac.mm` + +### Context Creation (onInitializeContext): + +```cpp +sk_sp GLWindowContext_mac::onInitializeContext() { + if (!fGLContext) { + // Create pixel format with MSAA, stencil, etc. + fPixelFormat = skwindow::GetGLPixelFormat(fDisplayParams->msaaSampleCount()); + + // Create OpenGL context + fGLContext = [[NSOpenGLContext alloc] initWithFormat:fPixelFormat shareContext:nil]; + + // Enable high-DPI + [fMainView setWantsBestResolutionOpenGLSurface:YES]; + [fGLContext setView:fMainView]; + } + + // Set vsync + GLint swapInterval = fDisplayParams->disableVsync() ? 0 : 1; + [fGLContext setValues:&swapInterval forParameter:NSOpenGLCPSwapInterval]; + + // Make current + [fGLContext makeCurrentContext]; + + // Clear buffers + GR_GL_CALL(gl, ClearStencil(0)); + GR_GL_CALL(gl, ClearColor(0, 0, 0, 255)); + GR_GL_CALL(gl, StencilMask(0xffffffff)); + GR_GL_CALL(gl, Clear(GL_STENCIL_BUFFER_BIT | GL_COLOR_BUFFER_BIT)); + + // Setup viewport + CGFloat backingScaleFactor = skwindow::GetBackingScaleFactor(fMainView); + fWidth = fMainView.bounds.size.width * backingScaleFactor; + fHeight = fMainView.bounds.size.height * backingScaleFactor; + GR_GL_CALL(gl, Viewport(0, 0, fWidth, fHeight)); + + return GrGLInterfaces::MakeMac(); +} +``` + +### Buffer Swap (onSwapBuffers): + +```cpp +void GLWindowContext_mac::onSwapBuffers() { + GrDirectContext* dContext = fSurface->recordingContext()->asDirectContext(); + + // Flush with PRESENT access (no sync) + dContext->flush(fSurface.get(), SkSurfaces::BackendSurfaceAccess::kPresent, {}); + + // Swap OpenGL buffers + [fGLContext flushBuffer]; +} +``` + +**Key Points:** +- Uses `NSOpenGLContext` directly (not NSOpenGLView) +- Sets pixel format with MSAA, stencil, double-buffering +- Makes context current manually +- Flushes with `kPresent` access (optimized for display) +- Calls `flushBuffer` to swap OpenGL buffers + +--- + +## 6. Pixel Format Configuration + +**Location:** `/extern/skia/tools/window/mac/MacWindowGLUtils.h` (used by GaneshGLWindowContext) + +```cpp +static inline NSOpenGLPixelFormat* GetGLPixelFormat(int sampleCount) { + constexpr int kMaxAttributes = 19; + NSOpenGLPixelFormatAttribute attributes[kMaxAttributes]; + int numAttributes = 0; + + attributes[numAttributes++] = NSOpenGLPFAAccelerated; + attributes[numAttributes++] = NSOpenGLPFAClosestPolicy; + attributes[numAttributes++] = NSOpenGLPFADoubleBuffer; + attributes[numAttributes++] = NSOpenGLPFAOpenGLProfile; + attributes[numAttributes++] = NSOpenGLProfileVersion3_2Core; + attributes[numAttributes++] = NSOpenGLPFAColorSize; + attributes[numAttributes++] = 24; + attributes[numAttributes++] = NSOpenGLPFAAlphaSize; + attributes[numAttributes++] = 8; + attributes[numAttributes++] = NSOpenGLPFADepthSize; + attributes[numAttributes++] = 0; + attributes[numAttributes++] = NSOpenGLPFAStencilSize; + attributes[numAttributes++] = 8; + + if (sampleCount > 1) { + attributes[numAttributes++] = NSOpenGLPFAMultisample; + attributes[numAttributes++] = NSOpenGLPFASampleBuffers; + attributes[numAttributes++] = 1; + attributes[numAttributes++] = NSOpenGLPFASamples; + attributes[numAttributes++] = sampleCount; + } else { + attributes[numAttributes++] = NSOpenGLPFASampleBuffers; + attributes[numAttributes++] = 0; + } + attributes[numAttributes++] = 0; + + return [[NSOpenGLPixelFormat alloc] initWithAttributes:attributes]; +} +``` + +--- + +## Summary: Why It's Fast + +### 1. **No Cocoa Drawing System** +- Doesn't use `setNeedsDisplay:` / `drawRect:` +- No display link / run loop / event queue +- Direct `PaintWindows()` call every frame + +### 2. **Tight Render Loop** +``` +while (!done) { + processEvents(); // Non-blocking + PaintWindows(); // Direct call + onIdle(); // Invalidate for next frame +} +``` + +### 3. **Direct OpenGL Context Management** +- Creates `NSOpenGLContext` directly +- Calls `makeCurrentContext` manually +- Calls `flushBuffer` directly for swap + +### 4. **No UI Thread Marshalling** +- Everything runs on main thread +- No `DispatchQueue.main.async` +- No Cocoa view hierarchy overhead + +### 5. **Optimized GPU Flushing** +- `flushAndSubmit(backbuffer, GrSyncCpu::kNo)` - async +- `flush(surface, BackendSurfaceAccess::kPresent)` - optimized for display +- Immediate buffer swap + +### 6. **Simple View Hierarchy** +- Plain `NSView` (MainView) - no custom drawing +- Context renders directly to view's backing layer +- No intermediate buffers or compositing + +--- + +## What SkiaSharp Must Do Differently + +The current SkiaSharp macOS sample uses: +- ✗ `NSApplicationMain` + storyboard (Cocoa event loop) +- ✗ `SKGLView` with `setNeedsDisplay:` (display queue) +- ✗ Timer/DisplayLink triggering invalidation (indirect) + +To match C++ performance, it needs: +- ✓ **Tight render loop** (like current implementation) +- ✓ **Direct OpenGL context calls** (bypass view hierarchy) +- ✓ **Manual buffer management** (like C++ WindowContext) +- ✓ **Async GPU flushing** (`GrSyncCpu::kNo`) + +The current implementation using `RenderDirect()` in a tight loop is **the correct approach** and should match C++ performance! diff --git a/binding/SkiaSharp/GRContext.cs b/binding/SkiaSharp/GRContext.cs index 918348f32d..0c930739a5 100644 --- a/binding/SkiaSharp/GRContext.cs +++ b/binding/SkiaSharp/GRContext.cs @@ -150,6 +150,13 @@ public void Flush (bool submit, bool synchronous = false) public void Submit (bool synchronous = false) => SkiaApi.gr_direct_context_submit (Handle, synchronous); + public void Flush (SKSurface surface) + { + if (surface == null) + throw new ArgumentNullException(nameof(surface)); + SkiaApi.gr_direct_context_flush_surface(Handle, surface.Handle); + } + public new int GetMaxSurfaceSampleCount (SKColorType colorType) => base.GetMaxSurfaceSampleCount (colorType); diff --git a/design/QUICKSTART.md b/design/QUICKSTART.md new file mode 100644 index 0000000000..920775746d --- /dev/null +++ b/design/QUICKSTART.md @@ -0,0 +1,547 @@ +# SkiaSharp Quick Start Guide + +**Goal:** Get you productive with SkiaSharp development in 10 minutes. + +This guide shows you **how to add a new API** from start to finish. For comprehensive reference, see the detailed documentation in this folder. + +## Table of Contents + +1. [Understanding the Three Layers](#understanding-the-three-layers) +2. [Identifying Pointer Types](#identifying-pointer-types) +3. [Adding a Simple API](#adding-a-simple-api-walkthrough) +4. [Error Handling Patterns](#error-handling-patterns) +5. [Common Mistakes](#top-10-common-mistakes) +6. [Next Steps](#next-steps) + +--- + +## Understanding the Three Layers + +SkiaSharp uses a three-layer architecture: + +> **📚 Deep Dive:** See [architecture-overview.md](architecture-overview.md) for complete architecture details. + +```mermaid +graph TB + subgraph CSharp["C# Layer (binding/SkiaSharp/)"] + CS1[Public .NET API] + CS2[SKCanvas, SKPaint, SKImage classes] + CS3[Validates parameters, throws exceptions] + end + + subgraph CAPI["C API Layer (externals/skia/src/c/)"] + C1[C functions: sk_canvas_draw_rect] + C2[Minimal wrapper - trusts C#] + C3[Returns bool/null for errors] + end + + subgraph CPP["C++ Layer (externals/skia/)"] + CPP1[Native Skia library] + CPP2[SkCanvas::drawRect] + CPP3[Can throw exceptions] + end + + CSharp -->|P/Invoke| CAPI + CAPI -->|Type casting
AsCanvas/ToCanvas| CPP + + style CSharp fill:#e1f5e1 + style CAPI fill:#fff4e1 + style CPP fill:#e1e8f5 +``` + +**Key principle:** C++ exceptions **cannot cross** the C API boundary. The C API layer catches all exceptions. + +--- + +## Identifying Pointer Types + +**Most important decision:** What pointer type does the API use? + +### Decision Flowchart + +> **💡 Tip:** See [memory-management.md](memory-management.md) for comprehensive pointer type details. + +```mermaid +graph TD + Start[Check C++ class declaration] --> Q1{Inherits SkRefCnt
or SkRefCntBase?} + Q1 -->|Yes| VirtRC[Virtual Ref-Counted
ISKReferenceCounted] + Q1 -->|No| Q2{Inherits
SkNVRefCnt<T>?} + Q2 -->|Yes| NonVirtRC[Non-Virtual Ref-Counted
ISKNonVirtualReferenceCounted] + Q2 -->|No| Q3{Mutable class?
Canvas, Paint, etc.} + Q3 -->|Yes| Owned[Owned Pointer
delete on dispose] + Q3 -->|No| Raw[Raw Pointer
Non-Owning] + + VirtRC -.->|Examples| VirtEx[SKImage, SKShader,
SKSurface, SKPicture] + NonVirtRC -.->|Examples| NonVirtEx[SKData, SKTextBlob,
SKVertices] + Owned -.->|Examples| OwnedEx[SKCanvas, SKPaint,
SKBitmap, SKPath] + Raw -.->|Examples| RawEx[Parameters,
borrowed refs] + + style VirtRC fill:#e1f5e1 + style NonVirtRC fill:#e1f5e1 + style Owned fill:#fff4e1 + style Raw fill:#e1e8f5 +``` + +### Quick Reference + +| Pointer Type | C++ | C API | C# | Cleanup | +|--------------|-----|-------|-----|---------| +| **Raw (Non-Owning)** | `const SkType&` parameter | Pass through | `owns: false` | None | +| **Owned** | `new SkType()` | `sk_type_new/delete()` | `DisposeNative() → delete` | Call delete | +| **Ref-Counted (Virtual)** | `: SkRefCnt` | `sk_type_ref/unref()` | `ISKReferenceCounted` | Call unref | +| **Ref-Counted (NV)** | `: SkNVRefCnt` | `sk_data_ref/unref()` | `ISKNonVirtualReferenceCounted` | Call type-specific unref | + +--- + +## Adding a Simple API: Walkthrough + +Let's add `SkCanvas::drawCircle()` to SkiaSharp. + +### Step 1: Find the C++ API + +**Location:** `externals/skia/include/core/SkCanvas.h` + +```cpp +class SkCanvas { +public: + void drawCircle(SkScalar cx, SkScalar cy, SkScalar radius, const SkPaint& paint); +}; +``` + +**Analysis:** +- Method on `SkCanvas` (owned pointer type) +- Parameters: `cx`, `cy`, `radius` are simple values, `paint` is const reference (borrowed) +- Returns: `void` (no error signaling) +- Cannot fail (simple drawing operation) + +### Step 2: Add C API Function + +**Location:** `externals/skia/src/c/sk_canvas.cpp` + +```cpp +void sk_canvas_draw_circle( + sk_canvas_t* canvas, + float cx, + float cy, + float radius, + const sk_paint_t* paint) +{ + // Call C++ method directly - C# ensures valid parameters + AsCanvas(canvas)->drawCircle(cx, cy, radius, *AsPaint(paint)); +} +``` + +**Key points:** +- Function name: `sk__` pattern +- **No validation needed** - C API trusts C# to pass valid parameters +- `AsCanvas()` and `AsPaint()` convert opaque pointers to C++ types +- Dereference with `*` to convert pointer to reference + +### Step 3: Add C API Header + +**Location:** `externals/skia/include/c/sk_canvas.h` + +```cpp +SK_C_API void sk_canvas_draw_circle( + sk_canvas_t* canvas, + float cx, + float cy, + float radius, + const sk_paint_t* paint); +``` + +### Step 4: Add P/Invoke Declaration + +**Location:** `binding/SkiaSharp/SkiaApi.cs` + +```csharp +[DllImport("libSkiaSharp", CallingConvention = CallingConvention.Cdecl)] +public static extern void sk_canvas_draw_circle( + sk_canvas_t canvas, + float cx, + float cy, + float radius, + sk_paint_t paint); +``` + +**Key points:** +- Use `sk_canvas_t` and `sk_paint_t` type aliases (defined as `IntPtr`) +- Match C API signature exactly +- Use `CallingConvention.Cdecl` + +### Step 5: Add C# Wrapper + +**Location:** `binding/SkiaSharp/SKCanvas.cs` + +```csharp +public void DrawCircle(float cx, float cy, float radius, SKPaint paint) +{ + // Validate parameters + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + + // Call P/Invoke + SkiaApi.sk_canvas_draw_circle(Handle, cx, cy, radius, paint.Handle); +} +``` + +**Key points:** +- Use .NET naming conventions (PascalCase) +- Validate parameters before P/Invoke +- Use `Handle` property to get native pointer +- No need to check return value (void function) + +### Done! ✅ + +You've added a complete binding across all three layers. + +--- + +## Error Handling Patterns + +> **📚 Deep Dive:** See [error-handling.md](error-handling.md) for comprehensive error handling patterns. + +### Pattern 1: Boolean Return (Try Methods) + +**C++ (can throw):** +```cpp +bool SkBitmap::tryAllocPixels(const SkImageInfo& info); +``` + +**C API (pass through):** +```cpp +bool sk_bitmap_try_alloc_pixels(sk_bitmap_t* bitmap, const sk_imageinfo_t* info) { + return AsBitmap(bitmap)->tryAllocPixels(AsImageInfo(info)); +} +``` + +**C# (throw on false):** +```csharp +public bool TryAllocPixels(SKImageInfo info) +{ + var nInfo = SKImageInfoNative.FromManaged(ref info); + return SkiaApi.sk_bitmap_try_alloc_pixels(Handle, &nInfo); +} + +public void AllocPixels(SKImageInfo info) +{ + if (!TryAllocPixels(info)) + throw new InvalidOperationException("Failed to allocate pixels"); +} +``` + +### Pattern 2: Null Return (Factory Methods) + +**C++ (returns nullptr on failure):** +```cpp +sk_sp SkImages::DeferredFromEncodedData(sk_sp data); +``` + +**C API (pass through):** +```cpp +sk_image_t* sk_image_new_from_encoded(const sk_data_t* data) { + auto image = SkImages::DeferredFromEncodedData(sk_ref_sp(AsData(data))); + return ToImage(image.release()); +} +``` + +**C# (returns null, does NOT throw):** +```csharp +public static SKImage FromEncodedData(SKData data) +{ + if (data == null) + throw new ArgumentNullException(nameof(data)); + + var handle = SkiaApi.sk_image_new_from_encoded(data.Handle); + return GetObject(handle); // Returns null if handle is IntPtr.Zero +} + +// ✅ CORRECT usage - check for null +var image = SKImage.FromEncodedData(data); +if (image == null) + throw new InvalidOperationException("Failed to decode image"); +``` + +**Note:** Factory methods return `null` on failure, they do NOT throw exceptions. Always check the return value. + +### Pattern 3: Void Methods (Minimal C API) + +**C API (no validation):** +```cpp +void sk_canvas_draw_rect(sk_canvas_t* canvas, const sk_rect_t* rect, const sk_paint_t* paint) { + AsCanvas(canvas)->drawRect(*AsRect(rect), *AsPaint(paint)); +} +``` + +**C# (validates before calling):** +```csharp +public void DrawRect(SKRect rect, SKPaint paint) +{ + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + SkiaApi.sk_canvas_draw_rect(Handle, &rect, paint.Handle); +} +``` + +**Design:** C API is a minimal wrapper with no validation. C# validates all parameters before P/Invoke. + +--- + +## Top 10 Common Mistakes + +### 1. ❌ Wrong Pointer Type +```csharp +// WRONG: SKImage is ref-counted, not owned +protected override void DisposeNative() +{ + SkiaApi.sk_image_delete(Handle); // No such function! +} + +// CORRECT: Use unref for ref-counted types +// SKImage implements ISKReferenceCounted, which handles this automatically +``` + +### 2. ❌ Passing NULL to C API (C# validation missing) + +```csharp +// WRONG: No validation - will crash in C API! +public void DrawRect(SKRect rect, SKPaint paint) +{ + SkiaApi.sk_canvas_draw_rect(Handle, &rect, paint.Handle); // Crashes if paint is null +} + +// CORRECT: Validate in C# before calling C API +public void DrawRect(SKRect rect, SKPaint paint) +{ + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + SkiaApi.sk_canvas_draw_rect(Handle, &rect, paint.Handle); +} +``` + +**Why this matters:** C API does NOT validate - it trusts C# to send valid pointers. + +### 3. ❌ Missing Parameter Validation +```csharp +// WRONG: No validation +public void DrawRect(SKRect rect, SKPaint paint) +{ + SkiaApi.sk_canvas_draw_rect(Handle, &rect, paint.Handle); // paint could be null! +} + +// CORRECT: Validate first +public void DrawRect(SKRect rect, SKPaint paint) +{ + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + SkiaApi.sk_canvas_draw_rect(Handle, &rect, paint.Handle); +} +``` + +### 4. ❌ Not Checking for Null Returns +```csharp +// WRONG: Factory methods can return null +var image = SKImage.FromEncodedData(data); +canvas.DrawImage(image, 0, 0); // NullReferenceException if decode failed! + +// CORRECT: Check for null +var image = SKImage.FromEncodedData(data); +if (image == null) + throw new InvalidOperationException("Failed to decode image"); +canvas.DrawImage(image, 0, 0); +``` + +**Important:** Static factory methods return `null` on failure, they do NOT throw exceptions! + +### 5. ❌ Missing sk_ref_sp for Ref-Counted Parameters +```cpp +// WRONG: C++ expects sk_sp, this doesn't increment ref count +sk_image_t* sk_image_new(const sk_data_t* data) { + return ToImage(SkImages::Make(AsData(data)).release()); // LEAK or CRASH! +} + +// CORRECT: Use sk_ref_sp to create sk_sp and increment ref +sk_image_t* sk_image_new(const sk_data_t* data) { + return ToImage(SkImages::Make(sk_ref_sp(AsData(data))).release()); +} +``` + +### 6. ❌ Using C++ Types in C API +```cpp +// WRONG: std::string is C++ +SK_C_API void sk_function(std::string name); + +// CORRECT: Use C types +SK_C_API void sk_function(const char* name); +``` + +### 7. ❌ Not Disposing IDisposable Objects +```csharp +// WRONG: Memory leak +var paint = new SKPaint(); +paint.Color = SKColors.Red; +// paint never disposed! + +// CORRECT: Use using statement +using (var paint = new SKPaint()) +{ + paint.Color = SKColors.Red; +} // Automatically disposed +``` + +### 8. ❌ Exposing IntPtr in Public API +```csharp +// WRONG: IntPtr is implementation detail +public IntPtr NativeHandle { get; } + +// CORRECT: Keep internal +internal IntPtr Handle { get; } +``` + +### 9. ❌ Missing Validation in C# (not C API) + +```csharp +// WRONG: Assuming disposed object check isn't needed +public void DrawRect(SKRect rect, SKPaint paint) +{ + SkiaApi.sk_canvas_draw_rect(Handle, &rect, paint.Handle); +} + +// CORRECT: Check object state before calling C API +public void DrawRect(SKRect rect, SKPaint paint) +{ + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + if (Handle == IntPtr.Zero) + throw new ObjectDisposedException(nameof(SKCanvas)); + if (paint.Handle == IntPtr.Zero) + throw new ObjectDisposedException(nameof(paint)); + + SkiaApi.sk_canvas_draw_rect(Handle, &rect, paint.Handle); +} +``` + +**Remember:** C# is the safety boundary - validate everything before P/Invoke! + +### 10. ❌ Forgetting .release() on sk_sp +```cpp +// WRONG: sk_sp will unref when destroyed, ref count goes to 0 +SK_C_API sk_image_t* sk_image_new() { + sk_sp image = SkImages::Make(...); + return ToImage(image); // Converted to raw pointer, then sk_sp destructs → CRASH! +} + +// CORRECT: .release() transfers ownership +SK_C_API sk_image_t* sk_image_new() { + sk_sp image = SkImages::Make(...); + return ToImage(image.release()); // Releases sk_sp ownership, ref count stays 1 +} +``` + +--- + +## Threading Quick Reference + +> **📚 Deep Dive:** See [architecture-overview.md - Threading Model](architecture-overview.md#threading-model-and-concurrency) for comprehensive threading documentation. + +### Thread Safety Matrix + +| Object Type | Thread-Safe? | Can Share? | Rule | +|-------------|--------------|------------|------| +| SKCanvas | ❌ No | No | One thread only | +| SKPaint | ❌ No | No | One thread only | +| SKPath | ❌ No | No | One thread only | +| SKImage | ✅ Yes (read-only) | Yes | Immutable, shareable | +| SKShader | ✅ Yes (read-only) | Yes | Immutable, shareable | +| SKTypeface | ✅ Yes (read-only) | Yes | Immutable, shareable | + +### Pattern: Background Rendering + +```csharp +// ✅ GOOD: Each thread has its own objects +var image = await Task.Run(() => +{ + using var surface = SKSurface.Create(info); + using var canvas = surface.Canvas; // Thread-local canvas + using var paint = new SKPaint(); // Thread-local paint + + canvas.Clear(SKColors.White); + canvas.DrawCircle(100, 100, 50, paint); + + return surface.Snapshot(); // Returns immutable SKImage (shareable) +}); + +// Safe to use image on UI thread +imageView.Image = image; +``` + +### Pattern: Shared Immutable Resources + +```csharp +// ✅ GOOD: Load once, share across threads +private static readonly SKTypeface _sharedFont = SKTypeface.FromFile("font.ttf"); +private static readonly SKImage _sharedLogo = SKImage.FromEncodedData("logo.png"); + +void DrawOnAnyThread(SKCanvas canvas) +{ + // Immutable objects can be safely shared + using var paint = new SKPaint { Typeface = _sharedFont }; + canvas.DrawImage(_sharedLogo, 0, 0); +} +``` + +### ❌ Common Threading Mistake + +```csharp +// WRONG: Sharing mutable objects across threads +SKCanvas sharedCanvas; // ❌ BAD! + +Task.Run(() => sharedCanvas.DrawRect(...)); // Thread 1 +Task.Run(() => sharedCanvas.DrawCircle(...)); // Thread 2 - RACE CONDITION! +``` + +**Remember:** Mutable objects (Canvas, Paint, Path) are NOT thread-safe. Keep them thread-local! + +--- + +## Next Steps + +### For Quick Reference +- **[AGENTS.md](../AGENTS.md)** - Ultra-quick lookup (2 minutes) + +### For Deep Dives +- **[architecture-overview.md](architecture-overview.md)** - Complete architecture details +- **[memory-management.md](memory-management.md)** - Everything about pointer types +- **[error-handling.md](error-handling.md)** - Complete error patterns +- **[layer-mapping.md](layer-mapping.md)** - Type mapping reference +- **[adding-new-apis.md](adding-new-apis.md)** - Comprehensive API guide + +### For Path-Specific Rules +- **[.github/instructions/](../.github/instructions/)** - Auto-loading instructions per file type + +### Testing Your Changes +```bash +# Build managed code +dotnet cake --target=libs + +# Run tests +dotnet cake --target=tests +``` + +--- + +## Summary + +**Remember:** +1. **Three layers:** C# → C API → C++ +2. **C# validates everything:** Parameters checked before P/Invoke +3. **Three pointer types:** Raw, Owned, Ref-counted +4. **Factory methods return null:** Always check for null returns +5. **Constructors throw:** On allocation/creation failures + +**When in doubt:** +- Check similar existing APIs +- Follow the patterns in this guide +- See comprehensive docs for details + +Good luck! 🎨 diff --git a/design/README.md b/design/README.md new file mode 100644 index 0000000000..55a904559d --- /dev/null +++ b/design/README.md @@ -0,0 +1,243 @@ +# SkiaSharp Design Documentation + +This folder contains comprehensive documentation for understanding and contributing to SkiaSharp. + +## 🚀 Start Here + +### For Quick Answers +- **[../AGENTS.md](../AGENTS.md)** - 2-minute quick reference (AI agents, quick lookup) + +### For Getting Started +- **[QUICKSTART.md](QUICKSTART.md)** - **⭐ Start here!** 10-minute practical tutorial + - How to add an API end-to-end + - Pointer type identification flowchart + - Common mistakes and how to avoid them + +### For Comprehensive Reference +Continue reading below for the complete documentation index. + +--- + +## Documentation Index + +### Getting Started + +0. **[QUICKSTART.md](QUICKSTART.md)** - **⭐ Practical tutorial (start here!)** + - Complete API addition walkthrough + - Pointer type decision flowchart + - Error handling patterns + - Top 10 common mistakes + - Quick examples for immediate productivity + +### Core Architecture Documents + +1. **[architecture-overview.md](architecture-overview.md)** - Three-layer architecture + - Three-layer architecture (C++ → C API → C#) + - How components connect + - Call flow examples + - File organization + - Code generation overview + - Key design principles + +2. **[memory-management.md](memory-management.md)** - Critical for correct bindings + - Three pointer type categories (raw, owned, reference-counted) + - How each type maps through layers + - Ownership semantics and lifecycle patterns + - How to identify pointer types from C++ signatures + - Common mistakes and how to avoid them + - Thread safety considerations + +3. **[error-handling.md](error-handling.md)** - Understanding error flow + - Error handling strategy by layer + - Validation patterns in C# + - Factory methods return null (not throw) + - Complete error flow examples + - Best practices and debugging tips + +4. **[adding-new-apis.md](adding-new-apis.md)** - Step-by-step contributor guide + - How to analyze C++ APIs + - Adding C API wrapper functions + - Creating P/Invoke declarations + - Writing C# wrapper code + - Testing your changes + - Complete examples and patterns + - Troubleshooting guide + +5. **[layer-mapping.md](layer-mapping.md)** - Quick reference + - Type naming conventions across layers + - Function naming patterns + - File organization mapping + - Type conversion macros + - Common API patterns + - Parameter passing patterns + +## Quick Start Guide + +### For AI Assistants (GitHub Copilot) + +See [../.github/copilot-instructions.md](../.github/copilot-instructions.md) for: +- Condensed context optimized for AI +- Quick decision trees +- Common patterns and anti-patterns +- Checklist for changes + +### For Human Contributors + +**First time working with SkiaSharp?** + +1. Read [architecture-overview.md](architecture-overview.md) to understand the three-layer structure +2. Study [memory-management.md](memory-management.md) to understand pointer types (critical!) +3. Review [error-handling.md](error-handling.md) to understand error propagation +4. When ready to add APIs, follow [adding-new-apis.md](adding-new-apis.md) +5. Keep [layer-mapping.md](layer-mapping.md) open as a reference + +**Want to understand existing code?** + +Use the documentation to trace through layers: +1. Start with C# API in `binding/SkiaSharp/SK*.cs` +2. Find P/Invoke in `SkiaApi.cs` or `SkiaApi.generated.cs` +3. Locate C API in `externals/skia/include/c/sk_*.h` +4. Check implementation in `externals/skia/src/c/sk_*.cpp` +5. Find C++ API in `externals/skia/include/core/Sk*.h` + +## Key Concepts at a Glance + +### The Three-Layer Architecture + +``` +C# Wrapper (binding/) → P/Invoke → C API (externals/skia/src/c/) → C++ Skia +``` + +**→ Full details:** [architecture-overview.md](architecture-overview.md) + +### Three Pointer Types + +| Type | Examples | Cleanup | +|------|----------|---------| +| **Raw** | Parameters, getters | None | +| **Owned** | Canvas, Paint | `delete` | +| **Ref-counted** | Image, Shader | `unref()` | + +**→ Full details:** [memory-management.md](memory-management.md) + +### Error Handling + +C++ throws → C API catches (returns bool/null) → C# checks & throws + +**→ Full details:** [error-handling.md](error-handling.md) + +## Use Cases Supported + +### Use Case 1: Understanding Existing Code + +> "I'm looking at `SKCanvas.DrawRect()` in C# - trace this call through all layers to understand how it reaches native Skia code and what memory management is happening." + +**Solution:** Follow the call flow in [architecture-overview.md](architecture-overview.md), check pointer types in [memory-management.md](memory-management.md) + +### Use Case 2: Understanding Pointer Types + +> "I see `sk_canvas_t*` in the C API and `SKCanvas` in C#. What pointer type does SKCanvas use in native Skia? How does this affect the C# wrapper's dispose pattern?" + +**Solution:** Check [memory-management.md](memory-management.md) section on "Owned Pointers" and "Identifying Pointer Types" + +### Use Case 3: Adding a New API + +> "Skia added a new `SkCanvas::drawArc()` method. What files do I need to modify in each layer, and how should I handle memory management?" + +**Solution:** Follow step-by-step guide in [adding-new-apis.md](adding-new-apis.md) + +### Use Case 4: Debugging Memory Issues + +> "There's a memory leak involving SKBitmap objects. How do I understand the lifecycle and pointer type to find where disposal or reference counting might be wrong?" + +**Solution:** Check [memory-management.md](memory-management.md) for lifecycle patterns and common mistakes + +### Use Case 5: Understanding Error Flow + +> "A native Skia operation failed but my C# code didn't catch any exception. How do errors flow through the layers, and where might error handling be missing?" + +**Solution:** Review [error-handling.md](error-handling.md) for error propagation patterns and debugging + +### Use Case 6: Working with Reference Counting + +> "SKImage seems to use reference counting. How does this work across the C API boundary? When do I need to call ref/unref functions?" + +**Solution:** See [memory-management.md](memory-management.md) section on "Reference-Counted Pointers" with examples + +## Documentation Maintenance + +### When to Update + +Update this documentation when: +- Adding new patterns or architectural changes +- Discovering common mistakes or gotchas +- Significant changes to memory management strategy +- Adding new pointer type categories +- Changing error handling approach + +### What NOT to Document Here + +Don't duplicate information that's better elsewhere: +- **API documentation** - Use XML comments in code, generated to `docs/` +- **Build instructions** - Keep in Wiki or root README +- **Version history** - Keep in CHANGELOG or release notes +- **Platform specifics** - Keep in platform-specific docs + +### Keep It Maintainable + +- Focus on architecture and patterns, not specific APIs +- Use examples that are unlikely to change +- Reference stable parts of the codebase +- Update when patterns change, not when APIs are added + +## Contributing to Documentation + +Improvements welcome! When contributing: + +1. **Keep it high-level** - Focus on concepts, not exhaustive API lists +2. **Add examples** - Show complete patterns through all three layers +3. **Optimize for searchability** - Use clear headings and keywords +4. **Test understanding** - Can someone follow your examples? +5. **Update cross-references** - Keep links between documents current + +## Additional Resources + +### External Documentation + +- **Skia Website:** https://skia.org/ +- **Skia C++ API Reference:** https://api.skia.org/ +- **SkiaSharp Wiki:** https://github.com/mono/SkiaSharp/wiki +- **SkiaSharp Samples:** https://github.com/mono/SkiaSharp/tree/main/samples + +### Related Documentation + +- **Root README.md** - Project overview and getting started +- **Wiki: Creating Bindings** - Original binding guide (less detailed) +- **Wiki: Building SkiaSharp** - Build instructions +- **Source XML Comments** - API-level documentation + +### Questions or Issues? + +- **Architecture questions:** Review this documentation first +- **Build issues:** Check Wiki or root README +- **API usage:** Check generated API docs in `docs/` +- **Bugs:** File an issue on GitHub + +## Version History + +- **2024-11-07:** Initial architecture documentation created + - Comprehensive coverage of three-layer architecture + - Detailed memory management with pointer types + - Complete error handling patterns + - Step-by-step API addition guide + - Layer mapping reference + - GitHub Copilot instructions + +--- + +**Remember:** The three most important concepts are: +1. **Three-layer architecture** (C++ → C API → C#) +2. **Three pointer types** (raw, owned, reference-counted) +3. **C# is safety boundary** (validates all, factory methods return null) + +Master these, and you'll understand SkiaSharp's design. diff --git a/design/adding-new-apis.md b/design/adding-new-apis.md new file mode 100644 index 0000000000..4884784d16 --- /dev/null +++ b/design/adding-new-apis.md @@ -0,0 +1,796 @@ +# Adding New APIs to SkiaSharp + +> **Quick Start:** For a quick walkthrough, see [QUICKSTART.md](QUICKSTART.md) +> **Quick Reference:** For common patterns, see [AGENTS.md](../AGENTS.md) + +## TL;DR + +**5-step process to add a new API:** + +1. **Find C++ API** - Locate in `externals/skia/include/core/` +2. **Identify pointer type** - Check inheritance: `SkRefCnt`, `SkNVRefCnt`, or owned +3. **Add C API** - Create wrapper in `externals/skia/src/c/` with exception handling +4. **Add P/Invoke** - Declare in `binding/SkiaSharp/SkiaApi.cs` +5. **Add C# wrapper** - Implement in `binding/SkiaSharp/SK*.cs` with validation + +**Critical decisions:** +- Pointer type (determines disposal pattern) +- Error handling (can it fail?) +- Parameter types (ref-counted need `sk_ref_sp`) + +**File locations:** +``` +C++: externals/skia/include/core/SkCanvas.h +C API: externals/skia/src/c/sk_canvas.cpp + externals/skia/include/c/sk_canvas.h +C#: binding/SkiaSharp/SKCanvas.cs + binding/SkiaSharp/SkiaApi.cs +``` + +See [QUICKSTART.md](QUICKSTART.md) for a complete example, or continue below for comprehensive details. + +--- + +## Introduction + +This guide walks through the complete process of adding a new Skia API to SkiaSharp, from identifying the C++ API to testing the final C# binding. + +## Prerequisites + +Before adding a new API, you should understand: +- [Architecture Overview](architecture-overview.md) - The three-layer structure +- [Memory Management](memory-management.md) - Pointer types and ownership +- [Error Handling](error-handling.md) - How errors propagate + +## Overview: The Four-Step Process + +``` +1. Analyze C++ API → Identify pointer type & error handling +2. Add C API Layer → Create C wrapper functions +3. Add P/Invoke → Declare C# interop +4. Add C# Wrapper → Create idiomatic C# API +``` + +## Step 1: Analyze the C++ API + +### Find the C++ API + +Locate the API in Skia's C++ headers: + +```bash +# Search Skia headers +grep -r "drawArc" externals/skia/include/core/ + +# Common locations: +# - externals/skia/include/core/SkCanvas.h +# - externals/skia/include/core/SkPaint.h +# - externals/skia/include/core/SkImage.h +``` + +**Example:** Let's add `SkCanvas::drawArc()` + +```cpp +// In SkCanvas.h +class SK_API SkCanvas { +public: + void drawArc(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, + bool useCenter, const SkPaint& paint); +}; +``` + +### Determine Pointer Type and Ownership + +**Key questions to answer:** + +1. **What type of object is this method on?** + - `SkCanvas` → Owned pointer (mutable, not ref-counted) + +2. **What parameters does it take?** + - `const SkRect&` → Raw pointer (non-owning, value parameter) + - `const SkPaint&` → Raw pointer (non-owning, borrowed) + - `SkScalar` → Value type (primitive) + - `bool` → Value type (primitive) + +3. **Does it return anything?** + - `void` → No return value + +4. **Can it fail?** + - Drawing operations typically don't fail + - May clip or do nothing if parameters invalid + - No error return needed + +**Pointer type analysis:** +- Canvas: Owned (must exist for call duration) +- Paint: Borrowed (only used during call) +- Rect: Value (copied, safe to stack allocate) + +**See [Memory Management](memory-management.md) for detailed pointer type identification.** + +### Check Skia Documentation + +```cpp +// From SkCanvas.h comments: +/** Draws arc of oval bounded by oval_rect. + @param oval rect bounds of oval containing arc + @param startAngle starting angle in degrees + @param sweepAngle sweep angle in degrees + @param useCenter if true, include center of oval + @param paint paint to use +*/ +void drawArc(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, + bool useCenter, const SkPaint& paint); +``` + +## Step 2: Add C API Layer + +### File Location + +Add to existing or create new C API files: +- Header: `externals/skia/include/c/sk_canvas.h` +- Implementation: `externals/skia/src/c/sk_canvas.cpp` + +### Add Function Declaration to Header + +```cpp +// In externals/skia/include/c/sk_canvas.h + +SK_C_API void sk_canvas_draw_arc( + sk_canvas_t* ccanvas, + const sk_rect_t* oval, + float startAngle, + float sweepAngle, + bool useCenter, + const sk_paint_t* cpaint); +``` + +**Naming convention:** +- Function: `sk__` +- Example: `sk_canvas_draw_arc` + +**Parameter types:** +- C++ `SkCanvas*` → C `sk_canvas_t*` +- C++ `const SkRect&` → C `const sk_rect_t*` +- C++ `SkScalar` → C `float` +- C++ `const SkPaint&` → C `const sk_paint_t*` +- C++ `bool` → C `bool` + +### Add Implementation + +```cpp +// In externals/skia/src/c/sk_canvas.cpp + +void sk_canvas_draw_arc( + sk_canvas_t* ccanvas, + const sk_rect_t* oval, + float startAngle, + float sweepAngle, + bool useCenter, + const sk_paint_t* cpaint) +{ + // Defensive null checks (optional but recommended) + if (!ccanvas || !oval || !cpaint) + return; + + // Convert C types to C++ types and call + AsCanvas(ccanvas)->drawArc( + *AsRect(oval), // Dereference pointer to get reference + startAngle, // SkScalar is float + sweepAngle, + useCenter, + *AsPaint(cpaint)); // Dereference pointer to get reference +} +``` + +**Key points:** +- Type conversion macros: `AsCanvas()`, `AsRect()`, `AsPaint()` +- Dereference pointers (`*`) to get C++ references +- Keep implementation simple - C# validates parameters +- No try-catch needed (C# prevents invalid inputs) + +### Special Cases + +#### Returning Owned Pointers + +```cpp +SK_C_API sk_canvas_t* sk_canvas_new_from_bitmap(const sk_bitmap_t* bitmap) { + // Create new canvas - caller owns + return ToCanvas(new SkCanvas(*AsBitmap(bitmap))); +} +``` + +#### Returning Reference-Counted Pointers + +```cpp +SK_C_API sk_image_t* sk_image_new_from_bitmap(const sk_bitmap_t* bitmap) { + // SkImages::RasterFromBitmap returns sk_sp + // .release() transfers ownership (ref count = 1) + return ToImage(SkImages::RasterFromBitmap(*AsBitmap(bitmap)).release()); +} +``` + +#### Taking Reference-Counted Parameters + +```cpp +SK_C_API sk_image_t* sk_image_apply_filter( + const sk_image_t* image, + const sk_imagefilter_t* filter) +{ + // Filter is ref-counted, C++ wants sk_sp + // sk_ref_sp increments ref count before passing + return ToImage(AsImage(image)->makeWithFilter( + sk_ref_sp(AsImageFilter(filter))).release()); +} +``` + +#### Boolean Return for Success/Failure + +```cpp +SK_C_API bool sk_bitmap_try_alloc_pixels( + sk_bitmap_t* bitmap, + const sk_imageinfo_t* info) +{ + // C++ method naturally returns bool + return AsBitmap(bitmap)->tryAllocPixels(AsImageInfo(info)); +} +``` + +**Note:** C# validates `bitmap` and `info` before calling. + +#### Null Return for Factory Failure + +```cpp +SK_C_API sk_surface_t* sk_surface_new_raster(const sk_imageinfo_t* info) { + auto surface = SkSurfaces::Raster(AsImageInfo(info)); + return ToSurface(surface.release()); // Returns nullptr if Skia factory fails +} +``` + +**Note:** C# checks for `IntPtr.Zero` and throws exception. + +## Step 3: Add P/Invoke Declaration + +### Manual Declaration + +For simple functions, add to `binding/SkiaSharp/SkiaApi.cs`: + +```csharp +// In SkiaApi.cs +internal static partial class SkiaApi +{ + [DllImport("libSkiaSharp", CallingConvention = CallingConvention.Cdecl)] + public static extern void sk_canvas_draw_arc( + sk_canvas_t canvas, + sk_rect_t* oval, + float startAngle, + float sweepAngle, + [MarshalAs(UnmanagedType.I1)] bool useCenter, + sk_paint_t paint); +} +``` + +**Type mappings:** +- C `sk_canvas_t*` → C# `sk_canvas_t` (IntPtr alias) +- C `const sk_rect_t*` → C# `sk_rect_t*` (pointer) +- C `float` → C# `float` +- C `bool` → C# `bool` with `MarshalAs(UnmanagedType.I1)` +- C `sk_paint_t*` → C# `sk_paint_t` (IntPtr alias) + +**Note:** Bool marshaling ensures correct size (1 byte). + +### Generated Declaration + +For bulk additions, update generator config and regenerate: + +```bash +dotnet run --project utils/SkiaSharpGenerator/SkiaSharpGenerator.csproj -- generate +``` + +The generator creates `SkiaApi.generated.cs` with P/Invoke declarations. + +## Step 4: Add C# Wrapper + +### Determine Wrapper Pattern + +Based on the pointer type analysis: + +| Pointer Type | C# Pattern | Example | +|--------------|------------|---------| +| Owned | `SKObject` with `DisposeNative()` | `SKCanvas`, `SKPaint` | +| Reference-Counted | `SKObject, ISKReferenceCounted` | `SKImage`, `SKShader` | +| Non-Owning | `OwnsHandle = false` | Returned child objects | + +### Add Method to C# Class + +```csharp +// In binding/SkiaSharp/SKCanvas.cs + +public unsafe class SKCanvas : SKObject +{ + public void DrawArc(SKRect oval, float startAngle, float sweepAngle, bool useCenter, SKPaint paint) + { + // Step 1: Validate parameters + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + + // Step 2: Call P/Invoke + SkiaApi.sk_canvas_draw_arc(Handle, &oval, startAngle, sweepAngle, useCenter, paint.Handle); + } +} +``` + +**Best practices:** +1. **Parameter validation** - Check nulls, disposed objects +2. **Proper marshaling** - Use `&` for struct pointers +3. **Resource tracking** - Handle ownership transfers if needed +4. **Documentation** - Add XML comments + +### Handle Different Return Types + +#### Void Return (No Error) + +```csharp +public void DrawArc(SKRect oval, float startAngle, float sweepAngle, bool useCenter, SKPaint paint) +{ + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + + SkiaApi.sk_canvas_draw_arc(Handle, &oval, startAngle, sweepAngle, useCenter, paint.Handle); +} +``` + +#### Boolean Return (Success/Failure) + +```csharp +public bool TryAllocPixels(SKImageInfo info) +{ + var nInfo = SKImageInfoNative.FromManaged(ref info); + return SkiaApi.sk_bitmap_try_alloc_pixels(Handle, &nInfo); +} + +// Or throw on failure: +public void AllocPixels(SKImageInfo info) +{ + if (!TryAllocPixels(info)) + throw new InvalidOperationException($"Failed to allocate {info.Width}x{info.Height} pixels"); +} +``` + +#### Owned Pointer Return + +```csharp +public static SKCanvas Create(SKBitmap bitmap) +{ + if (bitmap == null) + throw new ArgumentNullException(nameof(bitmap)); + + var handle = SkiaApi.sk_canvas_new_from_bitmap(bitmap.Handle); + + if (handle == IntPtr.Zero) + throw new InvalidOperationException("Failed to create canvas"); + + // Returns owned object + return GetOrAddObject(handle, owns: true, (h, o) => new SKCanvas(h, o)); +} +``` + +#### Reference-Counted Pointer Return + +```csharp +public static SKImage FromBitmap(SKBitmap bitmap) +{ + if (bitmap == null) + throw new ArgumentNullException(nameof(bitmap)); + + var handle = SkiaApi.sk_image_new_from_bitmap(bitmap.Handle); + + // Returns ref-counted object (ref count = 1), or null if failed + return GetObject(handle); +} + +// ✅ Usage - check for null +var image = SKImage.FromBitmap(bitmap); +if (image == null) + throw new InvalidOperationException("Failed to create image"); +``` + +#### Non-Owning Pointer Return + +```csharp +public SKSurface Surface +{ + get { + var handle = SkiaApi.sk_get_surface(Handle); + if (handle == IntPtr.Zero) + return null; + + // Surface owned by canvas, return non-owning wrapper + return GetOrAddObject(handle, owns: false, (h, o) => new SKSurface(h, o)); + } +} +``` + +### Handle Ownership Transfer + +```csharp +public void DrawDrawable(SKDrawable drawable, SKMatrix matrix) +{ + if (drawable == null) + throw new ArgumentNullException(nameof(drawable)); + + // Canvas takes ownership of drawable + drawable.RevokeOwnership(this); + + SkiaApi.sk_canvas_draw_drawable(Handle, drawable.Handle, &matrix); +} +``` + +### Add Overloads for Convenience + +```csharp +// Core method with all parameters +public void DrawArc(SKRect oval, float startAngle, float sweepAngle, bool useCenter, SKPaint paint) +{ + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + SkiaApi.sk_canvas_draw_arc(Handle, &oval, startAngle, sweepAngle, useCenter, paint.Handle); +} + +// Overload with SKPoint center and radius +public void DrawArc(SKPoint center, float radius, float startAngle, float sweepAngle, bool useCenter, SKPaint paint) +{ + var oval = new SKRect( + center.X - radius, center.Y - radius, + center.X + radius, center.Y + radius); + DrawArc(oval, startAngle, sweepAngle, useCenter, paint); +} + +// Overload with individual coordinates +public void DrawArc(float left, float top, float right, float bottom, + float startAngle, float sweepAngle, bool useCenter, SKPaint paint) +{ + DrawArc(new SKRect(left, top, right, bottom), startAngle, sweepAngle, useCenter, paint); +} +``` + +## Complete Example: Adding DrawArc + +### C API Header + +```cpp +// externals/skia/include/c/sk_canvas.h +SK_C_API void sk_canvas_draw_arc( + sk_canvas_t* ccanvas, + const sk_rect_t* oval, + float startAngle, + float sweepAngle, + bool useCenter, + const sk_paint_t* cpaint); +``` + +### C API Implementation + +```cpp +// externals/skia/src/c/sk_canvas.cpp +void sk_canvas_draw_arc( + sk_canvas_t* ccanvas, + const sk_rect_t* oval, + float startAngle, + float sweepAngle, + bool useCenter, + const sk_paint_t* cpaint) +{ + if (!ccanvas || !oval || !cpaint) + return; + + AsCanvas(ccanvas)->drawArc(*AsRect(oval), startAngle, sweepAngle, useCenter, *AsPaint(cpaint)); +} +``` + +### P/Invoke Declaration + +```csharp +// binding/SkiaSharp/SkiaApi.cs +[DllImport("libSkiaSharp", CallingConvention = CallingConvention.Cdecl)] +public static extern void sk_canvas_draw_arc( + sk_canvas_t canvas, + sk_rect_t* oval, + float startAngle, + float sweepAngle, + [MarshalAs(UnmanagedType.I1)] bool useCenter, + sk_paint_t paint); +``` + +### C# Wrapper + +```csharp +// binding/SkiaSharp/SKCanvas.cs +public unsafe class SKCanvas : SKObject +{ + /// + /// Draws an arc of an oval. + /// + /// Bounds of oval containing arc. + /// Starting angle in degrees. + /// Sweep angle in degrees; positive is clockwise. + /// If true, include the center of the oval. + /// Paint to use for the arc. + public void DrawArc(SKRect oval, float startAngle, float sweepAngle, bool useCenter, SKPaint paint) + { + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + + SkiaApi.sk_canvas_draw_arc(Handle, &oval, startAngle, sweepAngle, useCenter, paint.Handle); + } +} +``` + +## Testing Your Changes + +### Build and Test + +```bash +# Build the project +dotnet cake --target=libs + +# Run tests +dotnet cake --target=tests +``` + +### Write Unit Tests + +```csharp +// tests/SkiaSharp.Tests/SKCanvasTest.cs +[Fact] +public void DrawArcRendersCorrectly() +{ + using (var bitmap = new SKBitmap(100, 100)) + using (var canvas = new SKCanvas(bitmap)) + using (var paint = new SKPaint { Color = SKColors.Red, Style = SKPaintStyle.Stroke, StrokeWidth = 2 }) + { + canvas.Clear(SKColors.White); + canvas.DrawArc(new SKRect(10, 10, 90, 90), 0, 90, false, paint); + + // Verify arc was drawn + Assert.NotEqual(SKColors.White, bitmap.GetPixel(50, 10)); + } +} + +[Fact] +public void DrawArcThrowsOnNullPaint() +{ + using (var bitmap = new SKBitmap(100, 100)) + using (var canvas = new SKCanvas(bitmap)) + { + Assert.Throws(() => + canvas.DrawArc(new SKRect(10, 10, 90, 90), 0, 90, false, null)); + } +} +``` + +### Manual Testing + +```csharp +using SkiaSharp; + +using (var bitmap = new SKBitmap(400, 400)) +using (var canvas = new SKCanvas(bitmap)) +using (var paint = new SKPaint { Color = SKColors.Blue, Style = SKPaintStyle.Stroke, StrokeWidth = 4 }) +{ + canvas.Clear(SKColors.White); + + // Test various arcs + canvas.DrawArc(new SKRect(50, 50, 150, 150), 0, 90, false, paint); // Open arc + canvas.DrawArc(new SKRect(200, 50, 300, 150), 0, 90, true, paint); // Closed arc + canvas.DrawArc(new SKRect(50, 200, 150, 300), -45, 180, false, paint); // Larger sweep + + // Save to file + using (var image = SKImage.FromBitmap(bitmap)) + using (var data = image.Encode(SKEncodedImageFormat.Png, 100)) + using (var stream = File.OpenWrite("arc_test.png")) + { + data.SaveTo(stream); + } +} +``` + +## Common Patterns and Examples + +### Pattern: Simple Drawing Method + +**C++:** `void SkCanvas::drawCircle(SkPoint center, SkScalar radius, const SkPaint& paint)` + +```cpp +// C API +SK_C_API void sk_canvas_draw_circle(sk_canvas_t* canvas, float cx, float cy, float radius, const sk_paint_t* paint); + +void sk_canvas_draw_circle(sk_canvas_t* canvas, float cx, float cy, float radius, const sk_paint_t* paint) { + AsCanvas(canvas)->drawCircle(cx, cy, radius, *AsPaint(paint)); +} +``` + +```csharp +// C# +public void DrawCircle(float cx, float cy, float radius, SKPaint paint) +{ + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + SkiaApi.sk_canvas_draw_circle(Handle, cx, cy, radius, paint.Handle); +} + +public void DrawCircle(SKPoint center, float radius, SKPaint paint) => + DrawCircle(center.X, center.Y, radius, paint); +``` + +### Pattern: Factory with Reference Counting + +**C++:** `sk_sp SkImages::DeferredFromEncodedData(sk_sp data)` + +```cpp +// C API +SK_C_API sk_image_t* sk_image_new_from_encoded(const sk_data_t* data); + +sk_image_t* sk_image_new_from_encoded(const sk_data_t* data) { + return ToImage(SkImages::DeferredFromEncodedData(sk_ref_sp(AsData(data))).release()); +} +``` + +```csharp +// C# +public static SKImage FromEncodedData(SKData data) +{ + if (data == null) + throw new ArgumentNullException(nameof(data)); + + var handle = SkiaApi.sk_image_new_from_encoded(data.Handle); + if (handle == IntPtr.Zero) + throw new InvalidOperationException("Failed to decode image"); + + return GetObject(handle); +} +``` + +### Pattern: Mutable Object Creation + +**C++:** `SkPaint::SkPaint()` + +```cpp +// C API +SK_C_API sk_paint_t* sk_paint_new(void); +SK_C_API void sk_paint_delete(sk_paint_t* paint); + +sk_paint_t* sk_paint_new(void) { + return ToPaint(new SkPaint()); +} + +void sk_paint_delete(sk_paint_t* paint) { + delete AsPaint(paint); +} +``` + +```csharp +// C# +public class SKPaint : SKObject, ISKSkipObjectRegistration +{ + public SKPaint() : base(IntPtr.Zero, true) + { + Handle = SkiaApi.sk_paint_new(); + } + + protected override void DisposeNative() + { + SkiaApi.sk_paint_delete(Handle); + } +} +``` + +### Pattern: Property Getter/Setter + +**C++:** `SkColor SkPaint::getColor()` and `void SkPaint::setColor(SkColor color)` + +```cpp +// C API +SK_C_API sk_color_t sk_paint_get_color(const sk_paint_t* paint); +SK_C_API void sk_paint_set_color(sk_paint_t* paint, sk_color_t color); + +sk_color_t sk_paint_get_color(const sk_paint_t* paint) { + return AsPaint(paint)->getColor(); +} + +void sk_paint_set_color(sk_paint_t* paint, sk_color_t color) { + AsPaint(paint)->setColor(color); +} +``` + +```csharp +// C# +public SKColor Color +{ + get => (SKColor)SkiaApi.sk_paint_get_color(Handle); + set => SkiaApi.sk_paint_set_color(Handle, (uint)value); +} +``` + +## Checklist for Adding New APIs + +### Analysis Phase +- [ ] Located C++ API in Skia headers +- [ ] Identified pointer type (raw, owned, ref-counted) +- [ ] Determined ownership semantics +- [ ] Checked error conditions +- [ ] Read Skia documentation/comments + +### C API Layer +- [ ] Added function declaration to header +- [ ] Implemented function in .cpp file +- [ ] Used correct type conversion macros +- [ ] Handled ref-counting correctly (if applicable) +- [ ] Used `.release()` on `sk_sp` returns +- [ ] Used `sk_ref_sp()` for ref-counted parameters + +### P/Invoke Layer +- [ ] Added P/Invoke declaration +- [ ] Used correct type mappings +- [ ] Applied correct marshaling attributes +- [ ] Specified calling convention + +### C# Wrapper Layer +- [ ] Added method to appropriate class +- [ ] Validated parameters +- [ ] Checked return values +- [ ] Handled ownership correctly +- [ ] Added XML documentation +- [ ] Created convenience overloads + +### Testing +- [ ] Built project successfully +- [ ] Wrote unit tests +- [ ] Manual testing completed +- [ ] Verified memory management (no leaks) +- [ ] Tested error cases + +## Troubleshooting + +### Common Build Errors + +**"Cannot find sk_canvas_draw_arc"** +- C API function not exported from native library +- Rebuild native library: `dotnet cake --target=externals` + +**"Method not found" at runtime** +- P/Invoke signature doesn't match C API +- Check calling convention and parameter types + +**Memory leaks** +- Check pointer type identification +- Verify ownership transfer +- Use memory profiler to track leaks + +### Common Runtime Errors + +**Crash in native code** +- Null pointer passed to C API +- Add null checks in C API layer +- Add validation in C# layer + +**ObjectDisposedException** +- Using disposed object +- Check object lifecycle +- Don't cache references to child objects + +**InvalidOperationException** +- C API returned error +- Check return value handling +- Verify error conditions + +## Next Steps + +- Review [Architecture Overview](architecture-overview.md) for context +- Study [Memory Management](memory-management.md) for pointer types +- Read [Error Handling](error-handling.md) for error patterns +- See [Layer Mapping](layer-mapping.md) for detailed type mappings + +## Additional Resources + +- Existing wiki: [Creating Bindings](https://github.com/mono/SkiaSharp/wiki/Creating-Bindings) +- Skia C++ documentation: https://skia.org/docs/ +- Example PRs adding new APIs in SkiaSharp repository diff --git a/design/architecture-overview.md b/design/architecture-overview.md new file mode 100644 index 0000000000..b3ba9dbcc2 --- /dev/null +++ b/design/architecture-overview.md @@ -0,0 +1,649 @@ +# SkiaSharp Architecture Overview + +> **Quick Start:** For a practical tutorial, see [QUICKSTART.md](QUICKSTART.md) +> **Quick Reference:** For a 2-minute overview, see [AGENTS.md](../AGENTS.md) + +## TL;DR + +**Three-layer architecture bridges C++ to C#:** + +1. **C# Wrapper Layer** (`binding/SkiaSharp/`) + - Public .NET API (SKCanvas, SKPaint, etc.) + - Validates parameters, throws exceptions + - Manages object lifecycles with IDisposable + +2. **C API Layer** (`externals/skia/src/c/`) + - C functions as P/Invoke targets + - **Minimal wrapper** - trusts C# validation + - Returns error codes (bool/null), never throws + +3. **C++ Skia Layer** (`externals/skia/`) + - Native graphics library + - Can throw exceptions (C++ code) + +**Call flow:** `SKCanvas.DrawRect()` → (P/Invoke) → `sk_canvas_draw_rect()` → (type cast) → `SkCanvas::drawRect()` + +**Key design principles:** +- C# is the safety boundary - validates all inputs +- C API is minimal wrapper - no validation needed +- Each layer has distinct responsibilities +- Type conversions happen at layer boundaries + +See sections below for details on each layer, threading, and code generation. + +--- + +## Introduction + +SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library. It provides a three-layer architecture that wraps the native C++ Skia library in a safe, idiomatic C# API. + +## Three-Layer Architecture + +SkiaSharp's architecture consists of three distinct layers that work together to provide C# access to native Skia functionality: + +```mermaid +graph TB + subgraph Layer1["C# Wrapper Layer
(binding/SkiaSharp/*.cs)"] + L1A[SKCanvas, SKPaint, SKImage, etc.] + L1B[Object-oriented C# API] + L1C[Memory management & lifecycle] + L1D[Type safety & null checking] + end + + subgraph Layer2["C API Layer
(externals/skia/include/c/*.h
externals/skia/src/c/*.cpp)"] + L2A[sk_canvas_*, sk_paint_*, sk_image_*, etc.] + L2B[C functions with SK_C_API] + L2C[Minimal wrapper - trusts C# validation] + L2D[Return error codes bool/nullptr] + end + + subgraph Layer3["C++ Skia Layer
(externals/skia/)"] + L3A[SkCanvas, SkPaint, SkImage, etc.] + L3B[Native Skia graphics library] + L3C[Full C++ API with exceptions] + L3D[sk_sp smart pointers] + end + + Layer1 -->|P/Invoke
SkiaApi.cs| Layer2 + Layer2 -->|Type conversion
AsCanvas/ToCanvas| Layer3 + + style Layer1 fill:#e1f5e1 + style Layer2 fill:#fff4e1 + style Layer3 fill:#e1e8f5 +``` + +### Layer 1: C++ Skia Library (Native) + +**Location:** `externals/skia/include/core/` and `externals/skia/src/` + +The bottom layer is Google's Skia Graphics Library written in C++. This is the actual graphics engine that performs all rendering operations. + +**Key characteristics:** +- Object-oriented C++ API +- Uses C++ features: classes, inheritance, templates, smart pointers +- Memory management via destructors, RAII, and reference counting +- Exception handling via C++ exceptions +- Cannot be directly called from C# (different ABIs) + +**Example types:** +- `SkCanvas` - Drawing surface +- `SkPaint` - Drawing attributes (owned resource) +- `SkImage` - Immutable image (reference counted via `sk_sp`) + +### Layer 2: C API Layer (Bridge) + +**Location:** `externals/skia/include/c/*.h` and `externals/skia/src/c/*.cpp` + +The middle layer is a hand-written C API that wraps the C++ API. This layer is essential because: +- C has a stable ABI that can be P/Invoked from C# +- C functions can cross the managed/unmanaged boundary +- C++ exceptions cannot cross this boundary safely + +**Key characteristics:** +- Pure C functions (no classes or exceptions) +- Opaque pointer types (`sk_canvas_t*`, `sk_paint_t*`, `sk_image_t*`) +- Manual resource management (create/destroy functions) +- Type conversion macros to cast between C and C++ types +- **Minimal wrapper** - no validation, trusts C# layer + +**Naming convention:** +- C API headers: `sk_.h` (e.g., `sk_canvas.h`) +- C API implementations: `sk_.cpp` (e.g., `sk_canvas.cpp`) +- C API functions: `sk__` (e.g., `sk_canvas_draw_rect`) +- C API types: `sk__t` (e.g., `sk_canvas_t*`) + +**Type conversion macros:** +```cpp +// In sk_types_priv.h +DEF_CLASS_MAP(SkCanvas, sk_canvas_t, Canvas) +// Generates: +// AsCanvas(sk_canvas_t*) -> SkCanvas* +// ToCanvas(SkCanvas*) -> sk_canvas_t* +``` + +**Example:** +```cpp +// C API in sk_canvas.h +SK_C_API void sk_canvas_draw_rect(sk_canvas_t* ccanvas, const sk_rect_t* crect, const sk_paint_t* cpaint); + +// Implementation in sk_canvas.cpp +void sk_canvas_draw_rect(sk_canvas_t* ccanvas, const sk_rect_t* crect, const sk_paint_t* cpaint) { + AsCanvas(ccanvas)->drawRect(*AsRect(crect), *AsPaint(cpaint)); +} +``` + +### Layer 3: C# Wrapper Layer (Managed) + +**Location:** `binding/SkiaSharp/*.cs` + +The top layer is a C# object-oriented wrapper that provides: +- Idiomatic C# API matching Skia's C++ API style +- Automatic memory management via `IDisposable` +- Type safety and null checking +- Properties instead of get/set methods +- .NET naming conventions + +**Key characteristics:** +- Object-oriented classes (SKCanvas, SKPaint, SKImage) +- P/Invoke declarations in `SkiaApi.cs` and `SkiaApi.generated.cs` +- Base class `SKObject` handles lifecycle and disposal +- Handle-based tracking via `IntPtr` to native resources +- Global handle dictionary for object identity + +**Base class hierarchy:** +``` +SKNativeObject (IDisposable) + └─ SKObject (adds handle dictionary & ref counting) + ├─ SKCanvas (owned resource, destroy on dispose) + ├─ SKPaint (owned resource, delete on dispose) + ├─ SKImage (reference counted, unref on dispose) + └─ ... +``` + +**Example:** +```csharp +// C# API in SKCanvas.cs +public class SKCanvas : SKObject +{ + public void DrawRect(SKRect rect, SKPaint paint) + { + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + SkiaApi.sk_canvas_draw_rect(Handle, &rect, paint.Handle); + } +} +``` + +## Call Flow Example: DrawRect + +Here's how a single method call flows through all three layers: + +```csharp +// 1. C# Application Code +var canvas = surface.Canvas; +var paint = new SKPaint { Color = SKColors.Red }; +canvas.DrawRect(new SKRect(10, 10, 100, 100), paint); + +// 2. C# Wrapper (SKCanvas.cs) +public void DrawRect(SKRect rect, SKPaint paint) +{ + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + SkiaApi.sk_canvas_draw_rect(Handle, &rect, paint.Handle); +} + +// 3. P/Invoke Declaration (SkiaApi.cs) +[DllImport("libSkiaSharp")] +public static extern void sk_canvas_draw_rect( + sk_canvas_t canvas, + sk_rect_t* rect, + sk_paint_t paint); + +// 4. C API Implementation (sk_canvas.cpp) +void sk_canvas_draw_rect(sk_canvas_t* ccanvas, const sk_rect_t* crect, const sk_paint_t* cpaint) { + AsCanvas(ccanvas)->drawRect(*AsRect(crect), *AsPaint(cpaint)); +} + +// 5. C++ Skia (SkCanvas.h/cpp) +void SkCanvas::drawRect(const SkRect& rect, const SkPaint& paint) { + // Native implementation performs actual rendering +} +``` + +## File Organization + +### C++ Layer (Skia Native) +``` +externals/skia/ +├── include/core/ # C++ public headers +│ ├── SkCanvas.h +│ ├── SkPaint.h +│ ├── SkImage.h +│ └── ... +└── src/ # C++ implementation (internal) +``` + +### C API Layer (Bridge) +``` +externals/skia/ +├── include/c/ # C API headers (public) +│ ├── sk_canvas.h +│ ├── sk_paint.h +│ ├── sk_image.h +│ ├── sk_types.h # Common type definitions +│ └── ... +└── src/c/ # C API implementation + ├── sk_canvas.cpp + ├── sk_paint.cpp + ├── sk_image.cpp + ├── sk_types_priv.h # Type conversion macros + └── ... +``` + +### C# Wrapper Layer +``` +binding/SkiaSharp/ +├── SKCanvas.cs # C# wrapper for sk_canvas_t +├── SKPaint.cs # C# wrapper for sk_paint_t +├── SKImage.cs # C# wrapper for sk_image_t +├── SKObject.cs # Base class for all wrappers +├── SkiaApi.cs # Manual P/Invoke declarations +├── SkiaApi.generated.cs # Generated P/Invoke declarations +└── ... +``` + +## Naming Conventions + +### Mapping Between Layers + +The naming follows consistent patterns across layers: + +| C++ Class | C API Header | C API Type | C API Functions | C# Class | +|-----------|--------------|------------|-----------------|----------| +| `SkCanvas` | `sk_canvas.h` | `sk_canvas_t*` | `sk_canvas_*` | `SKCanvas` | +| `SkPaint` | `sk_paint.h` | `sk_paint_t*` | `sk_paint_*` | `SKPaint` | +| `SkImage` | `sk_image.h` | `sk_image_t*` | `sk_image_*` | `SKImage` | + +### Function Naming Patterns + +**C API functions follow the pattern:** `sk__[_
]` + +Examples: +- `sk_canvas_draw_rect` - Draw a rectangle on canvas +- `sk_paint_set_color` - Set paint color +- `sk_image_new_from_bitmap` - Create image from bitmap +- `sk_canvas_save_layer` - Save canvas layer + +## Code Generation + +SkiaSharp uses a combination of hand-written and generated code: + +### Hand-Written Code +- **C API layer**: All C wrapper functions in `externals/skia/src/c/*.cpp` +- **C# wrapper logic**: Core classes and complex logic in `binding/SkiaSharp/*.cs` +- **P/Invoke declarations**: Some manual declarations in `SkiaApi.cs` + +### Generated Code +- **P/Invoke declarations**: `SkiaApi.generated.cs` contains generated P/Invoke signatures +- **Generation tool**: `utils/SkiaSharpGenerator/` contains the code generator +- **Configuration**: Type mappings and function mappings in `utils/SkiaSharpGenerator/ConfigJson/` + +The generator parses C header files and creates: +1. P/Invoke declarations with correct signatures +2. Type aliases and constants +3. Enum definitions + +**To regenerate code:** +```bash +dotnet run --project utils/SkiaSharpGenerator/SkiaSharpGenerator.csproj -- generate --config +``` + +## Key Design Principles + +### 1. Handle-Based Pattern +- Native objects are represented as `IntPtr` handles in C# +- Handles are opaque pointers to native memory +- C# objects wrap handles and manage their lifecycle + +### 2. Object Identity +- Global `HandleDictionary` ensures only one C# wrapper per native handle +- Prevents duplicate wrappers and ensures reference equality +- Critical for reference-counted objects + +### 3. Memory Safety +- C# wrappers implement `IDisposable` for deterministic cleanup +- Finalizers provide backup cleanup if `Dispose()` not called +- `OwnsHandle` flag determines disposal responsibility + +### 4. Exception Boundaries +- C++ exceptions cannot cross C API boundary +- C API functions never throw; use return values for errors +- C# layer performs validation and throws appropriate exceptions + +### 5. Minimal P/Invoke Overhead +- Direct handle passing (no marshaling when possible) +- Struct parameters passed by pointer +- Bulk operations to minimize transitions + +## Threading Model and Concurrency + +### TL;DR - Thread Safety Rules + +**⚠️ Skia is NOT thread-safe by default** + +| Object Type | Thread Safety | Can Share? | Notes | +|-------------|---------------|------------|-------| +| **Canvas** | ❌ Not thread-safe | No | Single-threaded drawing only | +| **Paint** | ❌ Not thread-safe | No | Each thread needs own instance | +| **Path** | ❌ Not thread-safe | No | Build paths on one thread | +| **Bitmap (mutable)** | ❌ Not thread-safe | No | Modifications single-threaded | +| **Image (immutable)** | ✅ Read-only safe | Yes | Once created, can share | +| **Shader** | ✅ Read-only safe | Yes | Immutable, can share | +| **Typeface** | ✅ Read-only safe | Yes | Immutable, can share | +| **Data** | ✅ Read-only safe | Yes | Immutable, can share | +| **Creation** | ✅ Usually safe | N/A | Creating objects on different threads OK | + +**Golden Rule:** Don't use the same SKCanvas/SKPaint/SKPath from multiple threads simultaneously. + +### Detailed Threading Behavior + +#### Mutable Objects (Not Thread-Safe) + +**Examples:** SKCanvas, SKPaint, SKPath, SKBitmap (when being modified) + +**Behavior:** +- Single-threaded use only +- No internal locking +- Race conditions if accessed from multiple threads +- Undefined behavior if concurrent access + +**Correct Pattern:** +```csharp +// ✅ GOOD: Each thread has its own canvas +void DrawOnThread1() +{ + using var surface1 = SKSurface.Create(info); + using var canvas1 = surface1.Canvas; + canvas1.DrawRect(...); // Thread 1 only +} + +void DrawOnThread2() +{ + using var surface2 = SKSurface.Create(info); + using var canvas2 = surface2.Canvas; + canvas2.DrawRect(...); // Thread 2 only +} +``` + +**Wrong Pattern:** +```csharp +// ❌ BAD: Sharing canvas between threads +SKCanvas sharedCanvas; + +void DrawOnThread1() +{ + sharedCanvas.DrawRect(...); // RACE CONDITION! +} + +void DrawOnThread2() +{ + sharedCanvas.DrawCircle(...); // RACE CONDITION! +} +``` + +#### Immutable Objects (Thread-Safe for Reading) + +**Examples:** SKImage, SKShader, SKTypeface, SKData, SKPicture + +**Behavior:** +- Read-only after creation +- Safe to share across threads +- Reference counting is thread-safe (atomic operations) +- Multiple threads can use the same instance concurrently + +**Pattern:** +```csharp +// ✅ GOOD: Share immutable image across threads +SKImage sharedImage = SKImage.FromEncodedData(data); + +void DrawOnThread1() +{ + using var surface = SKSurface.Create(info); + surface.Canvas.DrawImage(sharedImage, 0, 0); // Safe +} + +void DrawOnThread2() +{ + using var surface = SKSurface.Create(info); + surface.Canvas.DrawImage(sharedImage, 0, 0); // Safe (same image) +} +``` + +#### Object Creation (Usually Thread-Safe) + +Creating different objects on different threads is generally safe: + +```csharp +// ✅ GOOD: Create different objects on different threads +var task1 = Task.Run(() => +{ + using var paint1 = new SKPaint { Color = SKColors.Red }; + using var surface1 = SKSurface.Create(info); + // ... draw with paint1 and surface1 +}); + +var task2 = Task.Run(() => +{ + using var paint2 = new SKPaint { Color = SKColors.Blue }; + using var surface2 = SKSurface.Create(info); + // ... draw with paint2 and surface2 +}); + +await Task.WhenAll(task1, task2); // Safe - different objects +``` + +### Threading Visualization + +```mermaid +graph TB + subgraph Thread1["Thread 1"] + T1Canvas[SKCanvas 1] + T1Paint[SKPaint 1] + T1Path[SKPath 1] + end + + subgraph Thread2["Thread 2"] + T2Canvas[SKCanvas 2] + T2Paint[SKPaint 2] + T2Path[SKPath 2] + end + + subgraph Shared["Shared (Immutable)"] + Image[SKImage] + Shader[SKShader] + Typeface[SKTypeface] + end + + T1Canvas -->|Uses| Image + T2Canvas -->|Uses| Image + T1Paint -->|Uses| Shader + T2Paint -->|Uses| Shader + + style T1Canvas fill:#ffe1e1 + style T1Paint fill:#ffe1e1 + style T1Path fill:#ffe1e1 + style T2Canvas fill:#ffe1e1 + style T2Paint fill:#ffe1e1 + style T2Path fill:#ffe1e1 + style Image fill:#e1f5e1 + style Shader fill:#e1f5e1 + style Typeface fill:#e1f5e1 +``` + +**Legend:** +- 🔴 Red (mutable) = Thread-local only +- 🟢 Green (immutable) = Can be shared + +### C# Wrapper Thread Safety + +**HandleDictionary:** +- Backed by a `Dictionary` protected by a reader/writer lock (`IPlatformLock`) +- Uses `EnterReadLock` for lookups and `EnterUpgradeableReadLock` for add operations +- Prevents duplicate wrappers for the same native handle + +**Reference Counting:** +- `ref()` and `unref()` operations are thread-safe +- Uses atomic operations in native Skia +- Safe to dispose from different thread than creation + +**Disposal:** +- `Dispose()` can be called from any thread +- But object must not be in use on another thread +- Finalizer may run on GC thread + +### Common Threading Scenarios + +#### Scenario 1: Background Rendering + +```csharp +// ✅ GOOD: Render on background thread +var image = await Task.Run(() => +{ + var info = new SKImageInfo(width, height); + using var surface = SKSurface.Create(info); + using var canvas = surface.Canvas; + using var paint = new SKPaint(); + + // All objects local to this thread + canvas.Clear(SKColors.White); + canvas.DrawCircle(100, 100, 50, paint); + + return surface.Snapshot(); // Returns immutable SKImage +}); + +// Use image on UI thread +imageView.Image = image; +``` + +#### Scenario 2: Parallel Tile Rendering + +```csharp +// ✅ GOOD: Render tiles in parallel +var tiles = Enumerable.Range(0, tileCount).Select(i => + Task.Run(() => RenderTile(i)) +).ToArray(); + +await Task.WhenAll(tiles); + +SKImage RenderTile(int index) +{ + // Each task has its own objects + using var surface = SKSurface.Create(tileInfo); + using var canvas = surface.Canvas; + using var paint = new SKPaint(); + // ... render tile + return surface.Snapshot(); +} +``` + +#### Scenario 3: Shared Resources + +```csharp +// ✅ GOOD: Load shared resources once +class GraphicsCache +{ + private static readonly SKTypeface _font = SKTypeface.FromFile("font.ttf"); + private static readonly SKImage _logo = SKImage.FromEncodedData("logo.png"); + + // Multiple threads can use these immutable objects + public static void DrawWithSharedResources(SKCanvas canvas) + { + using var paint = new SKPaint { Typeface = _font }; + canvas.DrawText("Hello", 0, 0, paint); + canvas.DrawImage(_logo, 100, 100); + } +} +``` + +### Platform-Specific Threading Considerations + +#### UI Thread Affinity + +Some platforms require graphics operations on specific threads: + +**❌ Android/iOS:** Some surface operations may require UI thread +**✅ Offscreen rendering:** Usually safe on any thread +**✅ Image decoding:** Safe on background threads + +```csharp +// Example: Decode on background, display on UI +var bitmap = await Task.Run(() => +{ + // Decode on background thread + return SKBitmap.Decode("large-image.jpg"); +}); + +// Use on UI thread +await MainThread.InvokeOnMainThreadAsync(() => +{ + imageView.Bitmap = bitmap; +}); +``` + +### Debugging Threading Issues + +**Symptoms of threading bugs:** +- Crashes with no clear cause +- Corrupted rendering +- Access violations +- Intermittent failures + +**Tools to help:** +```csharp +// Add thread ID assertions in debug builds +#if DEBUG +private readonly int _creationThread = Thread.CurrentThread.ManagedThreadId; + +private void AssertCorrectThread() +{ + if (Thread.CurrentThread.ManagedThreadId != _creationThread) + throw new InvalidOperationException("Cross-thread access detected!"); +} +#endif +``` + +### Best Practices Summary + +1. **✅ DO:** Keep mutable objects (Canvas, Paint, Path) thread-local +2. **✅ DO:** Share immutable objects (Image, Shader, Typeface) freely +3. **✅ DO:** Create objects on background threads for offscreen rendering +4. **✅ DO:** Use thread-local storage or task-based parallelism +5. **❌ DON'T:** Share SKCanvas across threads +6. **❌ DON'T:** Modify SKPaint while another thread uses it +7. **❌ DON'T:** Assume automatic synchronization +8. **❌ DON'T:** Dispose objects still in use on other threads + +### SkiaSharp Threading Architecture + +**No automatic locking:** +- SkiaSharp wrappers don't add locks +- Performance-critical design +- Developer responsibility to ensure thread safety + +**Thread-safe components:** +- `HandleDictionary` serializes access with a reader/writer lock around a shared dictionary +- Reference counting uses atomic operations +- Disposal is thread-safe (but must not be in use) + +**Not thread-safe:** +- Individual wrapper objects (SKCanvas, SKPaint, etc.) +- Mutable operations +- State changes + +## Next Steps + +For more detailed information, see: +- [Memory Management](memory-management.md) - Pointer types, ownership, and lifecycle +- [Error Handling](error-handling.md) - How errors propagate through layers +- [Adding New APIs](adding-new-apis.md) - Step-by-step guide for contributors +- [Layer Mapping](layer-mapping.md) - Detailed layer-to-layer mappings diff --git a/design/error-handling.md b/design/error-handling.md new file mode 100644 index 0000000000..dc614c5529 --- /dev/null +++ b/design/error-handling.md @@ -0,0 +1,735 @@ +# Error Handling in SkiaSharp + +> **Quick Start:** For a practical tutorial, see [QUICKSTART.md](QUICKSTART.md) +> **Quick Reference:** For a 2-minute overview, see [AGENTS.md](../AGENTS.md) + +## TL;DR + +**Safety boundary highlights:** + +- **C++ Layer:** Native Skia code can throw; we do not try to surface those exceptions directly. +- **C API Layer:** Thin pass-through functions. They rarely guard inputs and never wrap calls in `try/catch`; they simply forward Skia's return values (void/bool/pointer). +- **C# Layer:** Performs targeted validation where it is required, but behaviour differs by API: constructors usually throw on failure, while many factory/utility methods return `null`, `false`, or default values instead of throwing. + +**C# error patterns you will see:** +1. **Null parameter guards** – most methods throw `ArgumentNullException` before calling into native code, e.g. `SKCanvas.DrawRect` checks `paint`. +2. **Constructor validation** – constructors check if native handle creation succeeded and throw `InvalidOperationException` if Handle is IntPtr.Zero. +3. **Return value propagation** – factory methods such as `SKImage.FromEncodedData` simply return `null` and expect the caller to inspect the result. +4. **Try methods** – methods like `SKBitmap.TryAllocPixels` return `false` on failure rather than throwing. + +**Key principle:** The managed layer is the safety boundary, but it mixes throwing and non-throwing patterns. Document both behaviours so callers know whether to check return values or catch exceptions. + +**Representative code in the repo today:** +```csharp +public void DrawRect(SKRect rect, SKPaint paint) +{ + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + + SkiaApi.sk_canvas_draw_rect(Handle, &rect, paint.Handle); +} + +public static SKImage FromEncodedData(SKData data) +{ + if (data == null) + throw new ArgumentNullException(nameof(data)); + + var handle = SkiaApi.sk_image_new_from_encoded(data.Handle); + return GetObject(handle); // Returns null when decode fails +} +``` + +```cpp +// C API forwards directly to Skia – no exception handling and minimal validation. +SK_C_API void sk_canvas_draw_rect(sk_canvas_t* canvas, const sk_rect_t* rect, const sk_paint_t* paint) { + AsCanvas(canvas)->drawRect(*AsRect(rect), *AsPaint(paint)); +} +``` + +--- + +## Introduction + +Error handling in SkiaSharp must navigate the complexities of crossing managed/unmanaged boundaries while maintaining safety and usability. This document explains how errors propagate through the three-layer architecture and the patterns used at each layer. + +## Core Challenge: Managed/Unmanaged Boundary + +The fundamental challenge in SkiaSharp error handling is preventing invalid operations from reaching native code, where they would cause crashes. + +### Safety Strategy: Validate in C# + +**SkiaSharp's approach:** +- **C# layer performs the critical validation** where the native API would crash or misbehave, but many high-volume helpers skip extra checks and simply propagate native return values. +- **C API is a minimal wrapper** - no exception handling, no broad input validation. +- **Performance optimization** - most validation happens once (in managed code) when it is needed. + +```csharp +// Representative guard: managed code blocks obvious misuse, but not every failure path throws. +public void DrawRect(SKRect rect, SKPaint paint) +{ + // Validation happens here + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + + SkiaApi.sk_canvas_draw_rect(Handle, &rect, paint.Handle); +} +``` + +```cpp +// C API trusts C# - no validation needed +SK_C_API void sk_canvas_draw_rect(sk_canvas_t* canvas, const sk_rect_t* rect, const sk_paint_t* paint) { + AsCanvas(canvas)->drawRect(*AsRect(rect), *AsPaint(paint)); +} +``` + +**Why this works:** +1. C# wrappers are the only supported entry point into the C API. +2. The code paths that *must* guard inputs (for example null pointers) do so before invoking native code. +3. Remaining failures are surfaced through native return values (`false`, `nullptr`, default structs) which managed callers can observe. +4. Keeping the C API thin avoids redundant checks and simplifies maintenance. + +## Error Handling Strategy by Layer + +```mermaid +graph TB + subgraph CSharp["C# Layer - Safety Boundary"] + CS1[Validate critical inputs] + CS2[Call P/Invoke] + CS3[Process native result] + CS4{Failure?} + CS5[Throw or propagate] + CS6[Return success value] + + CS1 --> CS2 + CS2 --> CS3 + CS3 --> CS4 + CS4 -->|Yes| CS5 + CS4 -->|No| CS6 + end + + subgraph CAPI["C API Layer - Minimal Wrapper"] + C1[Convert types] + C2[Call C++ method] + C3[Return result] + + C1 --> C2 + C2 --> C3 + end + + subgraph CPP["C++ Skia Layer"] + CPP1[Execute operation] + CPP2{Error?} + CPP3[Throw exception] + CPP4[Return result] + + CPP1 --> CPP2 + CPP2 -->|Yes| CPP3 + CPP2 -->|No| CPP4 + end + + CS3 -.->|P/Invoke| C1 + C2 -.->|Direct call| CPP1 + CPP3 -.->|Would propagate!| CS3 + C3 -.->|Result| CS4 + + style CSharp fill:#e1f5e1 + style CAPI fill:#fff4e1 + style CPP fill:#e1e8f5 + style CS1 fill:#90ee90 + style CS2 fill:#90ee90 + style CS6 fill:#ffe1e1 +``` + +**Layer characteristics:** + +``` +┌─────────────────────────────────────────────────┐ +│ C# Layer - SAFETY BOUNDARY │ +│ ✓ Guards inputs that would crash native code │ +│ ✓ Interprets native return values │ +│ ✓ Throws when APIs guarantee exceptions │ +│ → Defines managed-facing error semantics │ +└─────────────────┬───────────────────────────────┘ + │ +┌─────────────────▼───────────────────────────────┐ +│ C API Layer - MINIMAL WRAPPER │ +│ ✓ Converts opaque pointers to C++ types │ +│ ✓ Calls C++ methods directly │ +│ ✓ Returns results to C# │ +│ ✗ Does NOT validate parameters │ +│ ✗ Does NOT catch exceptions │ +│ → Trusts C# has validated everything │ +└─────────────────┬───────────────────────────────┘ + │ +┌─────────────────▼───────────────────────────────┐ +│ C++ Skia Layer │ +│ ✓ May throw C++ exceptions │ +│ ✓ Uses assertions for invalid states │ +│ ✓ Relies on RAII for cleanup │ +│ → Only receives valid inputs from C# via C API │ +└─────────────────────────────────────────────────┘ +``` + +## Layer 1: C# Error Handling + +The C# layer is responsible for: +1. **Proactive validation** before calling native code +2. **Interpreting error signals** from C API +3. **Throwing appropriate C# exceptions** + +### Pattern 1: Parameter Validation + +Validate parameters **before** P/Invoking to avoid undefined behavior in native code. + +```csharp +public class SKCanvas : SKObject +{ + public void DrawRect(SKRect rect, SKPaint paint) + { + // Validate parameters before calling native code + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + + // Check object state + if (Handle == IntPtr.Zero) + throw new ObjectDisposedException("SKCanvas"); + + // Call native - at this point parameters are valid + SkiaApi.sk_canvas_draw_rect(Handle, &rect, paint.Handle); + } +} +``` + +**Common validations:** +- Null checks for reference parameters (most common) +- Handle != IntPtr.Zero checks in constructors after native creation +- Range checks for numeric values (less common) +- Array bounds checks (where applicable) + +### Pattern 2: Factory Method Null Returns + +**Important:** Static factory methods return `null` on failure, they do NOT throw exceptions. + +```csharp +public class SKImage : SKObject, ISKReferenceCounted +{ + // Factory method returns null on failure + public static SKImage FromEncodedData(SKData data) + { + if (data == null) + throw new ArgumentNullException(nameof(data)); + + var handle = SkiaApi.sk_image_new_from_encoded(data.Handle); + return GetObject(handle); // Returns null if handle is IntPtr.Zero + } + + // ✅ CORRECT usage - always check for null + public static void Example() + { + var image = SKImage.FromEncodedData(data); + if (image == null) + throw new InvalidOperationException("Failed to decode image"); + + // Safe to use image + canvas.DrawImage(image, 0, 0); + } + + // Boolean return methods let caller decide + public bool ReadPixels(SKImageInfo dstInfo, IntPtr dstPixels, int dstRowBytes, int srcX, int srcY) + { + // Boolean return indicates success/failure + var success = SkiaApi.sk_image_read_pixels( + Handle, &dstInfo, dstPixels, dstRowBytes, srcX, srcY, + SKImageCachingHint.Allow); + + return success; // Caller can check and decide what to do + } +} +``` + +**Affected Methods:** All static factory methods follow this pattern: +- `SKImage.FromEncodedData()` - Returns null on decode failure +- `SKImage.FromBitmap()` - Returns null on failure +- `SKSurface.Create()` - Returns null on allocation failure +- `SKShader.CreateLinearGradient()` - Returns null on failure +- And many more... + +### Pattern 3: Constructor Failures + +Constructors must ensure valid object creation or throw. + +```csharp +public class SKBitmap : SKObject +{ + public SKBitmap(SKImageInfo info) + : base(IntPtr.Zero, true) + { + var nInfo = SKImageInfoNative.FromManaged(ref info); + Handle = SkiaApi.sk_bitmap_new(); + + if (Handle == IntPtr.Zero) + throw new InvalidOperationException("Failed to create bitmap"); + + // Try to allocate pixels + if (!SkiaApi.sk_bitmap_try_alloc_pixels(Handle, &nInfo)) + { + // Clean up partial object + SkiaApi.sk_bitmap_destructor(Handle); + Handle = IntPtr.Zero; + throw new InvalidOperationException("Failed to allocate bitmap pixels"); + } + } +} +``` + +### Pattern 4: Disposal Safety + +Ensure disposal methods never throw. + +```csharp +protected override void DisposeNative() +{ + try + { + if (this is ISKReferenceCounted refcnt) + refcnt.SafeUnRef(); + // Never throw from dispose + } + catch + { + // Swallow exceptions in dispose + // Logging could happen here if available + } +} +``` + +### Common C# Exception Types + +| Exception | When to Use | +|-----------|-------------| +| `ArgumentNullException` | Null parameter passed | +| `ArgumentOutOfRangeException` | Numeric value out of valid range | +| `ArgumentException` | Invalid argument value | +| `ObjectDisposedException` | Operation on disposed object | +| `InvalidOperationException` | Object in wrong state or operation failed | +| `NotSupportedException` | Operation not supported on this platform | + +## Layer 2: C API Implementation (Actual) + +The C API layer is a **minimal wrapper** that: +1. **Converts types** - Opaque pointers to C++ types +2. **Calls C++ methods** - Direct pass-through +3. **Returns results** - Back to C# + +**It does NOT:** +- ❌ Validate parameters (C# does this) +- ❌ Catch exceptions (Skia rarely throws; C# prevents invalid inputs) +- ❌ Check for null pointers (C# ensures valid pointers) + +### Actual Pattern: Direct Pass-Through + +Most C API functions are simple wrappers with no error handling: + +```cpp +// Void methods - direct call +SK_C_API void sk_canvas_draw_rect(sk_canvas_t* canvas, const sk_rect_t* rect, const sk_paint_t* paint) { + AsCanvas(canvas)->drawRect(*AsRect(rect), *AsPaint(paint)); +} + +SK_C_API void sk_canvas_clear(sk_canvas_t* canvas, sk_color_t color) { + AsCanvas(canvas)->clear(color); +} + +SK_C_API void sk_paint_set_color(sk_paint_t* paint, sk_color_t color) { + AsPaint(paint)->setColor(color); +} +``` + +### Pattern: Boolean Return (Native Result) + +Some C++ methods naturally return bool - C API passes it through: + +```cpp +// C++ method returns bool, C API passes it through +SK_C_API bool sk_bitmap_try_alloc_pixels(sk_bitmap_t* bitmap, const sk_imageinfo_t* info) { + return AsBitmap(bitmap)->tryAllocPixels(AsImageInfo(info)); +} + +SK_C_API bool sk_image_read_pixels(const sk_image_t* image, const sk_imageinfo_t* dstInfo, + void* dstPixels, size_t dstRowBytes, int srcX, int srcY) { + return AsImage(image)->readPixels(AsImageInfo(dstInfo), dstPixels, dstRowBytes, srcX, srcY); +} +``` + +**Note:** C# checks the returned `bool` and throws exceptions if needed. + +### Pattern: Null Return (Factory Methods) + +Factory methods return `nullptr` naturally if creation fails: + +```cpp +// Returns nullptr if Skia factory fails +SK_C_API sk_image_t* sk_image_new_from_encoded(const sk_data_t* data) { + return ToImage(SkImages::DeferredFromEncodedData(sk_ref_sp(AsData(data))).release()); +} + +SK_C_API sk_surface_t* sk_surface_new_raster(const sk_imageinfo_t* info) { + return ToSurface(SkSurfaces::Raster(AsImageInfo(info)).release()); +} + +SK_C_API sk_shader_t* sk_shader_new_linear_gradient(/*...*/) { + return ToShader(SkGradientShader::MakeLinear(/*...*/).release()); +} +``` + +**Note:** C# checks for `IntPtr.Zero` and throws `InvalidOperationException` if null. + +### Why No Exception Handling? + +**Design decision reasons:** +1. **Performance** - No overhead from try-catch blocks +2. **Simplicity** - Minimal code in C API layer +3. **Single responsibility** - C# owns all validation +4. **Skia rarely throws** - Most Skia functions don't throw exceptions +5. **Trust boundary** - C API trusts its only caller (C# wrapper) + +## Layer 3: C++ Skia Error Handling + +The C++ layer can use normal C++ error handling: +- Exceptions for exceptional cases +- Return values for expected failures +- Assertions for programming errors + +**Skia's approach:** +- Minimal exception usage (mostly for allocation failures) +- Return nullptr or false for failures +- Assertions (SK_ASSERT) for debug builds +- Graceful degradation when possible + +```cpp +// Skia C++ patterns +sk_sp SkImages::DeferredFromEncodedData(sk_sp data) { + if (!data) { + return nullptr; // Return null, don't throw + } + // ... create image or return nullptr on failure +} + +bool SkBitmap::tryAllocPixels(const SkImageInfo& info) { + // Returns false if allocation fails + return this->tryAllocPixelsInfo(info); +} +``` + +## Complete Error Flow Examples + +### Example 1: Drawing with Invalid Paint (Null Check) + +```csharp +// C# Layer - Validation +public void DrawRect(SKRect rect, SKPaint paint) +{ + if (paint == null) + throw new ArgumentNullException(nameof(paint)); // ✓ Caught here + + SkiaApi.sk_canvas_draw_rect(Handle, &rect, paint.Handle); +} + +// If validation was missing: +// P/Invoke would pass IntPtr.Zero +// ↓ +// C API Layer - Defensive Check +SK_C_API void sk_canvas_draw_rect(sk_canvas_t* canvas, const sk_rect_t* rect, const sk_paint_t* paint) { + if (!canvas || !rect || !paint) + return; // ✓ Silently ignore - prevent crash + + AsCanvas(canvas)->drawRect(*AsRect(rect), *AsPaint(paint)); +} +``` + +### Example 2: Image Creation Failure + +```csharp +// C# Layer +public static SKImage FromEncodedData(SKData data) +{ + if (data == null) + throw new ArgumentNullException(nameof(data)); // ✓ Validate input + + var handle = SkiaApi.sk_image_new_from_encoded(data.Handle); + + if (handle == IntPtr.Zero) + throw new InvalidOperationException("Failed to decode image"); // ✓ Check result + + return GetObject(handle); +} + +// C API Layer +SK_C_API sk_image_t* sk_image_new_from_encoded(const sk_data_t* data) { + try { + auto image = SkImages::DeferredFromEncodedData(sk_ref_sp(AsData(data))); + return ToImage(image.release()); // Returns nullptr if failed + } catch (...) { + return nullptr; // ✓ Catch exceptions, return null + } +} + +// C++ Layer +sk_sp SkImages::DeferredFromEncodedData(sk_sp data) { + if (!data) { + return nullptr; // ✓ Return null on invalid input + } + + auto codec = SkCodec::MakeFromData(data); + if (!codec) { + return nullptr; // ✓ Decoding failed, return null + } + + return SkImages::DeferredFromCodec(std::move(codec)); +} +``` + +### Example 3: Operation on Disposed Object + +```csharp +// C# Layer +public void DrawRect(SKRect rect, SKPaint paint) +{ + if (Handle == IntPtr.Zero) + throw new ObjectDisposedException("SKCanvas"); // ✓ Check state + + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + + if (paint.Handle == IntPtr.Zero) + throw new ObjectDisposedException("SKPaint"); // ✓ Check parameter state + + SkiaApi.sk_canvas_draw_rect(Handle, &rect, paint.Handle); +} +``` + +### Example 4: Pixel Allocation Failure + +```csharp +// C# Layer +public class SKBitmap : SKObject +{ + public SKBitmap(SKImageInfo info) + : base(IntPtr.Zero, true) + { + var nInfo = SKImageInfoNative.FromManaged(ref info); + Handle = SkiaApi.sk_bitmap_new(); + + if (Handle == IntPtr.Zero) + throw new InvalidOperationException("Failed to create bitmap"); // ✓ Check creation + + if (!SkiaApi.sk_bitmap_try_alloc_pixels(Handle, &nInfo)) + { + // ✓ Allocation failed - clean up and throw + SkiaApi.sk_bitmap_destructor(Handle); + Handle = IntPtr.Zero; + throw new InvalidOperationException( + $"Failed to allocate pixels for {info.Width}x{info.Height} bitmap"); + } + } +} + +// C API Layer - Pass through the bool from C++ +SK_C_API bool sk_bitmap_try_alloc_pixels(sk_bitmap_t* bitmap, const sk_imageinfo_t* info) { + return AsBitmap(bitmap)->tryAllocPixels(AsImageInfo(info)); +} + +// C++ Layer +bool SkBitmap::tryAllocPixels(const SkImageInfo& info) { + // Returns false if allocation fails (out of memory, invalid size, etc.) + if (!this->setInfo(info)) { + return false; + } + + auto allocator = SkBitmapAllocator::Make(info); + if (!allocator) { + return false; // ✓ Allocation failed + } + + fPixelRef = std::move(allocator); + return true; +} +``` + +**Note:** C++ method returns bool naturally, C API passes it through, C# checks it. + +## Error Handling Best Practices + +### For C# Layer + +✅ **DO:** +- Validate reference parameters (null checks) before P/Invoke +- Check Handle != IntPtr.Zero in **constructors** after native creation +- Inspect native return values and choose whether to propagate them or throw, matching existing patterns +- Throw appropriate exception types matching existing API patterns +- Use meaningful error messages when throwing +- Provide context in exception messages + +❌ **DON'T:** +- Skip null checks for reference parameters (C API won't check) +- Ignore return values from factory/try methods +- Throw from Dispose/finalizer +- Use generic exceptions without context +- Assume C API will validate anything + +**Actual code patterns:** + +```csharp +// Pattern 1: Validate reference parameters (most common) +public void DrawRect(SKRect rect, SKPaint paint) +{ + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + + SkiaApi.sk_canvas_draw_rect(Handle, &rect, paint.Handle); + // Note: Does NOT check if Handle is disposed - assumes valid object +} + +// Pattern 2: Check Handle in constructors +public SKPaint() + : this(SkiaApi.sk_compatpaint_new(), true) +{ + if (Handle == IntPtr.Zero) + throw new InvalidOperationException("Unable to create a new SKPaint instance."); +} + +// Pattern 3: Factory methods return null (don't throw) +public static SKImage FromEncodedData(SKData data) +{ + if (data == null) + throw new ArgumentNullException(nameof(data)); + + var handle = SkiaApi.sk_image_new_from_encoded(data.Handle); + return GetObject(handle); // Returns null if handle is IntPtr.Zero +} +``` + +**Note:** Most instance methods do NOT check if the object is disposed (Handle == IntPtr.Zero). They assume the object is valid if it exists. The primary validation is null-checking reference parameters. + +### For C API Layer + +✅ **DO:** +- Keep implementations simple and direct +- Pass through natural return values (bool, null) +- Trust that C# has validated everything +- Use `sk_ref_sp()` when passing ref-counted objects to C++ +- Call `.release()` on `sk_sp` when returning + +❌ **DON'T:** +- Add unnecessary validation (C# already did it) +- Add try-catch blocks unless truly needed +- Modify Skia return values +- Throw exceptions + +**Current implementation pattern:** +```cpp +// Simple, direct wrapper - trusts C# validation +SK_C_API void sk_canvas_draw_rect(sk_canvas_t* canvas, const sk_rect_t* rect, const sk_paint_t* paint) { + AsCanvas(canvas)->drawRect(*AsRect(rect), *AsPaint(paint)); +} + +// Pass through natural bool return +SK_C_API bool sk_bitmap_try_alloc_pixels(sk_bitmap_t* bitmap, const sk_imageinfo_t* info) { + return AsBitmap(bitmap)->tryAllocPixels(AsImageInfo(info)); +} + +// Factory returns nullptr naturally on failure +SK_C_API sk_image_t* sk_image_new_from_encoded(const sk_data_t* data) { + return ToImage(SkImages::DeferredFromEncodedData(sk_ref_sp(AsData(data))).release()); +} +``` + +### For Both Layers + +✅ **DO:** +- Fail fast with clear errors +- Provide useful error messages +- Clean up resources on failure +- Document error conditions +- Test error paths + +❌ **DON'T:** +- Silently ignore errors (unless documented) +- Leave objects in invalid state +- Leak resources on error paths + +## Debugging Failed Operations + +### When a C# call fails: + +1. **Check C# validation** - Did parameter validation catch it? +2. **Check return value** - Is C API returning error? +3. **Check C API implementation** - Is it catching exceptions? +4. **Check C++ behavior** - What does Skia return? +5. **Check documentation** - Is the operation supported? + +### Common Failure Scenarios + +| Symptom | Likely Cause | Solution | +|---------|--------------|----------| +| `ArgumentNullException` | Null parameter | Check calling code | +| `ObjectDisposedException` | Using disposed object | Check lifecycle | +| `InvalidOperationException` | C API returned error | Check C API return value | +| Crash in native code | Invalid parameter from C# | Add/fix C# validation | +| Silent failure | Error not propagated | Add return value checks | + +**Note:** If crashes occur in native code, it usually means C# validation is missing or incomplete. + +## Platform-Specific Error Handling + +Some operations may fail on specific platforms: + +```csharp +public static GRContext CreateGl() +{ + var handle = SkiaApi.gr_direct_context_make_gl(IntPtr.Zero); + + if (handle == IntPtr.Zero) + { + #if __IOS__ || __TVOS__ + throw new PlatformNotSupportedException("OpenGL not supported on iOS/tvOS"); + #else + throw new InvalidOperationException("Failed to create OpenGL context"); + #endif + } + + return GetObject(handle); +} +``` + +## Summary + +Error handling in SkiaSharp still relies on the managed layer as the safety boundary, but each layer has clearly defined responsibilities: + +1. **C# Layer (Safety Boundary)**: + - Guards reference parameters with null checks before calling native code + - Validates Handle creation in constructors (throws if Handle == IntPtr.Zero after native creation) + - Inspects native return values and translates them into either propagated results (`null`/`false`) or managed exceptions, depending on the API contract + - Establishes the public behavior (throwing vs. returning status) + +2. **C API Layer (Minimal Wrapper)**: + - Calls directly into the C++ API with almost no additional logic + - Avoids catching exceptions or duplicating validation + - Performs only the type conversions needed for P/Invoke + +3. **C++ Skia Layer**: + - Executes the actual work, optionally returning `nullptr`/`false` on failure + - Relies on upstream layers to pass valid arguments; assertions fire if they do not + +Key principles: +- **C# defines the managed contract** – check similar APIs to see whether they throw or return status +- **C API stays thin** – no redundant validation or exception handling +- **Prefer fail-fast guards** for inputs we know will crash native code +- **Propagate native status codes** when the existing API surface expects nullable/bool results +- **Provide clear exception messages** when throwing +- **Do not throw from Dispose/finalizers** – follow current suppression pattern + +## Next Steps + +- See [Memory Management](memory-management.md) for cleanup on error paths +- See [Adding New APIs](adding-new-apis.md) for implementing error handling in new bindings diff --git a/design/layer-mapping.md b/design/layer-mapping.md new file mode 100644 index 0000000000..65ceb78b58 --- /dev/null +++ b/design/layer-mapping.md @@ -0,0 +1,604 @@ +# Layer Mapping Reference + +> **Quick Start:** For a practical tutorial, see [QUICKSTART.md](QUICKSTART.md) +> **Quick Reference:** For a 2-minute overview, see [AGENTS.md](../AGENTS.md) + +## TL;DR + +**Naming conventions across layers:** + +- **C++:** `SkCanvas::drawRect(const SkRect& rect, const SkPaint& paint)` +- **C API:** `sk_canvas_draw_rect(sk_canvas_t* canvas, const sk_rect_t* rect, const sk_paint_t* paint)` +- **C#:** `SKCanvas.DrawRect(SKRect rect, SKPaint paint)` + +**Type mapping patterns:** +- C++ class → C opaque pointer → C# wrapper class +- `SkType` → `sk_type_t*` → `SKType` +- Value types map directly (int, float, bool, enums) + +**Function naming:** +- C++: Method names: `drawRect()`, `clear()` +- C API: `sk__`: `sk_canvas_draw_rect()`, `sk_canvas_clear()` +- C#: PascalCase methods: `DrawRect()`, `Clear()` + +See tables below for complete mappings of types, functions, and enums. + +--- + +## Introduction + +This document provides detailed mappings between the three layers of SkiaSharp, serving as a quick reference for understanding how types, functions, and patterns translate across layer boundaries. + +## Type Naming Conventions + +### C++ to C API Mapping + +| C++ Type | C API Type | Notes | +|----------|------------|-------| +| `SkCanvas` | `sk_canvas_t*` | Opaque pointer | +| `SkPaint` | `sk_paint_t*` | Opaque pointer | +| `SkImage` | `sk_image_t*` | Opaque pointer | +| `SkBitmap` | `sk_bitmap_t*` | Opaque pointer | +| `SkPath` | `sk_path_t*` | Opaque pointer | +| `SkRect` | `sk_rect_t` | Value type struct | +| `SkPoint` | `sk_point_t` | Value type struct | +| `SkColor` | `sk_color_t` | `uint32_t` typedef | +| `SkScalar` | `float` | Float primitive | +| `bool` | `bool` | Boolean primitive | + +**Pattern:** `SkType` → `sk_type_t*` (for classes) or `sk_type_t` (for structs) + +### C API to C# Mapping + +| C API Type | C# Type Alias | Actual C# Type | Notes | +|------------|---------------|----------------|-------| +| `sk_canvas_t*` | `sk_canvas_t` | `IntPtr` | Handle to native object | +| `sk_paint_t*` | `sk_paint_t` | `IntPtr` | Handle to native object | +| `sk_image_t*` | `sk_image_t` | `IntPtr` | Handle to native object | +| `sk_rect_t` | `SKRect` | `struct SKRect` | Marshaled value type | +| `sk_point_t` | `SKPoint` | `struct SKPoint` | Marshaled value type | +| `sk_color_t` | `SKColor` | `uint` | Primitive | +| `float` | `float` | `float` | Primitive | +| `bool` | `bool` | `bool` | Marshaled as I1 | + +**Pattern:** `sk_type_t*` → `IntPtr` handle → `SKType` C# wrapper class + +### Complete Three-Layer Mapping + +| Concept | C++ Layer | C API Layer | C# P/Invoke Layer | C# Wrapper Layer | +|---------|-----------|-------------|-------------------|------------------| +| **Canvas** | `SkCanvas*` | `sk_canvas_t*` | `sk_canvas_t` (IntPtr) | `SKCanvas` | +| **Paint** | `SkPaint*` | `sk_paint_t*` | `sk_paint_t` (IntPtr) | `SKPaint` | +| **Image** | `sk_sp` | `sk_image_t*` | `sk_image_t` (IntPtr) | `SKImage` | +| **Rectangle** | `SkRect` | `sk_rect_t` | `SKRect` | `SKRect` | +| **Point** | `SkPoint` | `sk_point_t` | `SKPoint` | `SKPoint` | +| **Color** | `SkColor` | `sk_color_t` | `uint` | `SKColor` (uint) | + +## Function Naming Conventions + +### Pattern: `sk__[_
]` + +**Examples:** + +| C++ Method | C API Function | C# Method | +|------------|----------------|-----------| +| `SkCanvas::drawRect()` | `sk_canvas_draw_rect()` | `SKCanvas.DrawRect()` | +| `SkPaint::getColor()` | `sk_paint_get_color()` | `SKPaint.Color` (get) | +| `SkPaint::setColor()` | `sk_paint_set_color()` | `SKPaint.Color` (set) | +| `SkImage::width()` | `sk_image_get_width()` | `SKImage.Width` | +| `SkCanvas::save()` | `sk_canvas_save()` | `SKCanvas.Save()` | + +**C# Naming Conventions:** +- Methods: PascalCase (`DrawRect`, not `drawRect`) +- Properties instead of get/set methods +- Parameters: camelCase +- Events: PascalCase with `Event` suffix (if applicable) + +## File Organization Mapping + +### Canvas Example + +| Layer | File Path | Contents | +|-------|-----------|----------| +| **C++ API** | `externals/skia/include/core/SkCanvas.h` | `class SkCanvas` declaration | +| **C++ Impl** | `externals/skia/src/core/SkCanvas.cpp` | `SkCanvas` implementation | +| **C API Header** | `externals/skia/include/c/sk_canvas.h` | `sk_canvas_*` function declarations | +| **C API Impl** | `externals/skia/src/c/sk_canvas.cpp` | `sk_canvas_*` function implementations | +| **C# P/Invoke** | `binding/SkiaSharp/SkiaApi.cs` or `SkiaApi.generated.cs` | `sk_canvas_*` P/Invoke declarations | +| **C# Wrapper** | `binding/SkiaSharp/SKCanvas.cs` | `SKCanvas` class implementation | + +### Type Conversion Helpers + +| Layer | Location | Purpose | +|-------|----------|---------| +| **C API** | `externals/skia/src/c/sk_types_priv.h` | Type conversion macros: `AsCanvas()`, `ToCanvas()` | +| **C#** | `binding/SkiaSharp/SKObject.cs` | Base class with handle management | +| **C#** | `binding/SkiaSharp/SkiaApi.cs` | Type aliases: `using sk_canvas_t = IntPtr;` | + +## Type Conversion Macros (C API Layer) + +### Macro Definitions + +```cpp +// In sk_types_priv.h + +#define DEF_CLASS_MAP(SkType, sk_type, Name) + // Generates: + // static inline const SkType* As##Name(const sk_type* t) + // static inline SkType* As##Name(sk_type* t) + // static inline const sk_type* To##Name(const SkType* t) + // static inline sk_type* To##Name(SkType* t) + +// Example: +DEF_CLASS_MAP(SkCanvas, sk_canvas_t, Canvas) +// Generates: AsCanvas(), ToCanvas() +``` + +### Common Conversion Macros + +| Macro | Purpose | Example | +|-------|---------|---------| +| `AsCanvas(sk_canvas_t*)` | Convert C type to C++ | `AsCanvas(ccanvas)` → `SkCanvas*` | +| `ToCanvas(SkCanvas*)` | Convert C++ type to C | `ToCanvas(canvas)` → `sk_canvas_t*` | +| `AsPaint(sk_paint_t*)` | Convert C type to C++ | `AsPaint(cpaint)` → `SkPaint*` | +| `ToPaint(SkPaint*)` | Convert C++ type to C | `ToPaint(paint)` → `sk_paint_t*` | +| `AsImage(sk_image_t*)` | Convert C type to C++ | `AsImage(cimage)` → `SkImage*` | +| `ToImage(SkImage*)` | Convert C++ type to C | `ToImage(image)` → `sk_image_t*` | +| `AsRect(sk_rect_t*)` | Convert C type to C++ | `AsRect(crect)` → `SkRect*` | +| `ToRect(SkRect*)` | Convert C++ type to C | `ToRect(rect)` → `sk_rect_t*` | + +**Full list of generated macros:** + +```cpp +// Pointer types +DEF_CLASS_MAP(SkCanvas, sk_canvas_t, Canvas) +DEF_CLASS_MAP(SkPaint, sk_paint_t, Paint) +DEF_CLASS_MAP(SkImage, sk_image_t, Image) +DEF_CLASS_MAP(SkBitmap, sk_bitmap_t, Bitmap) +DEF_CLASS_MAP(SkPath, sk_path_t, Path) +DEF_CLASS_MAP(SkShader, sk_shader_t, Shader) +DEF_CLASS_MAP(SkData, sk_data_t, Data) +DEF_CLASS_MAP(SkSurface, sk_surface_t, Surface) +// ... and many more + +// Value types +DEF_MAP(SkRect, sk_rect_t, Rect) +DEF_MAP(SkIRect, sk_irect_t, IRect) +DEF_MAP(SkPoint, sk_point_t, Point) +DEF_MAP(SkIPoint, sk_ipoint_t, IPoint) +DEF_MAP(SkColor4f, sk_color4f_t, Color4f) +// ... and many more +``` + +## Parameter Passing Patterns + +### By Value vs By Pointer/Reference + +| C++ Parameter | C API Parameter | C# Parameter | Notes | +|---------------|-----------------|--------------|-------| +| `int x` | `int x` | `int x` | Simple value | +| `bool flag` | `bool flag` | `[MarshalAs(UnmanagedType.I1)] bool flag` | Bool needs marshaling | +| `const SkRect& rect` | `const sk_rect_t* rect` | `sk_rect_t* rect` or `ref SKRect rect` | Struct by pointer | +| `const SkPaint& paint` | `const sk_paint_t* paint` | `sk_paint_t paint` (IntPtr) | Object handle | +| `SkRect* outRect` | `sk_rect_t* outRect` | `sk_rect_t* outRect` or `out SKRect outRect` | Output parameter | + +### Ownership Transfer Patterns + +| C++ Pattern | C API Pattern | C# Pattern | Ownership | +|-------------|---------------|------------|-----------| +| `const SkPaint&` | `const sk_paint_t*` | `SKPaint paint` | Borrowed (no transfer) | +| `new SkCanvas()` | `sk_canvas_t* sk_canvas_new()` | `new SKCanvas()` | Caller owns | +| `sk_sp` returns | `sk_image_t* sk_image_new()` | `SKImage.FromX()` | Caller owns (ref count = 1) | +| Takes `sk_sp` | `sk_data_t*` with `sk_ref_sp()` | `SKData data` | Shared (ref count++) | + +## Memory Management Patterns + +### Owned Objects (Delete on Dispose) + +| Layer | Pattern | Example | +|-------|---------|---------| +| **C++** | `new`/`delete` | `auto canvas = new SkCanvas(bitmap); delete canvas;` | +| **C API** | `_new()`/`_delete()` | `sk_canvas_t* c = sk_canvas_new(); sk_canvas_delete(c);` | +| **C#** | Constructor/`Dispose()` | `var c = new SKCanvas(bitmap); c.Dispose();` | + +**C# Implementation:** +```csharp +public class SKCanvas : SKObject +{ + public SKCanvas(SKBitmap bitmap) : base(IntPtr.Zero, true) + { + Handle = SkiaApi.sk_canvas_new_from_bitmap(bitmap.Handle); + } + + protected override void DisposeNative() + { + SkiaApi.sk_canvas_destroy(Handle); + } +} +``` + +### Reference-Counted Objects (Unref on Dispose) + +| Layer | Pattern | Example | +|-------|---------|---------| +| **C++** | `sk_sp` or `ref()`/`unref()` | `sk_sp img = ...; // auto unref` | +| **C API** | `_ref()`/`_unref()` | `sk_image_ref(img); sk_image_unref(img);` | +| **C#** | `ISKReferenceCounted` | `var img = SKImage.FromX(); img.Dispose();` | + +**C# Implementation:** +```csharp +public class SKImage : SKObject, ISKReferenceCounted +{ + public static SKImage FromBitmap(SKBitmap bitmap) + { + var handle = SkiaApi.sk_image_new_from_bitmap(bitmap.Handle); + return GetObject(handle); // Ref count = 1 + } + + // DisposeNative inherited from SKObject calls SafeUnRef() for ISKReferenceCounted +} +``` + +### Non-Owning References + +| Layer | Pattern | Example | +|-------|---------|---------| +| **C++** | Raw pointer from getter | `SkSurface* s = canvas->getSurface();` | +| **C API** | Pointer without ownership | `sk_surface_t* s = sk_canvas_get_surface(c);` | +| **C#** | `OwnsHandle = false` | `var s = canvas.Surface; // non-owning wrapper` | + +**C# Implementation:** +```csharp +public SKSurface Surface +{ + get { + var handle = SkiaApi.sk_canvas_get_surface(Handle); + return GetOrAddObject(handle, owns: false, (h, o) => new SKSurface(h, o)); + } +} +``` + +## Common API Patterns + +### Pattern 1: Simple Method Call + +```cpp +// C++ +void SkCanvas::clear(SkColor color); +``` + +```cpp +// C API +SK_C_API void sk_canvas_clear(sk_canvas_t* canvas, sk_color_t color); + +void sk_canvas_clear(sk_canvas_t* canvas, sk_color_t color) { + AsCanvas(canvas)->clear(color); +} +``` + +```csharp +// C# P/Invoke +[DllImport("libSkiaSharp")] +public static extern void sk_canvas_clear(sk_canvas_t canvas, uint color); + +// C# Wrapper +public void Clear(SKColor color) +{ + SkiaApi.sk_canvas_clear(Handle, (uint)color); +} +``` + +### Pattern 2: Property Get + +```cpp +// C++ +int SkImage::width() const; +``` + +```cpp +// C API +SK_C_API int sk_image_get_width(const sk_image_t* image); + +int sk_image_get_width(const sk_image_t* image) { + return AsImage(image)->width(); +} +``` + +```csharp +// C# P/Invoke +[DllImport("libSkiaSharp")] +public static extern int sk_image_get_width(sk_image_t image); + +// C# Wrapper +public int Width => SkiaApi.sk_image_get_width(Handle); +``` + +### Pattern 3: Property Set + +```cpp +// C++ +void SkPaint::setColor(SkColor color); +``` + +```cpp +// C API +SK_C_API void sk_paint_set_color(sk_paint_t* paint, sk_color_t color); + +void sk_paint_set_color(sk_paint_t* paint, sk_color_t color) { + AsPaint(paint)->setColor(color); +} +``` + +```csharp +// C# P/Invoke +[DllImport("libSkiaSharp")] +public static extern void sk_paint_set_color(sk_paint_t paint, uint color); + +// C# Wrapper +public SKColor Color +{ + get => (SKColor)SkiaApi.sk_paint_get_color(Handle); + set => SkiaApi.sk_paint_set_color(Handle, (uint)value); +} +``` + +### Pattern 4: Factory Method (Owned) + +```cpp +// C++ +SkCanvas* SkCanvas::MakeRasterDirect(const SkImageInfo& info, void* pixels, size_t rowBytes); +``` + +```cpp +// C API +SK_C_API sk_canvas_t* sk_canvas_new_from_raster( + const sk_imageinfo_t* info, void* pixels, size_t rowBytes); + +sk_canvas_t* sk_canvas_new_from_raster( + const sk_imageinfo_t* info, void* pixels, size_t rowBytes) +{ + return ToCanvas(SkCanvas::MakeRasterDirect(AsImageInfo(info), pixels, rowBytes).release()); +} +``` + +```csharp +// C# P/Invoke +[DllImport("libSkiaSharp")] +public static extern sk_canvas_t sk_canvas_new_from_raster( + sk_imageinfo_t* info, IntPtr pixels, IntPtr rowBytes); + +// C# Wrapper +public static SKCanvas Create(SKImageInfo info, IntPtr pixels, int rowBytes) +{ + var nInfo = SKImageInfoNative.FromManaged(ref info); + var handle = SkiaApi.sk_canvas_new_from_raster(&nInfo, pixels, (IntPtr)rowBytes); + if (handle == IntPtr.Zero) + throw new InvalidOperationException("Failed to create canvas"); + return new SKCanvas(handle, true); +} +``` + +### Pattern 5: Factory Method (Reference-Counted) + +```cpp +// C++ +sk_sp SkImages::RasterFromBitmap(const SkBitmap& bitmap); +``` + +```cpp +// C API +SK_C_API sk_image_t* sk_image_new_from_bitmap(const sk_bitmap_t* bitmap); + +sk_image_t* sk_image_new_from_bitmap(const sk_bitmap_t* bitmap) { + return ToImage(SkImages::RasterFromBitmap(*AsBitmap(bitmap)).release()); +} +``` + +```csharp +// C# P/Invoke +[DllImport("libSkiaSharp")] +public static extern sk_image_t sk_image_new_from_bitmap(sk_bitmap_t bitmap); + +// C# Wrapper +public static SKImage FromBitmap(SKBitmap bitmap) +{ + if (bitmap == null) + throw new ArgumentNullException(nameof(bitmap)); + + var handle = SkiaApi.sk_image_new_from_bitmap(bitmap.Handle); + if (handle == IntPtr.Zero) + throw new InvalidOperationException("Failed to create image"); + + return GetObject(handle); // ISKReferenceCounted, ref count = 1 +} +``` + +### Pattern 6: Method with Struct Parameter + +```cpp +// C++ +void SkCanvas::drawRect(const SkRect& rect, const SkPaint& paint); +``` + +```cpp +// C API +SK_C_API void sk_canvas_draw_rect( + sk_canvas_t* canvas, const sk_rect_t* rect, const sk_paint_t* paint); + +void sk_canvas_draw_rect(sk_canvas_t* canvas, const sk_rect_t* rect, const sk_paint_t* paint) { + AsCanvas(canvas)->drawRect(*AsRect(rect), *AsPaint(paint)); +} +``` + +```csharp +// C# P/Invoke +[DllImport("libSkiaSharp")] +public static extern void sk_canvas_draw_rect( + sk_canvas_t canvas, sk_rect_t* rect, sk_paint_t paint); + +// C# Wrapper +public unsafe void DrawRect(SKRect rect, SKPaint paint) +{ + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + + SkiaApi.sk_canvas_draw_rect(Handle, &rect, paint.Handle); +} +``` + +### Pattern 7: Output Parameter + +```cpp +// C++ +bool SkCanvas::getLocalClipBounds(SkRect* bounds) const; +``` + +```cpp +// C API +SK_C_API bool sk_canvas_get_local_clip_bounds(sk_canvas_t* canvas, sk_rect_t* bounds); + +bool sk_canvas_get_local_clip_bounds(sk_canvas_t* canvas, sk_rect_t* bounds) { + return AsCanvas(canvas)->getLocalClipBounds(AsRect(bounds)); +} +``` + +```csharp +// C# P/Invoke +[DllImport("libSkiaSharp")] +[return: MarshalAs(UnmanagedType.I1)] +public static extern bool sk_canvas_get_local_clip_bounds( + sk_canvas_t canvas, sk_rect_t* bounds); + +// C# Wrapper +public unsafe bool TryGetLocalClipBounds(out SKRect bounds) +{ + fixed (SKRect* b = &bounds) + { + return SkiaApi.sk_canvas_get_local_clip_bounds(Handle, b); + } +} + +public SKRect LocalClipBounds +{ + get { + TryGetLocalClipBounds(out var bounds); + return bounds; + } +} +``` + +## Enum Mapping + +Enums typically map 1:1 across all layers: + +| C++ Enum | C API Enum | C# Enum | +|----------|------------|---------| +| `SkCanvas::PointMode` | `sk_point_mode_t` | `SKPointMode` | +| `SkBlendMode` | `sk_blendmode_t` | `SKBlendMode` | +| `SkColorType` | `sk_colortype_t` | `SKColorType` | + +```cpp +// C++ +enum class SkBlendMode { + kClear, + kSrc, + kDst, + // ... +}; +``` + +```cpp +// C API +typedef enum { + SK_BLENDMODE_CLEAR = 0, + SK_BLENDMODE_SRC = 1, + SK_BLENDMODE_DST = 2, + // ... +} sk_blendmode_t; +``` + +```csharp +// C# +public enum SKBlendMode +{ + Clear = 0, + Src = 1, + Dst = 2, + // ... +} +``` + +**Cast pattern in C API:** +```cpp +void sk_canvas_draw_color(sk_canvas_t* canvas, sk_color_t color, sk_blendmode_t mode) { + AsCanvas(canvas)->drawColor(color, (SkBlendMode)mode); +} +``` + +## Struct Mapping + +Value structs also map across layers: + +```cpp +// C++ +struct SkRect { + float fLeft, fTop, fRight, fBottom; +}; +``` + +```cpp +// C API +typedef struct { + float left, top, right, bottom; +} sk_rect_t; +``` + +```csharp +// C# +[StructLayout(LayoutKind.Sequential)] +public struct SKRect +{ + public float Left; + public float Top; + public float Right; + public float Bottom; + + // Plus constructors, properties, methods +} +``` + +## Quick Reference: Type Categories + +### Pointer Types (Objects) + +| Category | C++ | C API | C# | Examples | +|----------|-----|-------|-----|----------| +| **Owned** | Class with new/delete | `_new()/_delete()` | `SKObject`, owns handle | SKCanvas, SKPaint, SKPath | +| **Ref-Counted** | `sk_sp`, `SkRefCnt` | `_ref()/_unref()` | `ISKReferenceCounted` | SKImage, SKShader, SKData | +| **Non-Owning** | Raw pointer | Pointer | `OwnsHandle=false` | Canvas.Surface getter | + +### Value Types + +| Category | C++ | C API | C# | Examples | +|----------|-----|-------|-----|----------| +| **Struct** | `struct` | `typedef struct` | `[StructLayout] struct` | SKRect, SKPoint, SKMatrix | +| **Primitive** | `int`, `float`, `bool` | `int`, `float`, `bool` | `int`, `float`, `bool` | Coordinates, sizes | +| **Enum** | `enum class` | `typedef enum` | `enum` | SKBlendMode, SKColorType | +| **Color** | `SkColor` (uint32_t) | `sk_color_t` (uint32_t) | `SKColor` (uint) | Color values | + +## Summary + +This layer mapping reference provides a quick lookup for: +- Type naming conventions across layers +- Function naming patterns +- File organization +- Type conversion macros +- Parameter passing patterns +- Memory management patterns +- Common API patterns + +For deeper understanding: +- [Architecture Overview](architecture-overview.md) - High-level architecture +- [Memory Management](memory-management.md) - Pointer types and ownership +- [Error Handling](error-handling.md) - Error propagation patterns +- [Adding New APIs](adding-new-apis.md) - Step-by-step guide diff --git a/design/memory-management.md b/design/memory-management.md new file mode 100644 index 0000000000..e0c44a38d5 --- /dev/null +++ b/design/memory-management.md @@ -0,0 +1,898 @@ +# Memory Management in SkiaSharp + +> **Quick Start:** For a practical tutorial, see [QUICKSTART.md](QUICKSTART.md) +> **Quick Reference:** For a 2-minute overview, see [AGENTS.md](../AGENTS.md) + +## TL;DR + +**Three pointer types determine memory management:** + +1. **Raw Pointers (Non-Owning)** - Borrowed references, no cleanup + - C++: `const SkType&` parameters, getter returns + - C#: `owns: false` in constructor + - Example: Paint parameter in `DrawRect(rect, paint)` + +2. **Owned Pointers (Unique)** - One owner, explicit delete + - C++: Mutable objects like Canvas, Paint, Bitmap + - C API: `sk_type_new()` / `sk_type_delete()` pairs + - C#: `DisposeNative()` calls delete/destroy + +3. **Reference-Counted Pointers (Shared)** - Two variants: + - **Virtual** (`SkRefCnt`): Image, Shader, Surface → 8-16 byte overhead + - **Non-Virtual** (`SkNVRefCnt`): Data, TextBlob → 4 byte overhead + - Both use `sk_sp` and ref/unref pattern + - C#: `ISKReferenceCounted` or `ISKNonVirtualReferenceCounted` + +**How to identify:** Check C++ class inheritance (`SkRefCnt`, `SkNVRefCnt`, or mutable type) + +**Critical:** Getting pointer type wrong → memory leaks or crashes + +--- + +## Introduction + +Understanding memory management is critical when working with SkiaSharp because it bridges managed C# code with unmanaged native code. This document explains the different pointer types used in Skia, how they map through the three layers, and how to properly manage object lifecycles. + +## Overview: Three Pointer Type Categories + +Skia uses three fundamental categories of pointer types for memory management: + +1. **Raw Pointers** - Non-owning references, caller manages lifetime +2. **Owned Pointers** - Unique ownership, owner responsible for deletion +3. **Reference-Counted Pointers** - Shared ownership via reference counting + +Understanding which category an API uses is essential for creating correct bindings. + +## Memory Lifecycle Visualizations + +### Lifecycle: Owned Pointer (Unique Ownership) + +```mermaid +sequenceDiagram + participant CS as C# Code + participant Wrapper as SKPaint Wrapper + participant PInvoke as P/Invoke + participant CAPI as C API + participant Native as Native SkPaint + + Note over CS,Native: Creation Phase + CS->>Wrapper: new SKPaint() + Wrapper->>PInvoke: sk_paint_new() + PInvoke->>CAPI: sk_paint_new() + CAPI->>Native: new SkPaint() + Native-->>CAPI: SkPaint* ptr + CAPI-->>PInvoke: sk_paint_t* handle + PInvoke-->>Wrapper: IntPtr handle + Wrapper-->>CS: SKPaint instance + Note over Wrapper: OwnsHandle = true + + Note over CS,Native: Usage Phase + CS->>Wrapper: SetColor(red) + Wrapper->>PInvoke: sk_paint_set_color(handle, red) + PInvoke->>CAPI: sk_paint_set_color(paint, red) + CAPI->>Native: paint->setColor(red) + + Note over CS,Native: Disposal Phase + CS->>Wrapper: Dispose() or GC + Wrapper->>PInvoke: sk_paint_delete(handle) + PInvoke->>CAPI: sk_paint_delete(paint) + CAPI->>Native: delete paint + Note over Native: Memory freed +``` + +**Key Points:** +- Single owner (C# wrapper) +- Explicit disposal required +- No reference counting +- Deterministic cleanup with `using` statement + +### Lifecycle: Reference-Counted Pointer (Shared Ownership) + +```mermaid +sequenceDiagram + participant CS1 as C# Object 1 + participant CS2 as C# Object 2 + participant Wrapper1 as SKImage Wrapper 1 + participant Wrapper2 as SKImage Wrapper 2 + participant PInvoke as P/Invoke + participant CAPI as C API + participant Native as Native SkImage + + Note over Native: RefCount = 1 + + Note over CS1,Native: First Reference + CS1->>Wrapper1: Create from native + Wrapper1->>PInvoke: sk_image_ref(handle) + PInvoke->>CAPI: sk_image_ref(image) + CAPI->>Native: image->ref() + Note over Native: RefCount = 2 + + Note over CS2,Native: Second Reference (Share) + CS1->>CS2: Pass image reference + CS2->>Wrapper2: Create from same handle + Wrapper2->>PInvoke: sk_image_ref(handle) + PInvoke->>CAPI: sk_image_ref(image) + CAPI->>Native: image->ref() + Note over Native: RefCount = 3 + + Note over CS1,Native: First Dispose + CS1->>Wrapper1: Dispose() + Wrapper1->>PInvoke: sk_image_unref(handle) + PInvoke->>CAPI: sk_image_unref(image) + CAPI->>Native: image->unref() + Note over Native: RefCount = 2
(Still alive) + + Note over CS2,Native: Second Dispose + CS2->>Wrapper2: Dispose() + Wrapper2->>PInvoke: sk_image_unref(handle) + PInvoke->>CAPI: sk_image_unref(image) + CAPI->>Native: image->unref() + Note over Native: RefCount = 1
(Original owner) + + Note over Native: Original unref()
RefCount = 0
Memory freed +``` + +**Key Points:** +- Multiple owners allowed +- Thread-safe reference counting +- Automatic cleanup when last reference dropped +- Each C# wrapper increments ref count + +### Lifecycle: Raw Pointer (Borrowed Reference) + +```mermaid +sequenceDiagram + participant CS as C# Code + participant Canvas as SKCanvas + participant Surface as SKSurface + participant PInvoke as P/Invoke + participant CAPI as C API + participant Native as Native Objects + + Note over CS,Native: Canvas owns Surface + CS->>Canvas: canvas.Surface + Canvas->>PInvoke: sk_canvas_get_surface(handle) + PInvoke->>CAPI: sk_canvas_get_surface(canvas) + CAPI->>Native: canvas->getSurface() + Native-->>CAPI: SkSurface* (non-owning) + CAPI-->>PInvoke: sk_surface_t* handle + PInvoke-->>Canvas: IntPtr handle + Canvas->>Surface: new SKSurface(handle, owns: false) + Note over Surface: OwnsHandle = false + Surface-->>CS: SKSurface instance + + Note over CS,Native: Use the borrowed reference + CS->>Surface: Use surface methods + + Note over CS,Native: Dispose wrapper (NOT native) + CS->>Surface: Dispose() + Note over Surface: Only wrapper disposed
Native object NOT freed
(Canvas still owns it) + + Note over CS,Native: Canvas disposal frees surface + CS->>Canvas: Dispose() + Canvas->>PInvoke: sk_canvas_destroy(handle) + Note over Native: Canvas AND Surface freed +``` + +**Key Points:** +- No ownership transfer +- Parent object owns the native resource +- C# wrapper is just a view +- Disposing wrapper doesn't free native memory + +## Pointer Type 1: Raw Pointers (Non-Owning) + +### Native C++ Layer + +**Identifier:** `SkType*` (raw pointer) + +**Characteristics:** +- Non-owning reference to an object +- Temporary access only +- Caller or another object owns the lifetime +- Never deleted by the receiver +- Common for parameters and temporary references + +**Example C++ APIs:** +```cpp +void SkCanvas::drawPaint(const SkPaint& paint); // Reference (equivalent to const SkPaint*) +SkSurface* SkCanvas::getSurface() const; // Raw pointer (canvas owns surface) +``` + +### C API Layer + +**C Type:** `sk_type_t*` (opaque pointer) + +**Characteristics:** +- Passed as-is without ownership transfer +- No ref/unref calls needed +- No destroy/delete function called on borrowed pointers + +**Example C API:** +```cpp +// Canvas doesn't own the paint, just uses it temporarily +SK_C_API void sk_canvas_draw_paint(sk_canvas_t* canvas, const sk_paint_t* paint); + +// Canvas owns the surface, returns non-owning pointer +SK_C_API sk_surface_t* sk_get_surface(sk_canvas_t* canvas); +``` + +### C# Wrapper Layer + +**C# Pattern:** `IntPtr` handle, `OwnsHandle = false` + +**Characteristics:** +- Wrapper created with `owns: false` parameter +- No disposal of native resource +- Wrapper lifecycle independent of native object +- Often registered in parent object's `OwnedObjects` collection + +**Example C# API:** +```csharp +public class SKCanvas : SKObject +{ + // Paint is borrowed, not owned by this method + public void DrawPaint(SKPaint paint) + { + if (paint == null) + throw new ArgumentNullException(nameof(paint)); + SkiaApi.sk_canvas_draw_paint(Handle, paint.Handle); + // Note: paint is NOT disposed here + } + + // Surface is owned by canvas, return non-owning wrapper + public SKSurface Surface + { + get { + var handle = SkiaApi.sk_get_surface(Handle); + // Create wrapper that doesn't own the handle + return SKObject.GetOrAddObject(handle, owns: false, + (h, o) => new SKSurface(h, o)); + } + } +} +``` + +**When to use:** +- Parameters that are only used during the function call +- Return values where the caller doesn't gain ownership +- Child objects owned by parent objects + +## Pointer Type 2: Owned Pointers (Unique Ownership) + +### Native C++ Layer + +**Identifiers:** +- `new SkType()` - Raw allocation, caller must delete +- `std::unique_ptr` - Unique ownership (rare in Skia) +- Most mutable Skia objects (SkCanvas, SkPaint, SkPath) + +**Characteristics:** +- One owner at a time +- Owner responsible for calling destructor +- RAII: destructor called automatically in C++ +- Ownership can transfer but not shared +- No reference counting overhead + +**Example C++ APIs:** +```cpp +SkCanvas* canvas = new SkCanvas(bitmap); // Caller owns, must delete +delete canvas; // Explicit cleanup + +SkPaint paint; // Stack allocation, auto-destroyed +``` + +### C API Layer + +**C Type:** `sk_type_t*` with `create`/`new` and `destroy`/`delete` functions + +**Characteristics:** +- Constructor functions: `sk_type_new_*` or `sk_type_create_*` +- Destructor functions: `sk_type_destroy` or `sk_type_delete` +- Caller must explicitly destroy what they create +- No ref/unref functions + +**Example C API:** +```cpp +// Owned pointer - create and destroy functions +SK_C_API sk_paint_t* sk_paint_new(void); +SK_C_API void sk_paint_delete(sk_paint_t* paint); + +SK_C_API sk_canvas_t* sk_canvas_new_from_bitmap(const sk_bitmap_t* bitmap); +SK_C_API void sk_canvas_destroy(sk_canvas_t* canvas); +``` + +**Implementation pattern:** +```cpp +// Creation allocates with new +sk_paint_t* sk_paint_new(void) { + return ToPaint(new SkPaint()); +} + +// Destruction uses delete +void sk_paint_delete(sk_paint_t* paint) { + delete AsPaint(paint); +} +``` + +### C# Wrapper Layer + +**C# Pattern:** `SKObject` with `OwnsHandle = true` and `DisposeNative()` override + +**Characteristics:** +- Created with `owns: true` parameter (default) +- Calls destroy/delete function in `DisposeNative()` +- NOT reference counted +- Implements `IDisposable` for deterministic cleanup + +**Example C# API:** +```csharp +public class SKPaint : SKObject, ISKSkipObjectRegistration +{ + public SKPaint() + : base(IntPtr.Zero, true) + { + Handle = SkiaApi.sk_paint_new(); + } + + protected override void DisposeNative() + { + SkiaApi.sk_paint_delete(Handle); + } +} + +public class SKCanvas : SKObject +{ + public SKCanvas(SKBitmap bitmap) + : base(IntPtr.Zero, true) + { + if (bitmap == null) + throw new ArgumentNullException(nameof(bitmap)); + Handle = SkiaApi.sk_canvas_new_from_bitmap(bitmap.Handle); + } + + protected override void DisposeNative() + { + SkiaApi.sk_canvas_destroy(Handle); + } +} +``` + +**Ownership transfer example:** +```csharp +// When canvas takes ownership of a drawable +public void DrawDrawable(SKDrawable drawable) +{ + // Canvas takes ownership, C# wrapper releases it + drawable.RevokeOwnership(this); + SkiaApi.sk_canvas_draw_drawable(Handle, drawable.Handle, ...); +} +``` + +**When to use:** +- Objects that are uniquely owned +- Mutable objects like SKCanvas, SKPaint, SKPath, SKBitmap +- Objects allocated by user with deterministic lifetime + +**Common types using owned pointers:** +- `SKCanvas` - Drawing surface +- `SKPaint` - Drawing attributes +- `SKPath` - Vector paths +- `SKBitmap` - Mutable bitmaps +- `SKRegion` - Clipping regions + +## Pointer Type 3: Reference-Counted Pointers (Shared Ownership) + +Reference-counted objects in Skia come in **two variants**: virtual (`SkRefCnt`) and non-virtual (`SkNVRefCnt`). Both use the same ref/unref pattern, but differ in size and virtual table overhead. + +### Variant A: Virtual Reference Counting (`SkRefCnt`) + +**Identifiers:** +- Inherits from `SkRefCnt` or `SkRefCntBase` +- Has virtual destructor (8-16 bytes overhead on most platforms) +- Used for polymorphic types that need virtual functions + +**Characteristics:** +- Shared ownership via reference counting +- Thread-safe reference counting (atomic operations) +- Object deleted when ref count reaches zero +- Used with `sk_sp` smart pointer +- Supports inheritance and virtual functions + +**Example C++ APIs:** +```cpp +// Virtual ref-counted base class +class SkImage : public SkRefCnt { + virtual ~SkImage() { } + // Virtual functions allowed +}; + +// Factory returns sk_sp (smart pointer) +sk_sp SkImages::DeferredFromEncodedData(sk_sp data); + +// Manual reference counting (rare, use sk_sp instead) +void ref() const; // Increment reference count +void unref() const; // Decrement, delete if zero +``` + +**Common types using SkRefCnt:** +- `SKImage` - Immutable images +- `SKShader` - Shader effects +- `SKColorFilter` - Color transformations +- `SKImageFilter` - Image effects +- `SKTypeface` - Font faces +- `SKSurface` - Drawing surfaces +- `SKPicture` - Recorded drawing commands + +### Variant B: Non-Virtual Reference Counting (`SkNVRefCnt`) + +**Identifiers:** +- Inherits from `SkNVRefCnt` (template) +- No virtual destructor (4 bytes overhead instead of 8-16) +- Used for final types that don't need virtual functions + +**Characteristics:** +- Same ref/unref semantics as `SkRefCnt` +- Thread-safe atomic reference counting +- Lighter weight (no vtable) +- Cannot be inherited from +- Used with `sk_sp` smart pointer (same as SkRefCnt) + +**Example C++ APIs:** +```cpp +// Non-virtual ref-counted (lighter weight) +class SK_API SkData final : public SkNVRefCnt { + // No virtual destructor needed + // Cannot be inherited from (final) +}; + +class SK_API SkTextBlob final : public SkNVRefCnt { ... }; +class SK_API SkVertices : public SkNVRefCnt { ... }; +class SkColorSpace : public SkNVRefCnt { ... }; +``` + +**Common types using SkNVRefCnt:** +- `SKData` - Immutable byte arrays +- `SKTextBlob` - Positioned text +- `SKVertices` - Vertex data for meshes +- `SKColorSpace` - Color space definitions + +**Why two variants exist:** +- `SkRefCnt`: Use when inheritance or virtual functions needed (most types) +- `SkNVRefCnt`: Use when performance matters and no virtuals needed (saves 4-12 bytes per object) + +### Smart Pointer Behavior (Both Variants) + +Both `SkRefCnt` and `SkNVRefCnt` work identically with `sk_sp`: + +```cpp +sk_sp image1 = SkImages::RasterFromBitmap(bitmap); // ref count = 1 +sk_sp image2 = image1; // ref() called, ref count = 2 +image1.reset(); // unref() called, ref count = 1 +image2.reset(); // unref() called, ref count = 0, object deleted +``` + +### C API Layer + +**C Type:** `sk_type_t*` with `ref` and `unref` functions + +**Characteristics:** +- Explicit ref/unref functions exposed +- Factory functions return objects with ref count = 1 +- Caller responsible for calling unref when done +- `sk_ref_sp()` helper increments ref count when passing to C++ + +**Example C API:** +```cpp +// Reference counting functions +SK_C_API void sk_image_ref(const sk_image_t* image); +SK_C_API void sk_image_unref(const sk_image_t* image); + +// Factory returns ref count = 1 (caller owns reference) +SK_C_API sk_image_t* sk_image_new_raster_copy( + const sk_imageinfo_t* info, + const void* pixels, + size_t rowBytes); +``` + +**Implementation pattern:** +```cpp +void sk_image_ref(const sk_image_t* cimage) { + AsImage(cimage)->ref(); +} + +void sk_image_unref(const sk_image_t* cimage) { + SkSafeUnref(AsImage(cimage)); // unref, handles null +} + +sk_image_t* sk_image_new_raster_copy(...) { + // SkImages::RasterFromPixmapCopy returns sk_sp + // .release() transfers ownership (doesn't unref) + return ToImage(SkImages::RasterFromPixmapCopy(...).release()); +} +``` + +**Important:** When passing ref-counted objects FROM C# TO C API: +```cpp +// If C++ expects sk_sp, must increment ref count +sk_image_t* sk_image_new_raster_data(..., sk_data_t* pixels, ...) { + // sk_ref_sp creates sk_sp and increments ref count + return ToImage(SkImages::RasterFromData(..., sk_ref_sp(AsData(pixels)), ...).release()); +} +``` + +### C# Wrapper Layer + +**C# Pattern:** Two interfaces for two ref-counting variants + +SkiaSharp distinguishes between the two C++ ref-counting variants: + +1. **`ISKReferenceCounted`** - For types inheriting from `SkRefCnt` (virtual) +2. **`ISKNonVirtualReferenceCounted`** - For types inheriting from `SkNVRefCnt` (non-virtual) + +**Characteristics:** +- Both interfaces trigger ref-counting disposal instead of delete +- `DisposeNative()` calls appropriate `unref` function +- Reference counting managed automatically +- Global handle dictionary ensures single wrapper per object +- Can be safely shared across multiple C# references + +**Virtual Ref-Counted Example (ISKReferenceCounted):** +```csharp +// For types inheriting from SkRefCnt (has vtable) +public class SKImage : SKObject, ISKReferenceCounted +{ + internal SKImage(IntPtr handle, bool owns) + : base(handle, owns) + { + } + + // Factory method returns owned image (ref count = 1) + public static SKImage FromPixelCopy(SKImageInfo info, IntPtr pixels, int rowBytes) + { + var nInfo = SKImageInfoNative.FromManaged(ref info); + // C API returns ref count = 1, we own it + return GetObject(SkiaApi.sk_image_new_raster_copy(&nInfo, (void*)pixels, rowBytes)); + } + + // No explicit DisposeNative override needed + // Base SKObject.DisposeNative calls SafeUnRef for ISKReferenceCounted +} +``` + +**Non-Virtual Ref-Counted Example (ISKNonVirtualReferenceCounted):** +```csharp +// For types inheriting from SkNVRefCnt (no vtable, lighter weight) +public class SKData : SKObject, ISKNonVirtualReferenceCounted +{ + internal SKData(IntPtr handle, bool owns) + : base(handle, owns) + { + } + + // ReferenceNative/UnreferenceNative use type-specific functions + void ISKNonVirtualReferenceCounted.ReferenceNative() => SkiaApi.sk_data_ref(Handle); + void ISKNonVirtualReferenceCounted.UnreferenceNative() => SkiaApi.sk_data_unref(Handle); +} +``` + +**Disposal Logic:** +```csharp +// In SKObject.cs +protected override void DisposeNative() +{ + if (this is ISKReferenceCounted refcnt) + refcnt.SafeUnRef(); // Calls unref (decrements ref count) +} + +// Reference counting extensions +internal static class SKObjectExtensions +{ + public static void SafeRef(this ISKReferenceCounted obj) + { + if (obj is ISKNonVirtualReferenceCounted nvrefcnt) + nvrefcnt.ReferenceNative(); // Type-specific ref + else + SkiaApi.sk_refcnt_safe_ref(obj.Handle); // Virtual ref + } + + public static void SafeUnRef(this ISKReferenceCounted obj) + { + if (obj is ISKNonVirtualReferenceCounted nvrefcnt) + nvrefcnt.UnreferenceNative(); // Type-specific unref + else + SkiaApi.sk_refcnt_safe_unref(obj.Handle); // Virtual unref + } +} +``` + +**Why two interfaces:** +- `SkRefCnt` types use virtual `ref()`/`unref()` - can call through base pointer +- `SkNVRefCnt` types use non-virtual ref/unref - need type-specific function names +- C API exposes `sk_data_ref()`, `sk_textblob_ref()`, etc. for non-virtual types +- C API exposes `sk_refcnt_safe_ref()` for all virtual ref-counted types + +**Handle dictionary behavior:** +```csharp +// GetOrAddObject ensures only one C# wrapper per native handle +internal static TSkiaObject GetOrAddObject(IntPtr handle, bool owns, ...) +{ + if (HandleDictionary has existing wrapper for handle) + { + if (owns && existing is ISKReferenceCounted) + existing.SafeUnRef(); // New reference not needed, unref it + return existing; + } + else + { + var newObject = objectFactory(handle, owns); + RegisterHandle(handle, newObject); + return newObject; + } +} +``` + +**When to use:** +- Immutable objects that can be shared +- Objects with expensive creation/copying +- Objects that may outlive their creator + +**Common types using SkRefCnt (virtual ref-counting):** +- `SKImage` - Immutable images +- `SKShader` - Immutable shaders +- `SKColorFilter` - Immutable color filters +- `SKImageFilter` - Immutable image filters +- `SKTypeface` - Font faces +- `SKPicture` - Recorded drawing commands +- `SKPathEffect` - Path effects +- `SKMaskFilter` - Mask filters +- `SKBlender` - Blend modes +- `SKSurface` - Drawing surfaces + +**Common types using SkNVRefCnt (non-virtual ref-counting):** +- `SKData` - Immutable data blobs (most frequently used ref-counted type) +- `SKTextBlob` - Positioned text runs +- `SKVertices` - Vertex data for custom meshes +- `SKColorSpace` - Color space definitions + +**Difference in usage:** +- Both use ref/unref semantics identically +- C# wrappers use different interfaces but behave the same +- Non-virtual types are lighter weight (4 bytes vs 8-16 bytes overhead) +- Virtual types support polymorphism and inheritance + +## Identifying Pointer Types from C++ Signatures + +### How to Determine Pointer Type + +When adding new API bindings, examine the C++ signature: + +#### Raw Pointer (Non-Owning) +```cpp +// Const reference parameter - borrowed +void draw(const SkPaint& paint); + +// Raw pointer return - caller doesn't own +SkCanvas* getSurface(); + +// Pointer parameter marked as borrowed in docs +void setShader(SkShader* shader); // usually means "borrowed" +``` + +#### Owned Pointer +```cpp +// Mutable classes: Canvas, Paint, Path, Bitmap +SkCanvas* canvas = new SkCanvas(...); + +// Stack allocation +SkPaint paint; + +// Usually indicated by create/new functions +static SkCanvas* Make(...); +``` + +#### Reference-Counted Pointer (Virtual - SkRefCnt) +```cpp +// Inherits from SkRefCnt (has virtual destructor) +class SkImage : public SkRefCnt { + virtual ~SkImage() { } +}; + +// Uses sk_sp smart pointer +sk_sp makeImage(); + +// Returns sk_sp in documentation +static sk_sp MakeFromBitmap(...); + +// Most immutable types (Image, Shader, ColorFilter, etc.) +``` + +#### Reference-Counted Pointer (Non-Virtual - SkNVRefCnt) +```cpp +// Inherits from SkNVRefCnt (no virtual destructor) +class SK_API SkData final : public SkNVRefCnt { }; + +// Uses sk_sp smart pointer (same as SkRefCnt) +sk_sp makeData(); + +// Usually marked as 'final' (cannot inherit) +static sk_sp MakeFromMalloc(...); + +// Lightweight immutable types: Data, TextBlob, Vertices, ColorSpace +``` + +**Rule of thumb:** +- If it inherits `SkRefCnt` or `SkRefCntBase` → Virtual reference counted +- If it inherits `SkNVRefCnt` → Non-virtual reference counted +- If it's mutable (Canvas, Paint, Path) → Owned pointer +- If it's a parameter or returned from getter → Raw pointer (non-owning) + +**How to tell SkRefCnt vs SkNVRefCnt:** +- Check class declaration in C++ header +- `SkNVRefCnt` types are usually marked `final` +- `SkNVRefCnt` types don't have virtual functions (lighter weight) +- Both use same `sk_sp` and ref/unref pattern +- In C# layer: `ISKReferenceCounted` vs `ISKNonVirtualReferenceCounted` + +## Common Mistakes and How to Avoid Them + +### Mistake 1: Treating Reference-Counted as Owned + +**Wrong:** +```cpp +SK_C_API void sk_image_destroy(sk_image_t* image) { + delete AsImage(image); // WRONG! Images are ref-counted +} +``` + +**Correct:** +```cpp +SK_C_API void sk_image_unref(const sk_image_t* image) { + SkSafeUnref(AsImage(image)); // Correct: decrement ref count +} +``` + +### Mistake 2: Not Incrementing Ref Count When Storing + +**Wrong:** +```cpp +// C++ expects sk_sp, which would increment ref +SK_C_API sk_image_t* sk_image_new_raster_data(..., sk_data_t* pixels, ...) { + return ToImage(SkImages::RasterFromData(..., AsData(pixels), ...).release()); + // WRONG: AsData(pixels) creates raw pointer, no ref increment +} +``` + +**Correct:** +```cpp +SK_C_API sk_image_t* sk_image_new_raster_data(..., sk_data_t* pixels, ...) { + return ToImage(SkImages::RasterFromData(..., sk_ref_sp(AsData(pixels)), ...).release()); + // Correct: sk_ref_sp increments ref count +} +``` + +### Mistake 3: Double-Freeing with Wrong Ownership + +**Wrong:** +```csharp +public class SKImage : SKObject +{ + // Created owned wrapper but image is ref-counted + public static SKImage FromBitmap(SKBitmap bitmap) + { + var handle = SkiaApi.sk_image_new_from_bitmap(bitmap.Handle); + return new SKImage(handle, true); // Will call delete instead of unref + } +} +``` + +**Correct:** +```csharp +public class SKImage : SKObject, ISKReferenceCounted // Implement ISKReferenceCounted +{ + public static SKImage FromBitmap(SKBitmap bitmap) + { + var handle = SkiaApi.sk_image_new_from_bitmap(bitmap.Handle); + return GetObject(handle); // ISKReferenceCounted triggers unref on dispose + } +} +``` + +### Mistake 4: Disposing Borrowed Objects + +**Wrong:** +```csharp +public SKSurface Surface +{ + get { + var handle = SkiaApi.sk_get_surface(Handle); + return new SKSurface(handle, true); // WRONG: will destroy surface owned by canvas + } +} +``` + +**Correct:** +```csharp +public SKSurface Surface +{ + get { + var handle = SkiaApi.sk_get_surface(Handle); + return SKObject.GetOrAddObject(handle, owns: false, // Correct: non-owning wrapper + (h, o) => new SKSurface(h, o)); + } +} +``` + +## Memory Lifecycle Patterns + +### Pattern 1: Create and Dispose (Owned) + +```csharp +using (var paint = new SKPaint()) // Creates owned object +{ + paint.Color = SKColors.Red; + canvas.DrawRect(rect, paint); +} // Dispose calls sk_paint_delete +``` + +### Pattern 2: Factory and Ref Counting (Reference-Counted) + +```csharp +SKImage image = SKImage.FromBitmap(bitmap); // ref count = 1 +SKImage image2 = image; // Both variables reference same native object +// No ref count increment in C# (handle dictionary ensures single wrapper) + +image.Dispose(); // ref count still >= 1 (wrapper disposed but object alive) +image2.Dispose(); // Now ref count decremented, possibly deleted +``` + +### Pattern 3: Ownership Transfer + +```csharp +var drawable = new SKDrawable(); +canvas.DrawDrawable(drawable); // Canvas takes ownership +// drawable.RevokeOwnership() called internally +// drawable wrapper still exists but won't dispose native object +``` + +### Pattern 4: Parent-Child Relationships + +```csharp +var surface = SKSurface.Create(info); // Parent owns surface +var canvas = surface.Canvas; // Child owned by parent (non-owning wrapper) + +canvas.DrawRect(...); // Safe to use +surface.Dispose(); // Destroys surface AND canvas +// canvas wrapper still exists but native object is gone - don't use! +``` + +## Thread Safety Considerations + +### Reference Counting +- Reference count increments/decrements are atomic (thread-safe) +- Creating/destroying objects from multiple threads is safe +- Using the same object from multiple threads is NOT safe + +### Handle Dictionary +- Backed by a shared `Dictionary` protected by a reader/writer lock +- Multiple threads can safely request wrappers, but calls run inside the lock to keep state consistent +- Don't access disposed objects from any thread + +### Best Practices +1. Create objects on one thread, use on same thread +2. Don't share mutable objects (SKCanvas, SKPaint) across threads +3. Immutable objects (SKImage) can be shared after creation +4. Always dispose on the same thread that uses the object + +## Summary Table + +| Pointer Type | C++ | C API | C# | Cleanup | Example Types | +|--------------|-----|-------|-----|---------|---------------| +| **Raw (Non-Owning)** | `SkType*` | `sk_type_t*` | `OwnsHandle=false` | None (owned elsewhere) | Parameters, getters | +| **Owned** | `new SkType()` | `sk_type_new/delete` | `OwnsHandle=true`, no ref counting | `delete` or `destroy` | SKCanvas, SKPaint, SKPath | +| **Reference-Counted** | `sk_sp`, `SkRefCnt` | `sk_type_ref/unref` | `ISKReferenceCounted` | `unref()` | SKImage, SKShader, SKData | + +## Next Steps + +- See [Error Handling](error-handling.md) for how errors are managed across pointer types +- See [Adding New APIs](adding-new-apis.md) for step-by-step guide using correct pointer types diff --git a/samples/Basic/Android/SkiaSharpSample/SkiaSharpSample.csproj b/samples/Basic/Android/SkiaSharpSample/SkiaSharpSample.csproj index 62580a92ff..f25e4fd692 100644 --- a/samples/Basic/Android/SkiaSharpSample/SkiaSharpSample.csproj +++ b/samples/Basic/Android/SkiaSharpSample/SkiaSharpSample.csproj @@ -1,7 +1,7 @@  - net8.0-android + net9.0-android Exe android-arm;android-x86;android-arm64;android-x64 diff --git a/samples/Basic/BlazorWebAssembly/SkiaSharpSample/SkiaSharpSample.csproj b/samples/Basic/BlazorWebAssembly/SkiaSharpSample/SkiaSharpSample.csproj index 6816204ac9..22f16de96b 100644 --- a/samples/Basic/BlazorWebAssembly/SkiaSharpSample/SkiaSharpSample.csproj +++ b/samples/Basic/BlazorWebAssembly/SkiaSharpSample/SkiaSharpSample.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable enable diff --git a/samples/Basic/BrowserWebAssembly/SkiaSharpSample/SkiaSharpSample.csproj b/samples/Basic/BrowserWebAssembly/SkiaSharpSample/SkiaSharpSample.csproj index 5a385b99e4..eb7e4c39ba 100644 --- a/samples/Basic/BrowserWebAssembly/SkiaSharpSample/SkiaSharpSample.csproj +++ b/samples/Basic/BrowserWebAssembly/SkiaSharpSample/SkiaSharpSample.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 true enable diff --git a/samples/Basic/Console/SkiaSharpSample/SkiaSharpSample.csproj b/samples/Basic/Console/SkiaSharpSample/SkiaSharpSample.csproj index cdcb7ad63e..e74847903f 100644 --- a/samples/Basic/Console/SkiaSharpSample/SkiaSharpSample.csproj +++ b/samples/Basic/Console/SkiaSharpSample/SkiaSharpSample.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net9.0 diff --git a/samples/Basic/Gtk3/SkiaSharpSample/SkiaSharpSample.csproj b/samples/Basic/Gtk3/SkiaSharpSample/SkiaSharpSample.csproj index 464fec8b0a..2a0fac1983 100644 --- a/samples/Basic/Gtk3/SkiaSharpSample/SkiaSharpSample.csproj +++ b/samples/Basic/Gtk3/SkiaSharpSample/SkiaSharpSample.csproj @@ -2,7 +2,7 @@ WinExe - net8.0 + net9.0 diff --git a/samples/Basic/MacCatalyst/SkiaSharpSample/SkiaSharpSample.csproj b/samples/Basic/MacCatalyst/SkiaSharpSample/SkiaSharpSample.csproj index 16ddde8354..6fe47c7f43 100644 --- a/samples/Basic/MacCatalyst/SkiaSharpSample/SkiaSharpSample.csproj +++ b/samples/Basic/MacCatalyst/SkiaSharpSample/SkiaSharpSample.csproj @@ -1,7 +1,7 @@ - net8.0-maccatalyst + net9.0-maccatalyst Exe enable true diff --git a/samples/Basic/Maui/SkiaSharpSample/MauiProgram.cs b/samples/Basic/Maui/SkiaSharpSample/MauiProgram.cs index ec5293dac7..855072bd75 100644 --- a/samples/Basic/Maui/SkiaSharpSample/MauiProgram.cs +++ b/samples/Basic/Maui/SkiaSharpSample/MauiProgram.cs @@ -2,7 +2,6 @@ using Microsoft.Maui.Hosting; using Microsoft.Maui.Controls.Hosting; using SkiaSharp.Views.Maui.Controls.Hosting; -using Microsoft.Maui.Controls.Compatibility.Hosting; namespace SkiaSharpSample { diff --git a/samples/Basic/Maui/SkiaSharpSample/Platforms/Tizen/Main.cs b/samples/Basic/Maui/SkiaSharpSample/Platforms/Tizen/Main.cs deleted file mode 100644 index 16d024f090..0000000000 --- a/samples/Basic/Maui/SkiaSharpSample/Platforms/Tizen/Main.cs +++ /dev/null @@ -1,17 +0,0 @@ -using System; -using Microsoft.Maui; -using Microsoft.Maui.Hosting; - -namespace SkiaSharpSample -{ - class Program : MauiApplication - { - protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); - - static void Main(string[] args) - { - var app = new Program(); - app.Run(args); - } - } -} diff --git a/samples/Basic/Maui/SkiaSharpSample/Platforms/Tizen/tizen-manifest.xml b/samples/Basic/Maui/SkiaSharpSample/Platforms/Tizen/tizen-manifest.xml deleted file mode 100644 index 2e469b9b37..0000000000 --- a/samples/Basic/Maui/SkiaSharpSample/Platforms/Tizen/tizen-manifest.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - appicon.xhigh.png - - - - - http://tizen.org/privilege/internet - - - - \ No newline at end of file diff --git a/samples/Basic/Maui/SkiaSharpSample/SkiaSharpSample.csproj b/samples/Basic/Maui/SkiaSharpSample/SkiaSharpSample.csproj index b974f44c9d..3a7ae26a68 100644 --- a/samples/Basic/Maui/SkiaSharpSample/SkiaSharpSample.csproj +++ b/samples/Basic/Maui/SkiaSharpSample/SkiaSharpSample.csproj @@ -1,9 +1,8 @@  - net8.0-ios;net8.0-maccatalyst;net8.0-android - $(TargetFrameworks);net8.0-tizen - $(TargetFrameworks);net8.0-windows10.0.19041.0 + net9.0-ios;net9.0-maccatalyst;net9.0-android + $(TargetFrameworks);net9.0-windows10.0.19041.0 Exe true true @@ -23,7 +22,6 @@ 14.0 21.0 10.0.17763.0 - 6.5 diff --git a/samples/Basic/Tizen/SkiaSharpSample/SkiaSharpSample.csproj b/samples/Basic/Tizen/SkiaSharpSample/SkiaSharpSample.csproj index 4053c9db21..9dc1508c58 100644 --- a/samples/Basic/Tizen/SkiaSharpSample/SkiaSharpSample.csproj +++ b/samples/Basic/Tizen/SkiaSharpSample/SkiaSharpSample.csproj @@ -1,7 +1,7 @@  - net8.0-tizen + net9.0-tizen Exe diff --git a/samples/Basic/UnoPlatform/SkiaSharpSample/Properties/launchSettings.json b/samples/Basic/UnoPlatform/SkiaSharpSample/Properties/launchSettings.json index 483fdd40da..a6ec6eac0a 100644 --- a/samples/Basic/UnoPlatform/SkiaSharpSample/Properties/launchSettings.json +++ b/samples/Basic/UnoPlatform/SkiaSharpSample/Properties/launchSettings.json @@ -42,7 +42,7 @@ }, "SkiaSharpSample (Desktop WSL2)": { "commandName": "WSL2", - "commandLineArgs": "{ProjectDir}/bin/Debug/net8.0-desktop/SkiaSharpSample.dll", + "commandLineArgs": "{ProjectDir}/bin/Debug/net9.0-desktop/SkiaSharpSample.dll", "distributionName": "", "compatibleTargetFramework": "desktop" } diff --git a/samples/Basic/UnoPlatform/SkiaSharpSample/SkiaSharpSample.csproj b/samples/Basic/UnoPlatform/SkiaSharpSample/SkiaSharpSample.csproj index b48be07918..88aa2bc21d 100644 --- a/samples/Basic/UnoPlatform/SkiaSharpSample/SkiaSharpSample.csproj +++ b/samples/Basic/UnoPlatform/SkiaSharpSample/SkiaSharpSample.csproj @@ -1,9 +1,9 @@  - net8.0-desktop;net8.0-browserwasm - net8.0-windows10.0.19041.0;$(TargetFrameworks) - net8.0-android;net8.0-ios;net8.0-maccatalyst;$(TargetFrameworks) + net9.0-desktop;net9.0-browserwasm + net9.0-windows10.0.19041.0;$(TargetFrameworks) + net9.0-android;net9.0-ios;net9.0-maccatalyst;$(TargetFrameworks) Exe enable enable diff --git a/samples/Basic/WPF/SkiaSharpSample/SkiaSharpSample.csproj b/samples/Basic/WPF/SkiaSharpSample/SkiaSharpSample.csproj index b10acf782f..2f06f7ca04 100644 --- a/samples/Basic/WPF/SkiaSharpSample/SkiaSharpSample.csproj +++ b/samples/Basic/WPF/SkiaSharpSample/SkiaSharpSample.csproj @@ -1,7 +1,7 @@  - net8.0-windows10.0.19041.0 + net9.0-windows10.0.19041.0 WinExe true diff --git a/samples/Basic/Web/SkiaSharpSample/SkiaSharpSample.csproj b/samples/Basic/Web/SkiaSharpSample/SkiaSharpSample.csproj index 74c6978e56..9360b3def2 100644 --- a/samples/Basic/Web/SkiaSharpSample/SkiaSharpSample.csproj +++ b/samples/Basic/Web/SkiaSharpSample/SkiaSharpSample.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable enable diff --git a/samples/Basic/WinUI/SkiaSharpSample/SkiaSharpSample.csproj b/samples/Basic/WinUI/SkiaSharpSample/SkiaSharpSample.csproj index d7016f7936..ff2b58dfcc 100644 --- a/samples/Basic/WinUI/SkiaSharpSample/SkiaSharpSample.csproj +++ b/samples/Basic/WinUI/SkiaSharpSample/SkiaSharpSample.csproj @@ -1,7 +1,7 @@  - net8.0-windows10.0.19041.0 + net9.0-windows10.0.19041.0 WinExe 10.0.17763.0 SkiaSharpSample diff --git a/samples/Basic/WindowsForms/SkiaSharpSample/SkiaSharpSample.csproj b/samples/Basic/WindowsForms/SkiaSharpSample/SkiaSharpSample.csproj index 0cbb7160dd..c12809d2e0 100644 --- a/samples/Basic/WindowsForms/SkiaSharpSample/SkiaSharpSample.csproj +++ b/samples/Basic/WindowsForms/SkiaSharpSample/SkiaSharpSample.csproj @@ -1,7 +1,7 @@  - net8.0-windows10.0.19041.0 + net9.0-windows10.0.19041.0 WinExe true diff --git a/samples/Basic/iOS/SkiaSharpSample/SkiaSharpSample.csproj b/samples/Basic/iOS/SkiaSharpSample/SkiaSharpSample.csproj index e8f9d9c8c2..e7d87ebf00 100644 --- a/samples/Basic/iOS/SkiaSharpSample/SkiaSharpSample.csproj +++ b/samples/Basic/iOS/SkiaSharpSample/SkiaSharpSample.csproj @@ -1,7 +1,7 @@  - net8.0-ios + net9.0-ios Exe enable true diff --git a/samples/Basic/macOS/SkiaSharpSample/AppDelegate.cs b/samples/Basic/macOS/SkiaSharpSample/AppDelegate.cs index 80b8ecc807..2202756a29 100644 --- a/samples/Basic/macOS/SkiaSharpSample/AppDelegate.cs +++ b/samples/Basic/macOS/SkiaSharpSample/AppDelegate.cs @@ -6,16 +6,45 @@ namespace SkiaSharpSample [Register(nameof(AppDelegate))] public class AppDelegate : NSApplicationDelegate { - public override void DidFinishLaunching(NSNotification notification) - { - // Insert code here to initialize your application - } + private volatile bool _shouldTerminate; public override void WillTerminate(NSNotification notification) { - // Insert code here to tear down your application + _shouldTerminate = true; } public override bool ApplicationShouldTerminateAfterLastWindowClosed(NSApplication sender) => true; + + public void RunRenderLoop(NSWindow? window, ViewController? viewController) + { + if (window == null || viewController == null) + return; + + var app = NSApplication.SharedApplication; + + // Tight render loop matching C++ implementation + while (!_shouldTerminate && window.IsVisible) + { + // 1. Process all pending events (non-blocking) + NSEvent? ev; + do + { + ev = app.NextEvent(NSEventMask.AnyEvent, NSDate.DistantPast, NSRunLoopMode.Default, true); + if (ev != null) + { + app.SendEvent(ev); + app.UpdateWindows(); + } + } while (ev != null); + + // 2. Paint windows directly (like C++ PaintWindows()) + viewController.RenderFrame(); + + // Small yield to prevent 100% CPU (can be removed for max FPS) + System.Threading.Thread.Yield(); + } + + app.Terminate(this); + } } } diff --git a/samples/Basic/macOS/SkiaSharpSample/Info.plist b/samples/Basic/macOS/SkiaSharpSample/Info.plist index 13a25cfa22..6314df8c63 100644 --- a/samples/Basic/macOS/SkiaSharpSample/Info.plist +++ b/samples/Basic/macOS/SkiaSharpSample/Info.plist @@ -22,8 +22,6 @@ (c) Matthew Leibowitz NSPrincipalClass NSApplication - NSMainStoryboardFile - Main XSAppIconAssets Assets.xcassets/AppIcon.appiconset diff --git a/samples/Basic/macOS/SkiaSharpSample/Main.cs b/samples/Basic/macOS/SkiaSharpSample/Main.cs index bbe843b74e..53cf30a0ad 100644 --- a/samples/Basic/macOS/SkiaSharpSample/Main.cs +++ b/samples/Basic/macOS/SkiaSharpSample/Main.cs @@ -1,4 +1,6 @@ using AppKit; +using CoreGraphics; +using Foundation; namespace SkiaSharpSample { @@ -7,7 +9,46 @@ static class MainClass static void Main(string[] args) { NSApplication.Init(); - NSApplication.Main(args); + var app = NSApplication.SharedApplication; + var appDelegate = new AppDelegate(); + app.Delegate = appDelegate; + + // Create window programmatically (no storyboard) + var window = CreateWindow(); + var viewController = new ViewController(); + window.ContentViewController = viewController; + + window.MakeKeyAndOrderFront(null); + app.ActivateIgnoringOtherApps(true); + + // Process initial events to show window + app.FinishLaunching(); + + // Run tight render loop (like C++ motionmark_app) + appDelegate.RunRenderLoop(window, viewController); + } + + static NSWindow CreateWindow() + { + var screenRect = NSScreen.MainScreen.VisibleFrame; + var windowRect = new CGRect( + (screenRect.Width - 1280) / 2, + (screenRect.Height - 960) / 2, + 1280, + 960 + ); + + var window = new NSWindow( + windowRect, + NSWindowStyle.Titled | NSWindowStyle.Closable | NSWindowStyle.Resizable | NSWindowStyle.Miniaturizable, + NSBackingStore.Buffered, + false + ); + + window.Title = "MotionMark SkiaSharp (OpenGL)"; + window.MinSize = new CGSize(640, 480); + + return window; } } } diff --git a/samples/Basic/macOS/SkiaSharpSample/Main.storyboard b/samples/Basic/macOS/SkiaSharpSample/Main.storyboard deleted file mode 100644 index 003bad412b..0000000000 --- a/samples/Basic/macOS/SkiaSharpSample/Main.storyboard +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/Basic/macOS/SkiaSharpSample/MotionMarkScene.cs b/samples/Basic/macOS/SkiaSharpSample/MotionMarkScene.cs new file mode 100644 index 0000000000..1c12368669 --- /dev/null +++ b/samples/Basic/macOS/SkiaSharpSample/MotionMarkScene.cs @@ -0,0 +1,282 @@ +using System; +using System.Collections.Generic; +using System.Runtime.InteropServices; +using SkiaSharp; + +namespace SkiaSharpSample; + +internal sealed class MotionMarkScene : IDisposable +{ + private const int GridWidth = 80; + private const int GridHeight = 40; + + private static readonly SKColor[] s_palette = + [ + new SKColor(0x10, 0x10, 0x10), + new SKColor(0x80, 0x80, 0x80), + new SKColor(0xC0, 0xC0, 0xC0), + new SKColor(0x10, 0x10, 0x10), + new SKColor(0x80, 0x80, 0x80), + new SKColor(0xC0, 0xC0, 0xC0), + new SKColor(0xE0, 0x10, 0x40), + ]; + + private static readonly (int X, int Y)[] s_offsets = + [ + (-4, 0), + (2, 0), + (1, -2), + (1, 2), + ]; + + private readonly List _elements = new(); + private readonly SKPath _path = new(); + private readonly SKPaint _strokePaint = new() + { + IsAntialias = true, + Style = SKPaintStyle.Stroke, + StrokeCap = SKStrokeCap.Round, + StrokeJoin = SKStrokeJoin.Round, + }; + private readonly SKPaint _backgroundPaint = new() + { + Color = new SKColor(12, 16, 24), + Style = SKPaintStyle.Fill + }; + private readonly Random _random = new(); + private GridPoint _lastGridPoint = new(GridWidth / 2, GridHeight / 2); + private int _complexity = 8; + private bool _disposed; + + public int Complexity => _complexity; + public int ElementCount => _elements.Count; + + public void SetComplexity(int complexity) + { + complexity = Math.Clamp(complexity, 0, 24); + if (_complexity == complexity) + return; + + _complexity = complexity; + Resize(ComputeElementCount(_complexity)); + } + + public void Render(SKCanvas canvas, float width, float height) + { + Resize(ComputeElementCount(_complexity)); + + canvas.DrawRect(new SKRect(0, 0, width, height), _backgroundPaint); + + if (_elements.Count == 0) + return; + + float scaleX = width / (GridWidth + 1); + float scaleY = height / (GridHeight + 1); + float uniformScale = MathF.Min(scaleX, scaleY); + float offsetX = (width - uniformScale * (GridWidth + 1)) * 0.5f; + float offsetY = (height - uniformScale * (GridHeight + 1)) * 0.5f; + + Span elements = CollectionsMarshal.AsSpan(_elements); + _path.Reset(); + bool pathStarted = false; + + for (int i = 0; i < elements.Length; i++) + { + ref Element element = ref elements[i]; + if (!pathStarted) + { + SKPoint start = element.Start.ToPoint(uniformScale, offsetX, offsetY); + _path.MoveTo(start); + pathStarted = true; + } + + switch (element.Kind) + { + case SegmentKind.Line: + { + SKPoint end = element.End.ToPoint(uniformScale, offsetX, offsetY); + _path.LineTo(end); + break; + } + case SegmentKind.Quad: + { + SKPoint c1 = element.Control1.ToPoint(uniformScale, offsetX, offsetY); + SKPoint end = element.End.ToPoint(uniformScale, offsetX, offsetY); + _path.QuadTo(c1, end); + break; + } + case SegmentKind.Cubic: + { + SKPoint c1 = element.Control1.ToPoint(uniformScale, offsetX, offsetY); + SKPoint c2 = element.Control2.ToPoint(uniformScale, offsetX, offsetY); + SKPoint end = element.End.ToPoint(uniformScale, offsetX, offsetY); + _path.CubicTo(c1, c2, end); + break; + } + } + + bool finalize = element.Split || i == elements.Length - 1; + if (finalize) + { + _strokePaint.Color = element.Color; + _strokePaint.StrokeWidth = element.Width; + canvas.DrawPath(_path, _strokePaint); + _path.Reset(); + pathStarted = false; + } + + if (_random.NextDouble() > 0.995) + { + element.Split = !element.Split; + } + } + } + + public void Dispose() + { + if (_disposed) + return; + + _path.Dispose(); + _strokePaint.Dispose(); + _backgroundPaint.Dispose(); + _disposed = true; + } + + private void Resize(int count) + { + int current = _elements.Count; + if (count == current) + return; + + if (count < current) + { + _elements.RemoveRange(count, current - count); + _lastGridPoint = count > 0 + ? _elements[^1].End + : new GridPoint(GridWidth / 2, GridHeight / 2); + return; + } + + _elements.Capacity = Math.Max(_elements.Capacity, count); + if (current == 0) + { + _lastGridPoint = new GridPoint(GridWidth / 2, GridHeight / 2); + } + else + { + _lastGridPoint = _elements[^1].End; + } + + for (int i = current; i < count; i++) + { + Element element = CreateRandomElement(_lastGridPoint); + _elements.Add(element); + _lastGridPoint = element.End; + } + } + + private Element CreateRandomElement(GridPoint last) + { + int segType = _random.Next(4); + GridPoint next = RandomPoint(last); + + Element element = default; + element.Start = last; + + if (segType < 2) + { + element.Kind = SegmentKind.Line; + element.End = next; + } + else if (segType == 2) + { + GridPoint p2 = RandomPoint(next); + element.Kind = SegmentKind.Quad; + element.Control1 = next; + element.End = p2; + } + else + { + GridPoint p2 = RandomPoint(next); + GridPoint p3 = RandomPoint(next); + element.Kind = SegmentKind.Cubic; + element.Control1 = next; + element.Control2 = p2; + element.End = p3; + } + + element.Color = s_palette[_random.Next(s_palette.Length)]; + element.Width = (float)(Math.Pow(_random.NextDouble(), 5) * 20.0 + 1.0); + element.Split = _random.Next(2) == 0; + return element; + } + + private static int ComputeElementCount(int complexity) + { + if (complexity < 10) + { + return (complexity + 1) * 1_000; + } + + int extended = (complexity - 8) * 10_000; + return Math.Min(extended, 120_000); + } + + private GridPoint RandomPoint(GridPoint last) + { + var offset = s_offsets[_random.Next(s_offsets.Length)]; + + int x = last.X + offset.X; + if (x < 0 || x > GridWidth) + { + x -= offset.X * 2; + } + + int y = last.Y + offset.Y; + if (y < 0 || y > GridHeight) + { + y -= offset.Y * 2; + } + + return new GridPoint(x, y); + } + + private enum SegmentKind : byte + { + Line, + Quad, + Cubic + } + + private struct Element + { + public SegmentKind Kind; + public GridPoint Start; + public GridPoint Control1; + public GridPoint Control2; + public GridPoint End; + public SKColor Color; + public float Width; + public bool Split; + } + + private readonly struct GridPoint + { + public GridPoint(int x, int y) + { + X = x; + Y = y; + } + + public int X { get; } + public int Y { get; } + + public SKPoint ToPoint(float scale, float offsetX, float offsetY) + { + float px = offsetX + (X + 0.5f) * scale; + float py = offsetY + (Y + 0.5f) * scale; + return new SKPoint(px, py); + } + } +} diff --git a/samples/Basic/macOS/SkiaSharpSample/SkiaSharpSample.csproj b/samples/Basic/macOS/SkiaSharpSample/SkiaSharpSample.csproj index 080b7e5d4e..6898af8fb4 100644 --- a/samples/Basic/macOS/SkiaSharpSample/SkiaSharpSample.csproj +++ b/samples/Basic/macOS/SkiaSharpSample/SkiaSharpSample.csproj @@ -1,11 +1,12 @@ - net8.0-macos + net9.0-macos Exe enable true - 11.0 + 12.0 + false diff --git a/samples/Basic/macOS/SkiaSharpSample/ViewController.cs b/samples/Basic/macOS/SkiaSharpSample/ViewController.cs index 5300a21d7f..534bfebfa4 100644 --- a/samples/Basic/macOS/SkiaSharpSample/ViewController.cs +++ b/samples/Basic/macOS/SkiaSharpSample/ViewController.cs @@ -1,47 +1,111 @@ using System; +using System.Diagnostics; using AppKit; +using CoreGraphics; +using Foundation; using SkiaSharp; using SkiaSharp.Views.Mac; namespace SkiaSharpSample { - public partial class ViewController : NSViewController + public class ViewController : NSViewController { - public ViewController(IntPtr handle) - : base(handle) + private SKGLView? _skiaView; + private readonly MotionMarkScene _scene = new(); + private readonly Stopwatch _stopwatch = Stopwatch.StartNew(); + private double _lastTime; + private int _frameCount; + private double _accumulatedTime; + + public ViewController() + { + } + + public override void LoadView() { + // Create the view programmatically (no storyboard) + View = new NSView(new CGRect(0, 0, 1280, 720)); } public override void ViewDidLoad() { base.ViewDidLoad(); - skiaView.IgnorePixelScaling = true; - skiaView.PaintSurface += OnPaintSurface; + // Create SKGLView programmatically + _skiaView = new SKGLView(View.Bounds) + { + AutoresizingMask = NSViewResizingMask.WidthSizable | NSViewResizingMask.HeightSizable + }; + + View.AddSubview(_skiaView); + + // Set initial complexity (matching C++ default) + _scene.SetComplexity(8); + + _skiaView.PaintSurface += OnPaintSurface; + + _lastTime = _stopwatch.Elapsed.TotalSeconds; } - private void OnPaintSurface(object? sender, SKPaintSurfaceEventArgs e) + protected override void Dispose(bool disposing) { - // the the canvas and properties + if (disposing) + { + _scene?.Dispose(); + } + base.Dispose(disposing); + } + + public void RenderFrame() + { + if (_skiaView == null) + return; + + // Direct render call (like C++ Window::onPaint) + // This forces SKGLView to render immediately without display queue + _skiaView.NeedsDisplay = true; + _skiaView.DisplayIfNeeded(); + } + + private void OnPaintSurface(object? sender, SKPaintGLSurfaceEventArgs e) + { + if (e.Surface == null || e.Surface.Canvas == null) + return; + var canvas = e.Surface.Canvas; + var width = e.BackendRenderTarget.Width; + var height = e.BackendRenderTarget.Height; - // make sure the canvas is blank - canvas.Clear(SKColors.White); + _scene.Render(canvas, width, height); - // draw some text - using var paint = new SKPaint - { - Color = SKColors.Black, - IsAntialias = true, - Style = SKPaintStyle.Fill - }; - using var font = new SKFont + // FPS tracking + double currentTime = _stopwatch.Elapsed.TotalSeconds; + double dt = Math.Clamp(currentTime - _lastTime, 1.0 / 240.0, 0.25); + _lastTime = currentTime; + + _accumulatedTime += dt; + _frameCount++; + + if (_accumulatedTime >= 0.5) { - Size = 24 - }; - var coord = new SKPoint(e.Info.Width / 2, (e.Info.Height + font.Size) / 2); - canvas.DrawText("SkiaSharp", coord, SKTextAlign.Center, font, paint); + double fps = _frameCount / _accumulatedTime; + var complexity = _scene.Complexity; + var elementCount = _scene.ElementCount; + + // Update window title with FPS (on main thread to avoid crash) + var window = View?.Window; + if (window != null) + { + var title = $"MotionMark SkiaSharp (OpenGL) | {fps:F1} FPS | Complexity {complexity} | Elements {elementCount}"; + NSApplication.SharedApplication.InvokeOnMainThread(() => { + window.Title = title; + }); + } + + _accumulatedTime = 0.0; + _frameCount = 0; + } } } } diff --git a/samples/Basic/macOS/SkiaSharpSample/ViewController.designer.cs b/samples/Basic/macOS/SkiaSharpSample/ViewController.designer.cs deleted file mode 100644 index e03f03b687..0000000000 --- a/samples/Basic/macOS/SkiaSharpSample/ViewController.designer.cs +++ /dev/null @@ -1,26 +0,0 @@ -// WARNING -// -// This file has been generated automatically by Visual Studio to store outlets and -// actions made in the UI designer. If it is removed, they will be lost. -// Manual changes to this file may not be handled correctly. -// -using Foundation; -using System.CodeDom.Compiler; - -namespace SkiaSharpSample -{ - [Register ("ViewController")] - partial class ViewController - { - [Outlet] - SkiaSharp.Views.Mac.SKCanvasView skiaView { get; set; } - - void ReleaseDesignerOutlets () - { - if (skiaView != null) { - skiaView.Dispose (); - skiaView = null; - } - } - } -} diff --git a/samples/Basic/tvOS/SkiaSharpSample/SkiaSharpSample.csproj b/samples/Basic/tvOS/SkiaSharpSample/SkiaSharpSample.csproj index b3ceabac6f..d44f04fcbd 100644 --- a/samples/Basic/tvOS/SkiaSharpSample/SkiaSharpSample.csproj +++ b/samples/Basic/tvOS/SkiaSharpSample/SkiaSharpSample.csproj @@ -1,7 +1,7 @@ - net8.0-tvos + net9.0-tvos Exe enable true diff --git a/source/SkiaSharp.Build.props b/source/SkiaSharp.Build.props index bd14b57a32..143186a797 100644 --- a/source/SkiaSharp.Build.props +++ b/source/SkiaSharp.Build.props @@ -44,7 +44,7 @@ net6.0 - net8.0 + net9.0 @@ -54,67 +54,23 @@ 10.0.19041.0 - 34.0 - 17.0 - 17.0 - 17.0 - 14.0 + 35.0 + 18.0 + 18.0 + 18.0 + 15.0 7.0 10.0.19041.0 - 35.0 - 17.5 - 17.5 - 17.5 - 14.5 + 36.0 + 26.0 + 26 + 26.0 + 26.0 7.0 10.0.19041.0 - - - microsoft.net.sdk.macos\WorkloadManifest.json - - $([MSBuild]::NormalizeDirectory('$(DOTNET_INSTALL_DIR)\sdk-manifests\$(DotNetSdkManifestVersion)')) - $(DotNetWorkloadSearchPath) - - $([MSBuild]::NormalizeDirectory('$(DOTNET_ROOT)\sdk-manifests\$(DotNetSdkManifestVersion)')) - $(DotNetWorkloadSearchPath) - - $([MSBuild]::NormalizeDirectory('$(ProgramFiles)\dotnet\sdk-manifests\$(DotNetSdkManifestVersion)')) - $(DotNetWorkloadSearchPath) - - $([MSBuild]::NormalizeDirectory('/usr/local/share/dotnet/sdk-manifests/$(DotNetSdkManifestVersion)')) - $(DotNetWorkloadSearchPath) - - $([MSBuild]::NormalizeDirectory('$(LocalAppData)\Microsoft\dotnet\sdk-manifests\$(DotNetSdkManifestVersion)')) - $(DotNetWorkloadSearchPath) - - $([MSBuild]::NormalizeDirectory('$(HOME)/.dotnet/sdk-manifests/$(DotNetSdkManifestVersion)')) - $(DotNetWorkloadSearchPath) - - - \d+\.\d+\.\d+(-[a-z]+[\.\d+]+)* - $(DotNetWorkloadInstallLocation)..\..\packs\ - $([System.Text.RegularExpressions.Regex]::Match($([System.IO.File]::ReadAllText('$(DotNetWorkloadInstallLocation)\microsoft.net.sdk.android\WorkloadManifest.json')), $(DotNetWorkloadVersionRegex))) - $([System.Text.RegularExpressions.Regex]::Match($([System.IO.File]::ReadAllText('$(DotNetWorkloadInstallLocation)\microsoft.net.sdk.ios\WorkloadManifest.json')), $(DotNetWorkloadVersionRegex))) - $([System.Text.RegularExpressions.Regex]::Match($([System.IO.File]::ReadAllText('$(DotNetWorkloadInstallLocation)\microsoft.net.sdk.maui\WorkloadManifest.json')), $(DotNetWorkloadVersionRegex))) - $([System.Text.RegularExpressions.Regex]::Match($([System.IO.File]::ReadAllText('$(DotNetWorkloadInstallLocation)\samsung.net.sdk.tizen\WorkloadManifest.json')), $(DotNetWorkloadVersionRegex))) - $([System.Text.RegularExpressions.Regex]::Match($([System.IO.File]::ReadAllText('$(DotNetWorkloadInstallLocation)\microsoft.net.sdk.tvos\WorkloadManifest.json')), '$(DotNetWorkloadVersionRegex)')) - $([System.Text.RegularExpressions.Regex]::Match($([System.IO.File]::ReadAllText('$(DotNetWorkloadInstallLocation)\microsoft.net.sdk.macos\WorkloadManifest.json')), '$(DotNetWorkloadVersionRegex)')) - true - true - true - true - true - true - true - true - false - false - false - - net462 @@ -185,10 +141,10 @@ - 17.0 - 17.0 - 17.0 - 14.0 + 18.0 + 18.0 + 18.0 + 15.0 7.0 @@ -252,19 +208,19 @@ - 10.0 + 12.2 10.0 - 10.0 + 12.2 10.0 - 13.1 + 15.0 13.1 - 10.14 + 12.0 10.14 diff --git a/source/SkiaSharp.Views/SkiaSharp.Views.Blazor/SkiaSharp.Views.Blazor.csproj b/source/SkiaSharp.Views/SkiaSharp.Views.Blazor/SkiaSharp.Views.Blazor.csproj index eab705de81..90ec4ea1b7 100644 --- a/source/SkiaSharp.Views/SkiaSharp.Views.Blazor/SkiaSharp.Views.Blazor.csproj +++ b/source/SkiaSharp.Views/SkiaSharp.Views.Blazor/SkiaSharp.Views.Blazor.csproj @@ -27,6 +27,7 @@ + diff --git a/source/SkiaSharp.Views/SkiaSharp.Views/Platform/macOS/SKGLView.cs b/source/SkiaSharp.Views/SkiaSharp.Views/Platform/macOS/SKGLView.cs index ae3428c93e..e7b7709776 100644 --- a/source/SkiaSharp.Views/SkiaSharp.Views/Platform/macOS/SKGLView.cs +++ b/source/SkiaSharp.Views/SkiaSharp.Views/Platform/macOS/SKGLView.cs @@ -63,19 +63,18 @@ private void Initialize() { WantsBestResolutionOpenGLSurface = true; + // Match C++ sk_app pixel format attributes exactly var attrs = new NSOpenGLPixelFormatAttribute[] { - //NSOpenGLPixelFormatAttribute.OpenGLProfile, (NSOpenGLPixelFormatAttribute)NSOpenGLProfile.VersionLegacy, NSOpenGLPixelFormatAttribute.Accelerated, + NSOpenGLPixelFormatAttribute.ClosestPolicy, NSOpenGLPixelFormatAttribute.DoubleBuffer, - NSOpenGLPixelFormatAttribute.Multisample, - - NSOpenGLPixelFormatAttribute.ColorSize, (NSOpenGLPixelFormatAttribute)32, + NSOpenGLPixelFormatAttribute.OpenGLProfile, (NSOpenGLPixelFormatAttribute)NSOpenGLProfile.Version3_2Core, + NSOpenGLPixelFormatAttribute.ColorSize, (NSOpenGLPixelFormatAttribute)24, NSOpenGLPixelFormatAttribute.AlphaSize, (NSOpenGLPixelFormatAttribute)8, - NSOpenGLPixelFormatAttribute.DepthSize, (NSOpenGLPixelFormatAttribute)24, + NSOpenGLPixelFormatAttribute.DepthSize, (NSOpenGLPixelFormatAttribute)0, NSOpenGLPixelFormatAttribute.StencilSize, (NSOpenGLPixelFormatAttribute)8, - NSOpenGLPixelFormatAttribute.SampleBuffers, (NSOpenGLPixelFormatAttribute)1, - NSOpenGLPixelFormatAttribute.Samples, (NSOpenGLPixelFormatAttribute)4, + NSOpenGLPixelFormatAttribute.SampleBuffers, (NSOpenGLPixelFormatAttribute)0, (NSOpenGLPixelFormatAttribute)0, }; PixelFormat = new NSOpenGLPixelFormat(attrs); @@ -89,6 +88,10 @@ public override void PrepareOpenGL() { base.PrepareOpenGL(); + // Disable VSync to match C++ behavior (allows 200+ FPS) + var swapInterval = 0; + OpenGLContext.SetValues(swapInterval, NSOpenGLContextParameter.SwapInterval); + // create the context var glInterface = GRGlInterface.Create(); context = GRContext.CreateGl(glInterface); @@ -105,32 +108,31 @@ public override void Reshape() private nfloat lastBackingScaleFactor = 0; - public override void DrawRect(CGRect dirtyRect) + // Direct render method for tight loops (matches C++ onPaint pattern) + public void RenderDirect() { - // Track if the scale of the display has changed and if so force the SKGLView to reshape itself. - // If this is not done, the output will scale correctly when the window is dragged from a non-retina to a retina display. + if (OpenGLContext == null || context == null) + return; + + // Make GL context current + OpenGLContext.MakeCurrentContext(); + + // Track scale changes if (Window != null && lastBackingScaleFactor != Window.BackingScaleFactor) { - bool isFirstDraw = lastBackingScaleFactor == 0; lastBackingScaleFactor = Window.BackingScaleFactor; - if (!isFirstDraw) - { - Reshape(); - // A redraw will also be necessary. Invoke later or the request will be ignored - Invoke(() => { - NeedsDisplay = true; - }, 0); - // do not proceed at the wrong scale - return; - } + Reshape(); } - base.DrawRect(dirtyRect); + RenderFrame(); + } + private void RenderFrame() + { Gles.glClear(Gles.GL_COLOR_BUFFER_BIT | Gles.GL_DEPTH_BUFFER_BIT | Gles.GL_STENCIL_BUFFER_BIT); - // create the render target - if (renderTarget == null || lastSize != newSize || !renderTarget.IsValid) + // create the render target - only recreate on size change (match C++ getBackbufferSurface) + if (renderTarget == null || lastSize != newSize) { // create or update the dimensions lastSize = newSize; @@ -152,15 +154,15 @@ public override void DrawRect(CGRect dirtyRect) // re-create the render target renderTarget?.Dispose(); renderTarget = new GRBackendRenderTarget(newSize.Width, newSize.Height, samples, stencil, glInfo); - } - - // create the surface - if (surface == null) - { + + // create the surface immediately (match C++ getBackbufferSurface pattern) surface = SKSurface.Create(context, renderTarget, surfaceOrigin, colorType); canvas = surface.Canvas; } + if (canvas == null) + return; + using (new SKAutoCanvasRestore(canvas, true)) { // start drawing @@ -168,13 +170,36 @@ public override void DrawRect(CGRect dirtyRect) OnPaintSurface(e); } - // flush the SkiaSharp contents to GL - canvas.Flush(); - context.Flush(); - + // flush the SkiaSharp contents to GL (match C++ onSwapBuffers) + // Flush surface and submit immediately (matches C++ context->flush + flushBuffer pattern) + context.Flush(surface); OpenGLContext.FlushBuffer(); } + public override void DrawRect(CGRect dirtyRect) + { + // Track if the scale of the display has changed and if so force the SKGLView to reshape itself. + // If this is not done, the output will scale correctly when the window is dragged from a non-retina to a retina display. + if (Window != null && lastBackingScaleFactor != Window.BackingScaleFactor) + { + bool isFirstDraw = lastBackingScaleFactor == 0; + lastBackingScaleFactor = Window.BackingScaleFactor; + if (!isFirstDraw) + { + Reshape(); + // A redraw will also be necessary. Invoke later or the request will be ignored + Invoke(() => { + NeedsDisplay = true; + }, 0); + // do not proceed at the wrong scale + return; + } + } + + base.DrawRect(dirtyRect); + RenderFrame(); + } + public event EventHandler PaintSurface; protected virtual void OnPaintSurface(SKPaintGLSurfaceEventArgs e) diff --git a/trace.speedscope.speedscope.json b/trace.speedscope.speedscope.json new file mode 100644 index 0000000000..fd10d4ca6e --- /dev/null +++ b/trace.speedscope.speedscope.json @@ -0,0 +1 @@ +{"exporter": "Microsoft.Diagnostics.Tracing.TraceEvent@3.1.23.0", "name": "trace.speedscope.speedscope", "activeProfileIndex": 0, "$schema": "https://www.speedscope.app/file-format-schema.json", "shared": { "frames": [ { "name": "Process64 SkiaSharpSample (7013) Args: /Users/matthew/Documents/GitHub/SkiaSharp/samples/Basic/macOS/SkiaSharpSample/bin/Debug/net9.0-macos/osx-arm64/SkiaSharpSample.app/Contents/MonoBundle/SkiaSharpSample.dll" }, { "name": "(Non-Activities)" }, { "name": "Threads" }, { "name": "Thread (30700815)" }, { "name": "SkiaSharpSample!SkiaSharpSample.MainClass.Main(class System.String[])" }, { "name": "SkiaSharpSample!SkiaSharpSample.AppDelegate.RunRenderLoop(class AppKit.NSWindow,class SkiaSharpSample.ViewController)" }, { "name": "SkiaSharpSample!SkiaSharpSample.ViewController.RenderFrame()" }, { "name": "Microsoft.macOS!AppKit.NSView.DisplayIfNeeded()" }, { "name": "?!?" }, { "name": "Microsoft.macOS!ObjCRuntime.Runtime.bridge_runtime_invoke_method(value class MonoObject*,value class MonoObject*,int,int*)" }, { "name": "Microsoft.macOS!ObjCRuntime.Runtime.InvokeMethod(value class MonoObject*,value class MonoObject*,int)" }, { "name": "Microsoft.macOS!ObjCRuntime.Runtime.InvokeMethod(class System.Reflection.MethodBase,class System.Object,int)" }, { "name": "System.Private.CoreLib!System.Reflection.RuntimeMethodInfo.Invoke(class System.Object,value class System.Reflection.BindingFlags,class System.Reflection.Binder,class System.Object[],class System.Globalization.CultureInfo)" }, { "name": "System.Private.CoreLib!System.Reflection.MethodBaseInvoker.InvokeWithOneArg(class System.Object,value class System.Reflection.BindingFlags,class System.Reflection.Binder,class System.Object[],class System.Globalization.CultureInfo)" }, { "name": "System.Private.CoreLib!dynamicClass.InvokeStub_SKGLView.DrawRect(class System.Object,pMT: 0x128792e50\u003cclass System.Object\u003e)" }, { "name": "SkiaSharp.Views.Mac!SkiaSharp.Views.Mac.SKGLView.DrawRect(value class CoreGraphics.CGRect)" }, { "name": "SkiaSharp.Views.Mac!SkiaSharp.Views.Mac.SKGLView.RenderFrame()" }, { "name": "SkiaSharp!SkiaSharp.GRContext.Flush(class SkiaSharp.SKSurface)" }, { "name": "UNMANAGED_CODE_TIME" }, { "name": "Microsoft.macOS!AppKit.NSOpenGLContext.FlushBuffer()" }, { "name": "Microsoft.macOS!AppKit.NSApplication.NextEvent(value class AppKit.NSEventMask,class Foundation.NSDate,class Foundation.NSString,bool)" }, { "name": "SkiaSharp.Views.Mac!SkiaSharp.Views.Mac.SKGLView.OnPaintSurface(class SkiaSharp.Views.Mac.SKPaintGLSurfaceEventArgs)" }, { "name": "SkiaSharpSample!SkiaSharpSample.ViewController.OnPaintSurface(class System.Object,class SkiaSharp.Views.Mac.SKPaintGLSurfaceEventArgs)" }, { "name": "SkiaSharpSample!SkiaSharpSample.MotionMarkScene.Render(class SkiaSharp.SKCanvas,float32,float32)" }, { "name": "SkiaSharp!SkiaSharp.SKCanvas.DrawPath(class SkiaSharp.SKPath,class SkiaSharp.SKPaint)" }, { "name": "SkiaSharp!SkiaSharp.SKPath.CubicTo(value class SkiaSharp.SKPoint,value class SkiaSharp.SKPoint,value class SkiaSharp.SKPoint)" }, { "name": "SkiaSharp!SkiaSharp.SKPath.Reset()" }, { "name": "Microsoft.macOS!AppKit.NSView.set_NeedsDisplay(bool)" }, { "name": "SkiaSharp!SkiaSharp.SKPath.QuadTo(value class SkiaSharp.SKPoint,value class SkiaSharp.SKPoint)" }, { "name": "SkiaSharp!SkiaSharp.SKPath.MoveTo(value class SkiaSharp.SKPoint)" }, { "name": "Microsoft.macOS!AppKit.NSOpenGLView.get_OpenGLContext()" }, { "name": "SkiaSharp!SkiaSharp.SKPath.LineTo(value class SkiaSharp.SKPoint)" }, { "name": "Microsoft.macOS!ObjCRuntime.Runtime.get_method_and_object_for_selector(int,int,int8,int,int*,int,int*)" }, { "name": "Microsoft.macOS!ObjCRuntime.Runtime.GetMethodAndObjectForSelector(int,int,int8,int,int*,int)" }, { "name": "Microsoft.macOS!Registrar.DynamicRegistrar.GetMethodDescriptionAndObject(class System.Type,int,bool,int,int\u0026,int)" }, { "name": "System.Private.CoreLib!System.Reflection.CustomAttribute.IsCustomAttributeDefined(class System.Reflection.RuntimeModule,int32,class System.RuntimeType,int32,bool)" }, { "name": "SkiaSharp.Views.Mac!SkiaSharp.Views.Mac.SKPaintGLSurfaceEventArgs..ctor(class SkiaSharp.SKSurface,class SkiaSharp.GRBackendRenderTarget,value class SkiaSharp.GRSurfaceOrigin,value class SkiaSharp.SKColorType)" }, { "name": "SkiaSharp!SkiaSharp.GRBackendRenderTarget.get_Width()" }, { "name": "SkiaSharp!SkiaSharp.SKPaint.set_Color(value class SkiaSharp.SKColor)" }, { "name": "Microsoft.macOS!Registrar.Registrar+ObjCMethod.WriteUnmanagedDescription(int,class System.Reflection.MethodBase)" }, { "name": "Microsoft.macOS!AppKit.NSView.get_Window()" }, { "name": "SkiaSharp!SkiaSharp.SKCanvas.DrawRect(value class SkiaSharp.SKRect,class SkiaSharp.SKPaint)" }, { "name": "Microsoft.macOS!AppKit.NSWindow.set_Title(class System.String)" }, { "name": "Microsoft.macOS!AppKit.NSApplication.NextEvent(value class AppKit.NSEventMask,class Foundation.NSDate,value class Foundation.NSRunLoopMode,bool)" }, { "name": "Microsoft.macOS!Foundation.NSRunLoopModeExtensions.GetConstant(value class Foundation.NSRunLoopMode)" }, { "name": "Microsoft.macOS!ObjCRuntime.Runtime.TryGetNSObject(int,bool)" }, { "name": "Microsoft.macOS!AppKit.NSView.DrawRect(value class CoreGraphics.CGRect)" }, { "name": "Microsoft.macOS!AppKit.NSWindow.get_BackingScaleFactor()" }, { "name": "System.Private.CoreLib!System.Diagnostics.Stopwatch.get_Elapsed()" }, { "name": "SkiaSharp!SkiaSharp.SKPaint.set_StrokeWidth(float32)" }, { "name": "Microsoft.macOS!AppKit.NSWindow.get_IsVisible()" }, { "name": "SkiaSharp!SkiaSharp.SKAutoCanvasRestore..ctor(class SkiaSharp.SKCanvas,bool)" }, { "name": "SkiaSharp!SkiaSharp.SKCanvas.get_SaveCount()" }] }, "profiles": [ { "type": "evented", "name": "Thread (30700815)", "unit": "milliseconds", "startValue": 0.273959, "endValue": 10050.380250671753, "events": [ { "type": "O", "frame": 0, "at": 0.273959 }, { "type": "O", "frame": 1, "at": 0.273959 }, { "type": "O", "frame": 2, "at": 0.273959 }, { "type": "O", "frame": 3, "at": 0.273959 }, { "type": "O", "frame": 4, "at": 0.273959 }, { "type": "O", "frame": 5, "at": 0.273959 }, { "type": "O", "frame": 6, "at": 0.273959 }, { "type": "O", "frame": 7, "at": 0.273959 }, { "type": "O", "frame": 8, "at": 0.273959 }, { "type": "O", "frame": 9, "at": 0.273959 }, { "type": "O", "frame": 10, "at": 0.273959 }, { "type": "O", "frame": 11, "at": 0.273959 }, { "type": "O", "frame": 12, "at": 0.273959 }, { "type": "O", "frame": 13, "at": 0.273959 }, { "type": "O", "frame": 14, "at": 0.273959 }, { "type": "O", "frame": 15, "at": 0.273959 }, { "type": "O", "frame": 16, "at": 0.273959 }, { "type": "O", "frame": 17, "at": 0.273959 }, { "type": "O", "frame": 18, "at": 0.273959 }, { "type": "C", "frame": 18, "at": 1.6858340095367432 }, { "type": "C", "frame": 17, "at": 1.6858340095367432 }, { "type": "O", "frame": 19, "at": 1.6858340095367432 }, { "type": "O", "frame": 18, "at": 1.6858340095367432 }, { "type": "C", "frame": 18, "at": 5.780791828521728 }, { "type": "C", "frame": 19, "at": 5.780791828521728 }, { "type": "C", "frame": 16, "at": 5.78079207647705 }, { "type": "C", "frame": 15, "at": 5.78079207647705 }, { "type": "C", "frame": 14, "at": 5.78079207647705 }, { "type": "C", "frame": 13, "at": 5.78079207647705 }, { "type": "C", "frame": 12, "at": 5.78079207647705 }, { "type": "C", "frame": 11, "at": 5.78079207647705 }, { "type": "C", "frame": 10, "at": 5.78079207647705 }, { "type": "C", "frame": 9, "at": 5.78079207647705 }, { "type": "C", "frame": 8, "at": 5.78079207647705 }, { "type": "C", "frame": 7, "at": 5.78079207647705 }, { "type": "C", "frame": 6, "at": 5.78079207647705 }, { "type": "O", "frame": 20, "at": 5.78079207647705 }, { "type": "O", "frame": 8, "at": 5.78079207647705 }, { "type": "O", "frame": 9, "at": 5.78079207647705 }, { "type": "O", "frame": 10, "at": 5.78079207647705 }, { "type": "O", "frame": 11, "at": 5.78079207647705 }, { "type": "O", "frame": 12, "at": 5.78079207647705 }, { "type": "O", "frame": 13, "at": 5.78079207647705 }, { "type": "O", "frame": 14, "at": 5.78079207647705 }, { "type": "O", "frame": 15, "at": 5.78079207647705 }, { "type": "O", "frame": 16, "at": 5.78079207647705 }, { "type": "O", "frame": 21, "at": 5.78079207647705 }, { "type": "O", "frame": 22, "at": 5.78079207647705 }, { "type": "O", "frame": 23, "at": 5.78079207647705 }, { "type": "O", "frame": 24, "at": 5.78079207647705 }, { "type": "O", "frame": 18, "at": 5.78079207647705 }, { "type": "C", "frame": 18, "at": 7.136958958808899 }, { "type": "C", "frame": 24, "at": 7.136958958808899 }, { "type": "O", "frame": 25, "at": 7.136959 }, { "type": "O", "frame": 18, "at": 7.136959 }, { "type": "C", "frame": 18, "at": 8.477958960899354 }, { "type": "C", "frame": 25, "at": 8.477958960899354 }, { "type": "O", "frame": 26, "at": 8.477959 }, { "type": "O", "frame": 18, "at": 8.477959 }, { "type": "C", "frame": 18, "at": 9.834166966804505 }, { "type": "C", "frame": 26, "at": 9.834166966804505 }, { "type": "O", "frame": 24, "at": 9.834167 }, { "type": "O", "frame": 18, "at": 9.834167 }, { "type": "C", "frame": 18, "at": 15.314667221252442 }, { "type": "C", "frame": 24, "at": 15.314667221252442 }, { "type": "C", "frame": 23, "at": 15.314667221252442 }, { "type": "C", "frame": 22, "at": 15.314667221252442 }, { "type": "C", "frame": 21, "at": 15.314667221252442 }, { "type": "O", "frame": 17, "at": 15.314667221252442 }, { "type": "O", "frame": 18, "at": 15.314667221252442 }, { "type": "C", "frame": 18, "at": 20.851292385284424 }, { "type": "C", "frame": 17, "at": 20.851292385284424 }, { "type": "O", "frame": 19, "at": 20.851292385284424 }, { "type": "O", "frame": 18, "at": 20.851292385284424 }, { "type": "C", "frame": 18, "at": 28.967375145141602 }, { "type": "C", "frame": 19, "at": 28.967375145141602 }, { "type": "C", "frame": 16, "at": 28.967375145141602 }, { "type": "C", "frame": 15, "at": 28.967375145141602 }, { "type": "C", "frame": 14, "at": 28.967375145141602 }, { "type": "C", "frame": 13, "at": 28.967375145141602 }, { "type": "C", "frame": 12, "at": 28.967375145141602 }, { "type": "C", "frame": 11, "at": 28.967375145141602 }, { "type": "C", "frame": 10, "at": 28.967375145141602 }, { "type": "C", "frame": 9, "at": 28.967375145141602 }, { "type": "C", "frame": 8, "at": 28.967375145141602 }, { "type": "C", "frame": 20, "at": 28.967375145141602 }, { "type": "O", "frame": 6, "at": 28.967375145141602 }, { "type": "O", "frame": 27, "at": 28.967375145141602 }, { "type": "O", "frame": 18, "at": 28.967375145141602 }, { "type": "C", "frame": 18, "at": 30.332666953086854 }, { "type": "C", "frame": 27, "at": 30.332666953086854 }, { "type": "O", "frame": 7, "at": 30.332667 }, { "type": "O", "frame": 8, "at": 30.332667 }, { "type": "O", "frame": 9, "at": 30.332667 }, { "type": "O", "frame": 10, "at": 30.332667 }, { "type": "O", "frame": 11, "at": 30.332667 }, { "type": "O", "frame": 12, "at": 30.332667 }, { "type": "O", "frame": 13, "at": 30.332667 }, { "type": "O", "frame": 14, "at": 30.332667 }, { "type": "O", "frame": 15, "at": 30.332667 }, { "type": "O", "frame": 16, "at": 30.332667 }, { "type": "O", "frame": 21, "at": 30.332667 }, { "type": "O", "frame": 22, "at": 30.332667 }, { "type": "O", "frame": 23, "at": 30.332667 }, { "type": "O", "frame": 24, "at": 30.332667 }, { "type": "O", "frame": 18, "at": 30.332667 }, { "type": "C", "frame": 18, "at": 38.43933356494141 }, { "type": "C", "frame": 24, "at": 38.43933356494141 }, { "type": "C", "frame": 23, "at": 38.43933356494141 }, { "type": "C", "frame": 22, "at": 38.43933356494141 }, { "type": "C", "frame": 21, "at": 38.43933356494141 }, { "type": "O", "frame": 17, "at": 38.439334 }, { "type": "O", "frame": 18, "at": 38.439334 }, { "type": "C", "frame": 18, "at": 43.93779190863037 }, { "type": "C", "frame": 17, "at": 43.93779190863037 }, { "type": "O", "frame": 19, "at": 43.937792 }, { "type": "O", "frame": 18, "at": 43.937792 }, { "type": "C", "frame": 18, "at": 47.95075004977417 }, { "type": "C", "frame": 19, "at": 47.95075004977417 }, { "type": "C", "frame": 16, "at": 47.95075004977417 }, { "type": "C", "frame": 15, "at": 47.95075004977417 }, { "type": "C", "frame": 14, "at": 47.95075004977417 }, { "type": "C", "frame": 13, "at": 47.95075004977417 }, { "type": "C", "frame": 12, "at": 47.95075004977417 }, { "type": "C", "frame": 11, "at": 47.95075004977417 }, { "type": "C", "frame": 10, "at": 47.95075004977417 }, { "type": "C", "frame": 9, "at": 47.95075004977417 }, { "type": "C", "frame": 8, "at": 47.95075004977417 }, { "type": "C", "frame": 7, "at": 47.95075004977417 }, { "type": "C", "frame": 6, "at": 47.95075004977417 }, { "type": "O", "frame": 20, "at": 47.95075004977417 }, { "type": "O", "frame": 8, "at": 47.95075004977417 }, { "type": "O", "frame": 9, "at": 47.95075004977417 }, { "type": "O", "frame": 10, "at": 47.95075004977417 }, { "type": "O", "frame": 11, "at": 47.95075004977417 }, { "type": "O", "frame": 12, "at": 47.95075004977417 }, { "type": "O", "frame": 13, "at": 47.95075004977417 }, { "type": "O", "frame": 14, "at": 47.95075004977417 }, { "type": "O", "frame": 15, "at": 47.95075004977417 }, { "type": "O", "frame": 16, "at": 47.95075004977417 }, { "type": "O", "frame": 21, "at": 47.95075004977417 }, { "type": "O", "frame": 22, "at": 47.95075004977417 }, { "type": "O", "frame": 23, "at": 47.95075004977417 }, { "type": "O", "frame": 24, "at": 47.95075004977417 }, { "type": "O", "frame": 18, "at": 47.95075004977417 }, { "type": "C", "frame": 18, "at": 56.02625048828125 }, { "type": "C", "frame": 24, "at": 56.02625048828125 }, { "type": "C", "frame": 23, "at": 56.02625048828125 }, { "type": "C", "frame": 22, "at": 56.02625048828125 }, { "type": "C", "frame": 21, "at": 56.02625048828125 }, { "type": "O", "frame": 17, "at": 56.02625048828125 }, { "type": "O", "frame": 18, "at": 56.02625048828125 }, { "type": "C", "frame": 18, "at": 61.603375072479245 }, { "type": "C", "frame": 17, "at": 61.603375072479245 }, { "type": "O", "frame": 19, "at": 61.603375072479245 }, { "type": "O", "frame": 18, "at": 61.603375072479245 }, { "type": "C", "frame": 18, "at": 68.30004219436645 }, { "type": "C", "frame": 19, "at": 68.30004219436645 }, { "type": "C", "frame": 16, "at": 68.30004219436645 }, { "type": "C", "frame": 15, "at": 68.30004219436645 }, { "type": "C", "frame": 14, "at": 68.30004219436645 }, { "type": "C", "frame": 13, "at": 68.30004219436645 }, { "type": "C", "frame": 12, "at": 68.30004219436645 }, { "type": "C", "frame": 11, "at": 68.30004219436645 }, { "type": "C", "frame": 10, "at": 68.30004219436645 }, { "type": "C", "frame": 9, "at": 68.30004219436645 }, { "type": "C", "frame": 8, "at": 68.30004219436645 }, { "type": "O", "frame": 18, "at": 68.30004219436645 }, { "type": "C", "frame": 18, "at": 70.7673340703888 }, { "type": "C", "frame": 20, "at": 70.7673340703888 }, { "type": "O", "frame": 6, "at": 70.7673340703888 }, { "type": "O", "frame": 7, "at": 70.7673340703888 }, { "type": "O", "frame": 8, "at": 70.7673340703888 }, { "type": "O", "frame": 9, "at": 70.7673340703888 }, { "type": "O", "frame": 10, "at": 70.7673340703888 }, { "type": "O", "frame": 11, "at": 70.7673340703888 }, { "type": "O", "frame": 12, "at": 70.7673340703888 }, { "type": "O", "frame": 13, "at": 70.7673340703888 }, { "type": "O", "frame": 14, "at": 70.7673340703888 }, { "type": "O", "frame": 15, "at": 70.7673340703888 }, { "type": "O", "frame": 16, "at": 70.7673340703888 }, { "type": "O", "frame": 21, "at": 70.7673340703888 }, { "type": "O", "frame": 22, "at": 70.7673340703888 }, { "type": "O", "frame": 23, "at": 70.7673340703888 }, { "type": "O", "frame": 24, "at": 70.7673340703888 }, { "type": "O", "frame": 18, "at": 70.7673340703888 }, { "type": "C", "frame": 18, "at": 80.24591638220215 }, { "type": "C", "frame": 24, "at": 80.24591638220215 }, { "type": "C", "frame": 23, "at": 80.24591638220215 }, { "type": "C", "frame": 22, "at": 80.24591638220215 }, { "type": "C", "frame": 21, "at": 80.24591638220215 }, { "type": "O", "frame": 17, "at": 80.245917 }, { "type": "O", "frame": 18, "at": 80.245917 }, { "type": "C", "frame": 18, "at": 85.85116688174439 }, { "type": "C", "frame": 17, "at": 85.85116688174439 }, { "type": "O", "frame": 19, "at": 85.851167 }, { "type": "O", "frame": 18, "at": 85.851167 }, { "type": "C", "frame": 18, "at": 88.58820895022583 }, { "type": "C", "frame": 19, "at": 88.58820895022583 }, { "type": "C", "frame": 16, "at": 88.58820895022583 }, { "type": "C", "frame": 15, "at": 88.58820895022583 }, { "type": "C", "frame": 14, "at": 88.58820895022583 }, { "type": "C", "frame": 13, "at": 88.58820895022583 }, { "type": "C", "frame": 12, "at": 88.58820895022583 }, { "type": "C", "frame": 11, "at": 88.58820895022583 }, { "type": "C", "frame": 10, "at": 88.58820895022583 }, { "type": "C", "frame": 9, "at": 88.58820895022583 }, { "type": "C", "frame": 8, "at": 88.58820895022583 }, { "type": "C", "frame": 7, "at": 88.58820895022583 }, { "type": "C", "frame": 6, "at": 88.58820895022583 }, { "type": "O", "frame": 20, "at": 88.588209 }, { "type": "O", "frame": 8, "at": 88.588209 }, { "type": "O", "frame": 9, "at": 88.588209 }, { "type": "O", "frame": 10, "at": 88.588209 }, { "type": "O", "frame": 11, "at": 88.588209 }, { "type": "O", "frame": 12, "at": 88.588209 }, { "type": "O", "frame": 13, "at": 88.588209 }, { "type": "O", "frame": 14, "at": 88.588209 }, { "type": "O", "frame": 15, "at": 88.588209 }, { "type": "O", "frame": 16, "at": 88.588209 }, { "type": "O", "frame": 21, "at": 88.588209 }, { "type": "O", "frame": 22, "at": 88.588209 }, { "type": "O", "frame": 23, "at": 88.588209 }, { "type": "O", "frame": 24, "at": 88.588209 }, { "type": "O", "frame": 18, "at": 88.588209 }, { "type": "C", "frame": 18, "at": 93.97366699255372 }, { "type": "C", "frame": 24, "at": 93.97366699255372 }, { "type": "O", "frame": 28, "at": 93.973667 }, { "type": "O", "frame": 18, "at": 93.973667 }, { "type": "C", "frame": 18, "at": 95.32220897502137 }, { "type": "C", "frame": 28, "at": 95.32220897502137 }, { "type": "O", "frame": 24, "at": 95.322209 }, { "type": "O", "frame": 18, "at": 95.322209 }, { "type": "C", "frame": 18, "at": 98.01650011480713 }, { "type": "C", "frame": 24, "at": 98.01650011480713 }, { "type": "C", "frame": 23, "at": 98.01650032080079 }, { "type": "C", "frame": 22, "at": 98.01650032080079 }, { "type": "C", "frame": 21, "at": 98.01650032080079 }, { "type": "O", "frame": 17, "at": 98.01650032080079 }, { "type": "O", "frame": 18, "at": 98.01650032080079 }, { "type": "C", "frame": 18, "at": 102.18462515258788 }, { "type": "C", "frame": 17, "at": 102.18462515258788 }, { "type": "O", "frame": 19, "at": 102.18462515258788 }, { "type": "O", "frame": 18, "at": 102.18462515258788 }, { "type": "C", "frame": 18, "at": 110.25624975585937 }, { "type": "C", "frame": 19, "at": 110.25624975585937 }, { "type": "C", "frame": 16, "at": 110.25625022924805 }, { "type": "C", "frame": 15, "at": 110.25625022924805 }, { "type": "C", "frame": 14, "at": 110.25625022924805 }, { "type": "C", "frame": 13, "at": 110.25625022924805 }, { "type": "C", "frame": 12, "at": 110.25625022924805 }, { "type": "C", "frame": 11, "at": 110.25625022924805 }, { "type": "C", "frame": 10, "at": 110.25625022924805 }, { "type": "C", "frame": 9, "at": 110.25625022924805 }, { "type": "C", "frame": 8, "at": 110.25625022924805 }, { "type": "C", "frame": 20, "at": 110.25625022924805 }, { "type": "O", "frame": 6, "at": 110.25625022924805 }, { "type": "O", "frame": 7, "at": 110.25625022924805 }, { "type": "O", "frame": 8, "at": 110.25625022924805 }, { "type": "O", "frame": 9, "at": 110.25625022924805 }, { "type": "O", "frame": 10, "at": 110.25625022924805 }, { "type": "O", "frame": 11, "at": 110.25625022924805 }, { "type": "O", "frame": 12, "at": 110.25625022924805 }, { "type": "O", "frame": 13, "at": 110.25625022924805 }, { "type": "O", "frame": 14, "at": 110.25625022924805 }, { "type": "O", "frame": 15, "at": 110.25625022924805 }, { "type": "O", "frame": 16, "at": 110.25625022924805 }, { "type": "O", "frame": 21, "at": 110.25625022924805 }, { "type": "O", "frame": 22, "at": 110.25625022924805 }, { "type": "O", "frame": 23, "at": 110.25625022924805 }, { "type": "O", "frame": 25, "at": 110.25625022924805 }, { "type": "O", "frame": 18, "at": 110.25625022924805 }, { "type": "C", "frame": 18, "at": 111.60004196166992 }, { "type": "C", "frame": 25, "at": 111.60004196166992 }, { "type": "O", "frame": 24, "at": 111.600042 }, { "type": "O", "frame": 18, "at": 111.600042 }, { "type": "C", "frame": 18, "at": 114.29412497538758 }, { "type": "C", "frame": 24, "at": 114.29412497538758 }, { "type": "O", "frame": 29, "at": 114.294125 }, { "type": "O", "frame": 18, "at": 114.294125 }, { "type": "C", "frame": 18, "at": 115.63570896720886 }, { "type": "C", "frame": 29, "at": 115.63570896720886 }, { "type": "O", "frame": 26, "at": 115.635709 }, { "type": "O", "frame": 18, "at": 115.635709 }, { "type": "C", "frame": 18, "at": 116.98020894564057 }, { "type": "C", "frame": 26, "at": 116.98020894564057 }, { "type": "O", "frame": 24, "at": 116.980209 }, { "type": "O", "frame": 18, "at": 116.980209 }, { "type": "C", "frame": 18, "at": 119.68566692579651 }, { "type": "C", "frame": 24, "at": 119.68566692579651 }, { "type": "C", "frame": 23, "at": 119.68566692579651 }, { "type": "C", "frame": 22, "at": 119.68566692579651 }, { "type": "C", "frame": 21, "at": 119.68566692579651 }, { "type": "O", "frame": 17, "at": 119.685667 }, { "type": "O", "frame": 18, "at": 119.685667 }, { "type": "C", "frame": 18, "at": 129.49258419055175 }, { "type": "C", "frame": 17, "at": 129.49258419055175 }, { "type": "O", "frame": 19, "at": 129.49258419055175 }, { "type": "O", "frame": 18, "at": 129.49258419055175 }, { "type": "C", "frame": 18, "at": 130.87554205454254 }, { "type": "C", "frame": 19, "at": 130.87554205454254 }, { "type": "C", "frame": 16, "at": 130.87554205454254 }, { "type": "C", "frame": 15, "at": 130.87554205454254 }, { "type": "C", "frame": 14, "at": 130.87554205454254 }, { "type": "C", "frame": 13, "at": 130.87554205454254 }, { "type": "C", "frame": 12, "at": 130.87554205454254 }, { "type": "C", "frame": 11, "at": 130.87554205454254 }, { "type": "C", "frame": 10, "at": 130.87554205454254 }, { "type": "C", "frame": 9, "at": 130.87554205454254 }, { "type": "C", "frame": 8, "at": 130.87554205454254 }, { "type": "C", "frame": 7, "at": 130.87554205454254 }, { "type": "C", "frame": 6, "at": 130.87554205454254 }, { "type": "O", "frame": 20, "at": 130.87554205454254 }, { "type": "O", "frame": 8, "at": 130.87554205454254 }, { "type": "O", "frame": 9, "at": 130.87554205454254 }, { "type": "O", "frame": 10, "at": 130.87554205454254 }, { "type": "O", "frame": 11, "at": 130.87554205454254 }, { "type": "O", "frame": 12, "at": 130.87554205454254 }, { "type": "O", "frame": 13, "at": 130.87554205454254 }, { "type": "O", "frame": 14, "at": 130.87554205454254 }, { "type": "O", "frame": 15, "at": 130.87554205454254 }, { "type": "O", "frame": 16, "at": 130.87554205454254 }, { "type": "O", "frame": 21, "at": 130.87554205454254 }, { "type": "O", "frame": 22, "at": 130.87554205454254 }, { "type": "O", "frame": 23, "at": 130.87554205454254 }, { "type": "O", "frame": 24, "at": 130.87554205454254 }, { "type": "O", "frame": 18, "at": 130.87554205454254 }, { "type": "C", "frame": 18, "at": 140.33795960253906 }, { "type": "C", "frame": 24, "at": 140.33795960253906 }, { "type": "C", "frame": 23, "at": 140.33795960253906 }, { "type": "C", "frame": 22, "at": 140.33795960253906 }, { "type": "C", "frame": 21, "at": 140.33795960253906 }, { "type": "O", "frame": 17, "at": 140.33795960253906 }, { "type": "O", "frame": 18, "at": 140.33795960253906 }, { "type": "C", "frame": 18, "at": 146.05183381689454 }, { "type": "C", "frame": 17, "at": 146.05183381689454 }, { "type": "O", "frame": 19, "at": 146.051834 }, { "type": "O", "frame": 18, "at": 146.051834 }, { "type": "C", "frame": 18, "at": 155.41200054968263 }, { "type": "C", "frame": 19, "at": 155.41200054968263 }, { "type": "C", "frame": 16, "at": 155.41200287646484 }, { "type": "C", "frame": 15, "at": 155.41200287646484 }, { "type": "C", "frame": 14, "at": 155.41200287646484 }, { "type": "C", "frame": 13, "at": 155.41200287646484 }, { "type": "C", "frame": 12, "at": 155.41200287646484 }, { "type": "C", "frame": 11, "at": 155.41200287646484 }, { "type": "C", "frame": 10, "at": 155.41200287646484 }, { "type": "C", "frame": 9, "at": 155.41200287646484 }, { "type": "C", "frame": 8, "at": 155.41200287646484 }, { "type": "C", "frame": 20, "at": 155.41200287646484 }, { "type": "O", "frame": 6, "at": 155.41200287646484 }, { "type": "O", "frame": 7, "at": 155.41200287646484 }, { "type": "O", "frame": 8, "at": 155.41200287646484 }, { "type": "O", "frame": 9, "at": 155.41200287646484 }, { "type": "O", "frame": 10, "at": 155.41200287646484 }, { "type": "O", "frame": 11, "at": 155.41200287646484 }, { "type": "O", "frame": 12, "at": 155.41200287646484 }, { "type": "O", "frame": 13, "at": 155.41200287646484 }, { "type": "O", "frame": 14, "at": 155.41200287646484 }, { "type": "O", "frame": 15, "at": 155.41200287646484 }, { "type": "O", "frame": 16, "at": 155.41200287646484 }, { "type": "O", "frame": 21, "at": 155.41200287646484 }, { "type": "O", "frame": 22, "at": 155.41200287646484 }, { "type": "O", "frame": 23, "at": 155.41200287646484 }, { "type": "O", "frame": 24, "at": 155.41200287646484 }, { "type": "O", "frame": 18, "at": 155.41200287646484 }, { "type": "C", "frame": 18, "at": 164.85062438201905 }, { "type": "C", "frame": 24, "at": 164.85062438201905 }, { "type": "C", "frame": 23, "at": 164.85062438201905 }, { "type": "C", "frame": 22, "at": 164.85062438201905 }, { "type": "C", "frame": 21, "at": 164.85062438201905 }, { "type": "O", "frame": 17, "at": 164.850625 }, { "type": "O", "frame": 18, "at": 164.850625 }, { "type": "C", "frame": 18, "at": 170.35683389663697 }, { "type": "C", "frame": 17, "at": 170.35683389663697 }, { "type": "O", "frame": 19, "at": 170.356834 }, { "type": "O", "frame": 18, "at": 170.356834 }, { "type": "C", "frame": 18, "at": 172.83641702497863 }, { "type": "C", "frame": 19, "at": 172.83641702497863 }, { "type": "C", "frame": 16, "at": 172.83641702497863 }, { "type": "C", "frame": 15, "at": 172.83641702497863 }, { "type": "C", "frame": 14, "at": 172.83641702497863 }, { "type": "C", "frame": 13, "at": 172.83641702497863 }, { "type": "C", "frame": 12, "at": 172.83641702497863 }, { "type": "C", "frame": 11, "at": 172.83641702497863 }, { "type": "C", "frame": 10, "at": 172.83641702497863 }, { "type": "C", "frame": 9, "at": 172.83641702497863 }, { "type": "C", "frame": 8, "at": 172.83641702497863 }, { "type": "C", "frame": 7, "at": 172.83641702497863 }, { "type": "C", "frame": 6, "at": 172.83641702497863 }, { "type": "O", "frame": 20, "at": 172.83641702497863 }, { "type": "O", "frame": 8, "at": 172.83641702497863 }, { "type": "O", "frame": 9, "at": 172.83641702497863 }, { "type": "O", "frame": 10, "at": 172.83641702497863 }, { "type": "O", "frame": 11, "at": 172.83641702497863 }, { "type": "O", "frame": 12, "at": 172.83641702497863 }, { "type": "O", "frame": 13, "at": 172.83641702497863 }, { "type": "O", "frame": 14, "at": 172.83641702497863 }, { "type": "O", "frame": 15, "at": 172.83641702497863 }, { "type": "O", "frame": 16, "at": 172.83641702497863 }, { "type": "O", "frame": 21, "at": 172.83641702497863 }, { "type": "O", "frame": 22, "at": 172.83641702497863 }, { "type": "O", "frame": 23, "at": 172.83641702497863 }, { "type": "O", "frame": 24, "at": 172.83641702497863 }, { "type": "O", "frame": 18, "at": 172.83641702497863 }, { "type": "C", "frame": 18, "at": 182.24600009173585 }, { "type": "C", "frame": 24, "at": 182.24600009173585 }, { "type": "C", "frame": 23, "at": 182.24600009173585 }, { "type": "C", "frame": 22, "at": 182.24600009173585 }, { "type": "C", "frame": 21, "at": 182.24600009173585 }, { "type": "O", "frame": 17, "at": 182.24600009173585 }, { "type": "O", "frame": 18, "at": 182.24600009173585 }, { "type": "C", "frame": 18, "at": 186.39916677093507 }, { "type": "C", "frame": 17, "at": 186.39916677093507 }, { "type": "O", "frame": 19, "at": 186.399167 }, { "type": "O", "frame": 18, "at": 186.399167 }, { "type": "C", "frame": 18, "at": 194.38299983615113 }, { "type": "C", "frame": 19, "at": 194.38299983615113 }, { "type": "C", "frame": 16, "at": 194.38300208300782 }, { "type": "C", "frame": 15, "at": 194.38300208300782 }, { "type": "C", "frame": 14, "at": 194.38300208300782 }, { "type": "C", "frame": 13, "at": 194.38300208300782 }, { "type": "C", "frame": 12, "at": 194.38300208300782 }, { "type": "C", "frame": 11, "at": 194.38300208300782 }, { "type": "C", "frame": 10, "at": 194.38300208300782 }, { "type": "C", "frame": 9, "at": 194.38300208300782 }, { "type": "C", "frame": 8, "at": 194.38300208300782 }, { "type": "C", "frame": 20, "at": 194.38300208300782 }, { "type": "O", "frame": 6, "at": 194.38300208300782 }, { "type": "O", "frame": 7, "at": 194.38300208300782 }, { "type": "O", "frame": 8, "at": 194.38300208300782 }, { "type": "O", "frame": 9, "at": 194.38300208300782 }, { "type": "O", "frame": 10, "at": 194.38300208300782 }, { "type": "O", "frame": 11, "at": 194.38300208300782 }, { "type": "O", "frame": 12, "at": 194.38300208300782 }, { "type": "O", "frame": 13, "at": 194.38300208300782 }, { "type": "O", "frame": 14, "at": 194.38300208300782 }, { "type": "O", "frame": 15, "at": 194.38300208300782 }, { "type": "O", "frame": 16, "at": 194.38300208300782 }, { "type": "O", "frame": 21, "at": 194.38300208300782 }, { "type": "O", "frame": 22, "at": 194.38300208300782 }, { "type": "O", "frame": 23, "at": 194.38300208300782 }, { "type": "O", "frame": 24, "at": 194.38300208300782 }, { "type": "O", "frame": 18, "at": 194.38300208300782 }, { "type": "C", "frame": 18, "at": 199.74900017547608 }, { "type": "C", "frame": 24, "at": 199.74900017547608 }, { "type": "O", "frame": 28, "at": 199.74900017547608 }, { "type": "O", "frame": 18, "at": 199.74900017547608 }, { "type": "C", "frame": 18, "at": 201.0892919769287 }, { "type": "C", "frame": 28, "at": 201.0892919769287 }, { "type": "O", "frame": 24, "at": 201.089292 }, { "type": "O", "frame": 18, "at": 201.089292 }, { "type": "C", "frame": 18, "at": 202.44441695040894 }, { "type": "C", "frame": 24, "at": 202.44441695040894 }, { "type": "C", "frame": 23, "at": 202.44441695040894 }, { "type": "C", "frame": 22, "at": 202.44441695040894 }, { "type": "C", "frame": 21, "at": 202.44441695040894 }, { "type": "O", "frame": 17, "at": 202.444417 }, { "type": "O", "frame": 18, "at": 202.444417 }, { "type": "C", "frame": 18, "at": 207.92937564868163 }, { "type": "C", "frame": 17, "at": 207.92937564868163 }, { "type": "O", "frame": 19, "at": 207.92937564868163 }, { "type": "O", "frame": 18, "at": 207.92937564868163 }, { "type": "C", "frame": 18, "at": 214.60504228591918 }, { "type": "C", "frame": 19, "at": 214.60504228591918 }, { "type": "C", "frame": 16, "at": 214.60504228591918 }, { "type": "C", "frame": 15, "at": 214.60504228591918 }, { "type": "C", "frame": 14, "at": 214.60504228591918 }, { "type": "C", "frame": 13, "at": 214.60504228591918 }, { "type": "C", "frame": 12, "at": 214.60504228591918 }, { "type": "C", "frame": 11, "at": 214.60504228591918 }, { "type": "C", "frame": 10, "at": 214.60504228591918 }, { "type": "C", "frame": 9, "at": 214.60504228591918 }, { "type": "C", "frame": 8, "at": 214.60504228591918 }, { "type": "O", "frame": 18, "at": 214.60504228591918 }, { "type": "C", "frame": 18, "at": 215.95904197234344 }, { "type": "C", "frame": 7, "at": 215.95904217529298 }, { "type": "C", "frame": 6, "at": 215.95904217529298 }, { "type": "O", "frame": 20, "at": 215.95904217529298 }, { "type": "O", "frame": 8, "at": 215.95904217529298 }, { "type": "O", "frame": 9, "at": 215.95904217529298 }, { "type": "O", "frame": 10, "at": 215.95904217529298 }, { "type": "O", "frame": 11, "at": 215.95904217529298 }, { "type": "O", "frame": 12, "at": 215.95904217529298 }, { "type": "O", "frame": 13, "at": 215.95904217529298 }, { "type": "O", "frame": 14, "at": 215.95904217529298 }, { "type": "O", "frame": 15, "at": 215.95904217529298 }, { "type": "O", "frame": 16, "at": 215.95904217529298 }, { "type": "O", "frame": 21, "at": 215.95904217529298 }, { "type": "O", "frame": 22, "at": 215.95904217529298 }, { "type": "O", "frame": 23, "at": 215.95904217529298 }, { "type": "O", "frame": 24, "at": 215.95904217529298 }, { "type": "O", "frame": 18, "at": 215.95904217529298 }, { "type": "C", "frame": 18, "at": 224.07129137438966 }, { "type": "C", "frame": 24, "at": 224.07129137438966 }, { "type": "O", "frame": 29, "at": 224.071292 }, { "type": "O", "frame": 18, "at": 224.071292 }, { "type": "C", "frame": 18, "at": 225.45837505358887 }, { "type": "C", "frame": 29, "at": 225.45837505358887 }, { "type": "C", "frame": 23, "at": 225.45837505358887 }, { "type": "C", "frame": 22, "at": 225.45837505358887 }, { "type": "C", "frame": 21, "at": 225.45837505358887 }, { "type": "O", "frame": 17, "at": 225.45837505358887 }, { "type": "O", "frame": 18, "at": 225.45837505358887 }, { "type": "C", "frame": 18, "at": 231.11550047302245 }, { "type": "C", "frame": 17, "at": 231.11550047302245 }, { "type": "O", "frame": 19, "at": 231.11550047302245 }, { "type": "O", "frame": 18, "at": 231.11550047302245 }, { "type": "C", "frame": 18, "at": 232.46229198265075 }, { "type": "C", "frame": 19, "at": 232.46229198265075 }, { "type": "C", "frame": 16, "at": 232.46229212207032 }, { "type": "C", "frame": 15, "at": 232.46229212207032 }, { "type": "C", "frame": 14, "at": 232.46229212207032 }, { "type": "C", "frame": 13, "at": 232.46229212207032 }, { "type": "C", "frame": 12, "at": 232.46229212207032 }, { "type": "C", "frame": 11, "at": 232.46229212207032 }, { "type": "C", "frame": 10, "at": 232.46229212207032 }, { "type": "C", "frame": 9, "at": 232.46229212207032 }, { "type": "C", "frame": 8, "at": 232.46229212207032 }, { "type": "C", "frame": 20, "at": 232.46229212207032 }, { "type": "O", "frame": 6, "at": 232.46229212207032 }, { "type": "O", "frame": 7, "at": 232.46229212207032 }, { "type": "O", "frame": 8, "at": 232.46229212207032 }, { "type": "O", "frame": 9, "at": 232.46229212207032 }, { "type": "O", "frame": 10, "at": 232.46229212207032 }, { "type": "O", "frame": 11, "at": 232.46229212207032 }, { "type": "O", "frame": 12, "at": 232.46229212207032 }, { "type": "O", "frame": 13, "at": 232.46229212207032 }, { "type": "O", "frame": 14, "at": 232.46229212207032 }, { "type": "O", "frame": 15, "at": 232.46229212207032 }, { "type": "O", "frame": 16, "at": 232.46229212207032 }, { "type": "O", "frame": 21, "at": 232.46229212207032 }, { "type": "O", "frame": 22, "at": 232.46229212207032 }, { "type": "O", "frame": 23, "at": 232.46229212207032 }, { "type": "O", "frame": 24, "at": 232.46229212207032 }, { "type": "O", "frame": 18, "at": 232.46229212207032 }, { "type": "C", "frame": 18, "at": 241.89195851916503 }, { "type": "C", "frame": 24, "at": 241.89195851916503 }, { "type": "C", "frame": 23, "at": 241.89195851916503 }, { "type": "C", "frame": 22, "at": 241.89195851916503 }, { "type": "C", "frame": 21, "at": 241.89195851916503 }, { "type": "O", "frame": 17, "at": 241.891959 }, { "type": "O", "frame": 18, "at": 241.891959 }, { "type": "C", "frame": 18, "at": 246.12016706503297 }, { "type": "C", "frame": 17, "at": 246.12016706503297 }, { "type": "O", "frame": 30, "at": 246.12016706503297 }, { "type": "O", "frame": 18, "at": 246.12016706503297 }, { "type": "C", "frame": 18, "at": 247.458417041008 }, { "type": "C", "frame": 30, "at": 247.458417041008 }, { "type": "O", "frame": 19, "at": 247.458417041008 }, { "type": "O", "frame": 18, "at": 247.458417041008 }, { "type": "C", "frame": 18, "at": 254.22512537402343 }, { "type": "C", "frame": 19, "at": 254.22512537402343 }, { "type": "C", "frame": 16, "at": 254.22512537402343 }, { "type": "C", "frame": 15, "at": 254.22512537402343 }, { "type": "C", "frame": 14, "at": 254.22512537402343 }, { "type": "C", "frame": 13, "at": 254.22512537402343 }, { "type": "C", "frame": 12, "at": 254.22512537402343 }, { "type": "C", "frame": 11, "at": 254.22512537402343 }, { "type": "C", "frame": 10, "at": 254.22512537402343 }, { "type": "C", "frame": 9, "at": 254.22512537402343 }, { "type": "C", "frame": 8, "at": 254.22512537402343 }, { "type": "C", "frame": 7, "at": 254.22512537402343 }, { "type": "C", "frame": 6, "at": 254.22512537402343 }, { "type": "O", "frame": 20, "at": 254.22512537402343 }, { "type": "O", "frame": 8, "at": 254.22512537402343 }, { "type": "O", "frame": 9, "at": 254.22512537402343 }, { "type": "O", "frame": 10, "at": 254.22512537402343 }, { "type": "O", "frame": 11, "at": 254.22512537402343 }, { "type": "O", "frame": 12, "at": 254.22512537402343 }, { "type": "O", "frame": 13, "at": 254.22512537402343 }, { "type": "O", "frame": 14, "at": 254.22512537402343 }, { "type": "O", "frame": 15, "at": 254.22512537402343 }, { "type": "O", "frame": 16, "at": 254.22512537402343 }, { "type": "O", "frame": 21, "at": 254.22512537402343 }, { "type": "O", "frame": 22, "at": 254.22512537402343 }, { "type": "O", "frame": 23, "at": 254.22512537402343 }, { "type": "O", "frame": 25, "at": 254.22512537402343 }, { "type": "O", "frame": 18, "at": 254.22512537402343 }, { "type": "C", "frame": 18, "at": 255.57162503910064 }, { "type": "C", "frame": 25, "at": 255.57162503910064 }, { "type": "O", "frame": 24, "at": 255.57162503910064 }, { "type": "O", "frame": 18, "at": 255.57162503910064 }, { "type": "C", "frame": 18, "at": 263.68795896148686 }, { "type": "C", "frame": 24, "at": 263.68795896148686 }, { "type": "C", "frame": 23, "at": 263.68795896148686 }, { "type": "C", "frame": 22, "at": 263.68795896148686 }, { "type": "C", "frame": 21, "at": 263.68795896148686 }, { "type": "O", "frame": 17, "at": 263.687959 }, { "type": "O", "frame": 18, "at": 263.687959 }, { "type": "C", "frame": 18, "at": 267.7858751262512 }, { "type": "C", "frame": 17, "at": 267.7858751262512 }, { "type": "O", "frame": 19, "at": 267.7858751262512 }, { "type": "O", "frame": 18, "at": 267.7858751262512 }, { "type": "C", "frame": 18, "at": 270.48979202651975 }, { "type": "C", "frame": 19, "at": 270.48979202651975 }, { "type": "C", "frame": 16, "at": 270.48979202651975 }, { "type": "C", "frame": 15, "at": 270.48979202651975 }, { "type": "C", "frame": 14, "at": 270.48979202651975 }, { "type": "C", "frame": 13, "at": 270.48979202651975 }, { "type": "C", "frame": 12, "at": 270.48979202651975 }, { "type": "C", "frame": 11, "at": 270.48979202651975 }, { "type": "C", "frame": 10, "at": 270.48979202651975 }, { "type": "C", "frame": 9, "at": 270.48979202651975 }, { "type": "C", "frame": 8, "at": 270.48979202651975 }, { "type": "C", "frame": 20, "at": 270.48979202651975 }, { "type": "O", "frame": 6, "at": 270.48979202651975 }, { "type": "O", "frame": 7, "at": 270.48979202651975 }, { "type": "O", "frame": 18, "at": 270.48979202651975 }, { "type": "C", "frame": 18, "at": 272.03300000304415 }, { "type": "O", "frame": 8, "at": 272.03300000304415 }, { "type": "O", "frame": 9, "at": 272.03300000304415 }, { "type": "O", "frame": 10, "at": 272.03300000304415 }, { "type": "O", "frame": 11, "at": 272.03300000304415 }, { "type": "O", "frame": 12, "at": 272.03300000304415 }, { "type": "O", "frame": 13, "at": 272.03300000304415 }, { "type": "O", "frame": 14, "at": 272.03300000304415 }, { "type": "O", "frame": 15, "at": 272.03300000304415 }, { "type": "O", "frame": 16, "at": 272.03300000304415 }, { "type": "O", "frame": 21, "at": 272.03300000304415 }, { "type": "O", "frame": 22, "at": 272.03300000304415 }, { "type": "O", "frame": 23, "at": 272.03300000304415 }, { "type": "O", "frame": 31, "at": 272.03300000304415 }, { "type": "O", "frame": 18, "at": 272.03300000304415 }, { "type": "C", "frame": 18, "at": 273.3775420265198 }, { "type": "C", "frame": 31, "at": 273.3775420265198 }, { "type": "O", "frame": 24, "at": 273.3775420265198 }, { "type": "O", "frame": 18, "at": 273.3775420265198 }, { "type": "C", "frame": 18, "at": 276.06949995059205 }, { "type": "C", "frame": 24, "at": 276.06949995059205 }, { "type": "O", "frame": 29, "at": 276.0695 }, { "type": "O", "frame": 18, "at": 276.0695 }, { "type": "C", "frame": 18, "at": 277.42324999046326 }, { "type": "C", "frame": 29, "at": 277.42324999046326 }, { "type": "O", "frame": 24, "at": 277.42325 }, { "type": "O", "frame": 18, "at": 277.42325 }, { "type": "C", "frame": 18, "at": 280.1447918815613 }, { "type": "C", "frame": 24, "at": 280.1447918815613 }, { "type": "C", "frame": 23, "at": 280.1447925643921 }, { "type": "C", "frame": 22, "at": 280.1447925643921 }, { "type": "C", "frame": 21, "at": 280.1447925643921 }, { "type": "O", "frame": 17, "at": 280.1447925643921 }, { "type": "O", "frame": 18, "at": 280.1447925643921 }, { "type": "C", "frame": 18, "at": 285.5273751413269 }, { "type": "C", "frame": 17, "at": 285.5273751413269 }, { "type": "O", "frame": 19, "at": 285.5273751413269 }, { "type": "O", "frame": 18, "at": 285.5273751413269 }, { "type": "C", "frame": 18, "at": 296.35679222869874 }, { "type": "C", "frame": 19, "at": 296.35679222869874 }, { "type": "C", "frame": 16, "at": 296.3567934112549 }, { "type": "C", "frame": 15, "at": 296.3567934112549 }, { "type": "C", "frame": 14, "at": 296.3567934112549 }, { "type": "C", "frame": 13, "at": 296.3567934112549 }, { "type": "C", "frame": 12, "at": 296.3567934112549 }, { "type": "C", "frame": 11, "at": 296.3567934112549 }, { "type": "C", "frame": 10, "at": 296.3567934112549 }, { "type": "C", "frame": 9, "at": 296.3567934112549 }, { "type": "C", "frame": 8, "at": 296.3567934112549 }, { "type": "C", "frame": 7, "at": 296.35679448718264 }, { "type": "C", "frame": 6, "at": 296.35679448718264 }, { "type": "O", "frame": 20, "at": 296.35679448718264 }, { "type": "O", "frame": 8, "at": 296.35679448718264 }, { "type": "O", "frame": 9, "at": 296.35679448718264 }, { "type": "O", "frame": 10, "at": 296.35679448718264 }, { "type": "O", "frame": 11, "at": 296.35679448718264 }, { "type": "O", "frame": 12, "at": 296.35679448718264 }, { "type": "O", "frame": 13, "at": 296.35679448718264 }, { "type": "O", "frame": 14, "at": 296.35679448718264 }, { "type": "O", "frame": 15, "at": 296.35679448718264 }, { "type": "O", "frame": 16, "at": 296.35679448718264 }, { "type": "O", "frame": 21, "at": 296.35679448718264 }, { "type": "O", "frame": 22, "at": 296.35679448718264 }, { "type": "O", "frame": 23, "at": 296.35679448718264 }, { "type": "O", "frame": 24, "at": 296.35679448718264 }, { "type": "O", "frame": 18, "at": 296.35679448718264 }, { "type": "C", "frame": 18, "at": 304.4540000230713 }, { "type": "C", "frame": 24, "at": 304.4540000230713 }, { "type": "C", "frame": 23, "at": 304.4540000230713 }, { "type": "C", "frame": 22, "at": 304.4540000230713 }, { "type": "C", "frame": 21, "at": 304.4540000230713 }, { "type": "O", "frame": 17, "at": 304.4540000230713 }, { "type": "O", "frame": 18, "at": 304.4540000230713 }, { "type": "C", "frame": 18, "at": 310.042791847229 }, { "type": "C", "frame": 17, "at": 310.042791847229 }, { "type": "O", "frame": 19, "at": 310.042792 }, { "type": "O", "frame": 18, "at": 310.042792 }, { "type": "C", "frame": 18, "at": 312.7716669217987 }, { "type": "C", "frame": 19, "at": 312.7716669217987 }, { "type": "C", "frame": 16, "at": 312.77166703051756 }, { "type": "C", "frame": 15, "at": 312.77166703051756 }, { "type": "C", "frame": 14, "at": 312.77166703051756 }, { "type": "C", "frame": 13, "at": 312.77166703051756 }, { "type": "C", "frame": 12, "at": 312.77166703051756 }, { "type": "C", "frame": 11, "at": 312.77166703051756 }, { "type": "C", "frame": 10, "at": 312.77166703051756 }, { "type": "C", "frame": 9, "at": 312.77166703051756 }, { "type": "C", "frame": 8, "at": 312.77166703051756 }, { "type": "C", "frame": 20, "at": 312.77166703051756 }, { "type": "O", "frame": 6, "at": 312.77166703051756 }, { "type": "O", "frame": 7, "at": 312.77166703051756 }, { "type": "O", "frame": 8, "at": 312.77166703051756 }, { "type": "O", "frame": 9, "at": 312.77166703051756 }, { "type": "O", "frame": 10, "at": 312.77166703051756 }, { "type": "O", "frame": 11, "at": 312.77166703051756 }, { "type": "O", "frame": 12, "at": 312.77166703051756 }, { "type": "O", "frame": 13, "at": 312.77166703051756 }, { "type": "O", "frame": 14, "at": 312.77166703051756 }, { "type": "O", "frame": 15, "at": 312.77166703051756 }, { "type": "O", "frame": 16, "at": 312.77166703051756 }, { "type": "O", "frame": 21, "at": 312.77166703051756 }, { "type": "O", "frame": 22, "at": 312.77166703051756 }, { "type": "O", "frame": 23, "at": 312.77166703051756 }, { "type": "O", "frame": 24, "at": 312.77166703051756 }, { "type": "O", "frame": 18, "at": 312.77166703051756 }, { "type": "C", "frame": 18, "at": 314.1178339683456 }, { "type": "C", "frame": 24, "at": 314.1178339683456 }, { "type": "O", "frame": 31, "at": 314.117834 }, { "type": "O", "frame": 18, "at": 314.117834 }, { "type": "C", "frame": 18, "at": 315.46341696203615 }, { "type": "C", "frame": 31, "at": 315.46341696203615 }, { "type": "O", "frame": 24, "at": 315.463417 }, { "type": "O", "frame": 18, "at": 315.463417 }, { "type": "C", "frame": 18, "at": 320.8503751222534 }, { "type": "C", "frame": 24, "at": 320.8503751222534 }, { "type": "C", "frame": 23, "at": 320.8503756486816 }, { "type": "C", "frame": 22, "at": 320.8503756486816 }, { "type": "C", "frame": 21, "at": 320.8503756486816 }, { "type": "O", "frame": 17, "at": 320.8503756486816 }, { "type": "O", "frame": 18, "at": 320.8503756486816 }, { "type": "C", "frame": 18, "at": 326.44525033569334 }, { "type": "C", "frame": 17, "at": 326.44525033569334 }, { "type": "O", "frame": 19, "at": 326.44525033569334 }, { "type": "O", "frame": 18, "at": 326.44525033569334 }, { "type": "C", "frame": 18, "at": 331.80829187774657 }, { "type": "C", "frame": 19, "at": 331.80829187774657 }, { "type": "C", "frame": 16, "at": 331.8082938157959 }, { "type": "C", "frame": 15, "at": 331.8082938157959 }, { "type": "C", "frame": 14, "at": 331.8082938157959 }, { "type": "C", "frame": 13, "at": 331.8082938157959 }, { "type": "C", "frame": 12, "at": 331.8082938157959 }, { "type": "C", "frame": 11, "at": 331.8082938157959 }, { "type": "C", "frame": 10, "at": 331.8082938157959 }, { "type": "C", "frame": 9, "at": 331.8082938157959 }, { "type": "C", "frame": 8, "at": 331.8082938157959 }, { "type": "C", "frame": 7, "at": 331.8082938157959 }, { "type": "C", "frame": 6, "at": 331.8082938157959 }, { "type": "O", "frame": 20, "at": 331.8082938157959 }, { "type": "O", "frame": 8, "at": 331.8082938157959 }, { "type": "O", "frame": 9, "at": 331.8082938157959 }, { "type": "O", "frame": 10, "at": 331.8082938157959 }, { "type": "O", "frame": 11, "at": 331.8082938157959 }, { "type": "O", "frame": 12, "at": 331.8082938157959 }, { "type": "O", "frame": 13, "at": 331.8082938157959 }, { "type": "O", "frame": 14, "at": 331.8082938157959 }, { "type": "O", "frame": 15, "at": 331.8082938157959 }, { "type": "O", "frame": 16, "at": 331.8082938157959 }, { "type": "O", "frame": 21, "at": 331.8082938157959 }, { "type": "O", "frame": 22, "at": 331.8082938157959 }, { "type": "O", "frame": 23, "at": 331.8082938157959 }, { "type": "O", "frame": 24, "at": 331.8082938157959 }, { "type": "O", "frame": 18, "at": 331.8082938157959 }, { "type": "C", "frame": 18, "at": 337.175958721344 }, { "type": "C", "frame": 24, "at": 337.175958721344 }, { "type": "O", "frame": 29, "at": 337.175959 }, { "type": "O", "frame": 18, "at": 337.175959 }, { "type": "C", "frame": 18, "at": 338.5172089427795 }, { "type": "C", "frame": 29, "at": 338.5172089427795 }, { "type": "O", "frame": 24, "at": 338.517209 }, { "type": "O", "frame": 18, "at": 338.517209 }, { "type": "C", "frame": 18, "at": 341.2177090114441 }, { "type": "C", "frame": 24, "at": 341.2177090114441 }, { "type": "C", "frame": 23, "at": 341.2177090114441 }, { "type": "C", "frame": 22, "at": 341.2177090114441 }, { "type": "C", "frame": 21, "at": 341.2177090114441 }, { "type": "O", "frame": 17, "at": 341.2177090114441 }, { "type": "O", "frame": 18, "at": 341.2177090114441 }, { "type": "C", "frame": 18, "at": 346.8282498668518 }, { "type": "C", "frame": 17, "at": 346.8282498668518 }, { "type": "C", "frame": 16, "at": 346.8282498668518 }, { "type": "C", "frame": 15, "at": 346.8282498668518 }, { "type": "C", "frame": 14, "at": 346.8282498668518 }, { "type": "C", "frame": 13, "at": 346.8282498668518 }, { "type": "C", "frame": 12, "at": 346.8282498668518 }, { "type": "C", "frame": 11, "at": 346.8282498668518 }, { "type": "C", "frame": 10, "at": 346.8282498668518 }, { "type": "C", "frame": 9, "at": 346.8282498668518 }, { "type": "C", "frame": 8, "at": 346.8282498668518 }, { "type": "O", "frame": 18, "at": 346.82825 }, { "type": "C", "frame": 18, "at": 348.1681669445038 }, { "type": "C", "frame": 20, "at": 348.1681669445038 }, { "type": "O", "frame": 6, "at": 348.168167 }, { "type": "O", "frame": 7, "at": 348.168167 }, { "type": "O", "frame": 8, "at": 348.168167 }, { "type": "O", "frame": 9, "at": 348.168167 }, { "type": "O", "frame": 10, "at": 348.168167 }, { "type": "O", "frame": 11, "at": 348.168167 }, { "type": "O", "frame": 12, "at": 348.168167 }, { "type": "O", "frame": 13, "at": 348.168167 }, { "type": "O", "frame": 14, "at": 348.168167 }, { "type": "O", "frame": 15, "at": 348.168167 }, { "type": "O", "frame": 16, "at": 348.168167 }, { "type": "O", "frame": 21, "at": 348.168167 }, { "type": "O", "frame": 22, "at": 348.168167 }, { "type": "O", "frame": 23, "at": 348.168167 }, { "type": "O", "frame": 24, "at": 348.168167 }, { "type": "O", "frame": 18, "at": 348.168167 }, { "type": "C", "frame": 18, "at": 356.25041664141844 }, { "type": "C", "frame": 24, "at": 356.25041664141844 }, { "type": "C", "frame": 23, "at": 356.25041664141844 }, { "type": "C", "frame": 22, "at": 356.25041664141844 }, { "type": "C", "frame": 21, "at": 356.25041664141844 }, { "type": "O", "frame": 17, "at": 356.250417 }, { "type": "O", "frame": 18, "at": 356.250417 }, { "type": "C", "frame": 18, "at": 361.75241685504153 }, { "type": "C", "frame": 17, "at": 361.75241685504153 }, { "type": "O", "frame": 19, "at": 361.752417 }, { "type": "O", "frame": 18, "at": 361.752417 }, { "type": "C", "frame": 18, "at": 368.43529215640257 }, { "type": "C", "frame": 19, "at": 368.43529215640257 }, { "type": "C", "frame": 16, "at": 368.43529215640257 }, { "type": "C", "frame": 15, "at": 368.43529215640257 }, { "type": "C", "frame": 14, "at": 368.43529215640257 }, { "type": "C", "frame": 13, "at": 368.43529215640257 }, { "type": "C", "frame": 12, "at": 368.43529215640257 }, { "type": "C", "frame": 11, "at": 368.43529215640257 }, { "type": "C", "frame": 10, "at": 368.43529215640257 }, { "type": "C", "frame": 9, "at": 368.43529215640257 }, { "type": "C", "frame": 8, "at": 368.43529215640257 }, { "type": "C", "frame": 7, "at": 368.43529215640257 }, { "type": "C", "frame": 6, "at": 368.43529215640257 }, { "type": "O", "frame": 20, "at": 368.43529215640257 }, { "type": "O", "frame": 8, "at": 368.43529215640257 }, { "type": "O", "frame": 9, "at": 368.43529215640257 }, { "type": "O", "frame": 10, "at": 368.43529215640257 }, { "type": "O", "frame": 11, "at": 368.43529215640257 }, { "type": "O", "frame": 12, "at": 368.43529215640257 }, { "type": "O", "frame": 13, "at": 368.43529215640257 }, { "type": "O", "frame": 14, "at": 368.43529215640257 }, { "type": "O", "frame": 15, "at": 368.43529215640257 }, { "type": "O", "frame": 16, "at": 368.43529215640257 }, { "type": "O", "frame": 21, "at": 368.43529215640257 }, { "type": "O", "frame": 22, "at": 368.43529215640257 }, { "type": "O", "frame": 23, "at": 368.43529215640257 }, { "type": "O", "frame": 24, "at": 368.43529215640257 }, { "type": "O", "frame": 18, "at": 368.43529215640257 }, { "type": "C", "frame": 18, "at": 369.77995895785523 }, { "type": "C", "frame": 24, "at": 369.77995895785523 }, { "type": "O", "frame": 31, "at": 369.779959 }, { "type": "O", "frame": 18, "at": 369.779959 }, { "type": "C", "frame": 18, "at": 371.1251249679413 }, { "type": "C", "frame": 31, "at": 371.1251249679413 }, { "type": "O", "frame": 24, "at": 371.125125 }, { "type": "O", "frame": 18, "at": 371.125125 }, { "type": "C", "frame": 18, "at": 372.4623339862824 }, { "type": "C", "frame": 24, "at": 372.4623339862824 }, { "type": "O", "frame": 26, "at": 372.462334 }, { "type": "O", "frame": 18, "at": 372.462334 }, { "type": "C", "frame": 18, "at": 373.8102089990463 }, { "type": "C", "frame": 26, "at": 373.8102089990463 }, { "type": "O", "frame": 31, "at": 373.810209 }, { "type": "O", "frame": 18, "at": 373.810209 }, { "type": "C", "frame": 18, "at": 375.1546250223007 }, { "type": "C", "frame": 31, "at": 375.1546250223007 }, { "type": "O", "frame": 28, "at": 375.1546250223007 }, { "type": "O", "frame": 18, "at": 375.1546250223007 }, { "type": "C", "frame": 18, "at": 376.49499994659425 }, { "type": "C", "frame": 28, "at": 376.49499994659425 }, { "type": "O", "frame": 24, "at": 376.495 }, { "type": "O", "frame": 18, "at": 376.495 }, { "type": "C", "frame": 18, "at": 377.8505419445038 }, { "type": "C", "frame": 24, "at": 377.8505419445038 }, { "type": "C", "frame": 23, "at": 377.8505419445038 }, { "type": "C", "frame": 22, "at": 377.8505419445038 }, { "type": "C", "frame": 21, "at": 377.8505419445038 }, { "type": "O", "frame": 17, "at": 377.850542 }, { "type": "O", "frame": 18, "at": 377.850542 }, { "type": "C", "frame": 18, "at": 383.7202500612183 }, { "type": "C", "frame": 17, "at": 383.7202500612183 }, { "type": "O", "frame": 19, "at": 383.7202500612183 }, { "type": "O", "frame": 18, "at": 383.7202500612183 }, { "type": "C", "frame": 18, "at": 393.12358366394045 }, { "type": "C", "frame": 19, "at": 393.12358366394045 }, { "type": "C", "frame": 16, "at": 393.12358366394045 }, { "type": "C", "frame": 15, "at": 393.12358366394045 }, { "type": "C", "frame": 14, "at": 393.12358366394045 }, { "type": "C", "frame": 13, "at": 393.12358366394045 }, { "type": "C", "frame": 12, "at": 393.12358366394045 }, { "type": "C", "frame": 11, "at": 393.12358366394045 }, { "type": "C", "frame": 10, "at": 393.12358366394045 }, { "type": "C", "frame": 9, "at": 393.12358366394045 }, { "type": "C", "frame": 8, "at": 393.12358366394045 }, { "type": "C", "frame": 20, "at": 393.12358366394045 }, { "type": "O", "frame": 6, "at": 393.123584 }, { "type": "O", "frame": 7, "at": 393.123584 }, { "type": "O", "frame": 8, "at": 393.123584 }, { "type": "O", "frame": 9, "at": 393.123584 }, { "type": "O", "frame": 10, "at": 393.123584 }, { "type": "O", "frame": 11, "at": 393.123584 }, { "type": "O", "frame": 12, "at": 393.123584 }, { "type": "O", "frame": 13, "at": 393.123584 }, { "type": "O", "frame": 14, "at": 393.123584 }, { "type": "O", "frame": 15, "at": 393.123584 }, { "type": "O", "frame": 16, "at": 393.123584 }, { "type": "O", "frame": 21, "at": 393.123584 }, { "type": "O", "frame": 22, "at": 393.123584 }, { "type": "O", "frame": 23, "at": 393.123584 }, { "type": "O", "frame": 24, "at": 393.123584 }, { "type": "O", "frame": 18, "at": 393.123584 }, { "type": "C", "frame": 18, "at": 401.2034589923706 }, { "type": "C", "frame": 24, "at": 401.2034589923706 }, { "type": "O", "frame": 29, "at": 401.203459 }, { "type": "O", "frame": 18, "at": 401.203459 }, { "type": "C", "frame": 18, "at": 402.5753340476837 }, { "type": "C", "frame": 29, "at": 402.5753340476837 }, { "type": "C", "frame": 23, "at": 402.5753340476837 }, { "type": "C", "frame": 22, "at": 402.5753340476837 }, { "type": "C", "frame": 21, "at": 402.5753340476837 }, { "type": "O", "frame": 17, "at": 402.5753340476837 }, { "type": "O", "frame": 18, "at": 402.5753340476837 }, { "type": "C", "frame": 18, "at": 406.68112509191894 }, { "type": "C", "frame": 17, "at": 406.68112509191894 }, { "type": "O", "frame": 19, "at": 406.68112509191894 }, { "type": "O", "frame": 18, "at": 406.68112509191894 }, { "type": "C", "frame": 18, "at": 408.02725000667573 }, { "type": "C", "frame": 19, "at": 408.02725000667573 }, { "type": "C", "frame": 16, "at": 408.02725000667573 }, { "type": "C", "frame": 15, "at": 408.02725000667573 }, { "type": "C", "frame": 14, "at": 408.02725000667573 }, { "type": "C", "frame": 13, "at": 408.02725000667573 }, { "type": "C", "frame": 12, "at": 408.02725000667573 }, { "type": "C", "frame": 11, "at": 408.02725000667573 }, { "type": "C", "frame": 10, "at": 408.02725000667573 }, { "type": "C", "frame": 9, "at": 408.02725000667573 }, { "type": "C", "frame": 8, "at": 408.02725000667573 }, { "type": "C", "frame": 7, "at": 408.02725000667573 }, { "type": "C", "frame": 6, "at": 408.02725000667573 }, { "type": "O", "frame": 20, "at": 408.02725000667573 }, { "type": "O", "frame": 8, "at": 408.02725000667573 }, { "type": "O", "frame": 32, "at": 408.02725000667573 }, { "type": "O", "frame": 33, "at": 408.02725000667573 }, { "type": "O", "frame": 34, "at": 408.02725000667573 }, { "type": "O", "frame": 35, "at": 408.02725000667573 }, { "type": "O", "frame": 18, "at": 408.02725000667573 }, { "type": "C", "frame": 18, "at": 409.3747499666214 }, { "type": "C", "frame": 35, "at": 409.3747499666214 }, { "type": "C", "frame": 34, "at": 409.3747499666214 }, { "type": "C", "frame": 33, "at": 409.3747499666214 }, { "type": "C", "frame": 32, "at": 409.3747499666214 }, { "type": "O", "frame": 9, "at": 409.37475 }, { "type": "O", "frame": 10, "at": 409.37475 }, { "type": "O", "frame": 11, "at": 409.37475 }, { "type": "O", "frame": 12, "at": 409.37475 }, { "type": "O", "frame": 13, "at": 409.37475 }, { "type": "O", "frame": 14, "at": 409.37475 }, { "type": "O", "frame": 15, "at": 409.37475 }, { "type": "O", "frame": 16, "at": 409.37475 }, { "type": "O", "frame": 21, "at": 409.37475 }, { "type": "O", "frame": 22, "at": 409.37475 }, { "type": "O", "frame": 23, "at": 409.37475 }, { "type": "O", "frame": 28, "at": 409.37475 }, { "type": "O", "frame": 18, "at": 409.37475 }, { "type": "C", "frame": 18, "at": 410.72608397579194 }, { "type": "C", "frame": 28, "at": 410.72608397579194 }, { "type": "O", "frame": 24, "at": 410.726084 }, { "type": "O", "frame": 18, "at": 410.726084 }, { "type": "C", "frame": 18, "at": 417.52737498892213 }, { "type": "C", "frame": 24, "at": 417.52737498892213 }, { "type": "C", "frame": 23, "at": 417.52737508392335 }, { "type": "C", "frame": 22, "at": 417.52737508392335 }, { "type": "C", "frame": 21, "at": 417.52737508392335 }, { "type": "O", "frame": 17, "at": 417.52737508392335 }, { "type": "O", "frame": 18, "at": 417.52737508392335 }, { "type": "C", "frame": 18, "at": 423.0947086982727 }, { "type": "C", "frame": 17, "at": 423.0947086982727 }, { "type": "O", "frame": 19, "at": 423.094709 }, { "type": "O", "frame": 18, "at": 423.094709 }, { "type": "C", "frame": 18, "at": 429.77104195059206 }, { "type": "C", "frame": 19, "at": 429.77104195059206 }, { "type": "C", "frame": 16, "at": 429.7710436401367 }, { "type": "C", "frame": 15, "at": 429.7710436401367 }, { "type": "C", "frame": 14, "at": 429.7710436401367 }, { "type": "C", "frame": 13, "at": 429.7710436401367 }, { "type": "C", "frame": 12, "at": 429.7710436401367 }, { "type": "C", "frame": 11, "at": 429.7710436401367 }, { "type": "C", "frame": 10, "at": 429.7710436401367 }, { "type": "C", "frame": 9, "at": 429.7710436401367 }, { "type": "C", "frame": 8, "at": 429.7710436401367 }, { "type": "C", "frame": 20, "at": 429.7710436401367 }, { "type": "O", "frame": 6, "at": 429.7710436401367 }, { "type": "O", "frame": 7, "at": 429.7710436401367 }, { "type": "O", "frame": 8, "at": 429.7710436401367 }, { "type": "O", "frame": 9, "at": 429.7710436401367 }, { "type": "O", "frame": 10, "at": 429.7710436401367 }, { "type": "O", "frame": 11, "at": 429.7710436401367 }, { "type": "O", "frame": 12, "at": 429.7710436401367 }, { "type": "O", "frame": 13, "at": 429.7710436401367 }, { "type": "O", "frame": 14, "at": 429.7710436401367 }, { "type": "O", "frame": 15, "at": 429.7710436401367 }, { "type": "O", "frame": 16, "at": 429.7710436401367 }, { "type": "O", "frame": 21, "at": 429.7710436401367 }, { "type": "O", "frame": 22, "at": 429.7710436401367 }, { "type": "O", "frame": 23, "at": 429.7710436401367 }, { "type": "O", "frame": 24, "at": 429.7710436401367 }, { "type": "O", "frame": 18, "at": 429.7710436401367 }, { "type": "C", "frame": 18, "at": 439.20583451861575 }, { "type": "C", "frame": 24, "at": 439.20583451861575 }, { "type": "C", "frame": 23, "at": 439.20583451861575 }, { "type": "C", "frame": 22, "at": 439.20583451861575 }, { "type": "C", "frame": 21, "at": 439.20583451861575 }, { "type": "O", "frame": 17, "at": 439.20583451861575 }, { "type": "O", "frame": 18, "at": 439.20583451861575 }, { "type": "C", "frame": 18, "at": 443.3465000079956 }, { "type": "C", "frame": 17, "at": 443.3465000079956 }, { "type": "O", "frame": 19, "at": 443.3465000079956 }, { "type": "O", "frame": 18, "at": 443.3465000079956 }, { "type": "C", "frame": 18, "at": 451.3728338088989 }, { "type": "C", "frame": 19, "at": 451.3728338088989 }, { "type": "C", "frame": 16, "at": 451.3728352891846 }, { "type": "C", "frame": 15, "at": 451.3728352891846 }, { "type": "C", "frame": 14, "at": 451.3728352891846 }, { "type": "C", "frame": 13, "at": 451.3728352891846 }, { "type": "C", "frame": 12, "at": 451.3728352891846 }, { "type": "C", "frame": 11, "at": 451.3728352891846 }, { "type": "C", "frame": 10, "at": 451.3728352891846 }, { "type": "C", "frame": 9, "at": 451.3728352891846 }, { "type": "C", "frame": 8, "at": 451.3728352891846 }, { "type": "C", "frame": 7, "at": 451.3728352891846 }, { "type": "C", "frame": 6, "at": 451.3728352891846 }, { "type": "O", "frame": 20, "at": 451.3728352891846 }, { "type": "O", "frame": 8, "at": 451.3728352891846 }, { "type": "O", "frame": 9, "at": 451.3728352891846 }, { "type": "O", "frame": 10, "at": 451.3728352891846 }, { "type": "O", "frame": 11, "at": 451.3728352891846 }, { "type": "O", "frame": 12, "at": 451.3728352891846 }, { "type": "O", "frame": 13, "at": 451.3728352891846 }, { "type": "O", "frame": 14, "at": 451.3728352891846 }, { "type": "O", "frame": 15, "at": 451.3728352891846 }, { "type": "O", "frame": 16, "at": 451.3728352891846 }, { "type": "O", "frame": 21, "at": 451.3728352891846 }, { "type": "O", "frame": 22, "at": 451.3728352891846 }, { "type": "O", "frame": 23, "at": 451.3728352891846 }, { "type": "O", "frame": 24, "at": 451.3728352891846 }, { "type": "O", "frame": 18, "at": 451.3728352891846 }, { "type": "C", "frame": 18, "at": 458.1139171451416 }, { "type": "C", "frame": 24, "at": 458.1139171451416 }, { "type": "O", "frame": 26, "at": 458.1139171451416 }, { "type": "O", "frame": 18, "at": 458.1139171451416 }, { "type": "C", "frame": 18, "at": 459.46325004786684 }, { "type": "C", "frame": 26, "at": 459.46325004786684 }, { "type": "O", "frame": 24, "at": 459.46325004786684 }, { "type": "O", "frame": 18, "at": 459.46325004786684 }, { "type": "C", "frame": 18, "at": 460.826917011261 }, { "type": "C", "frame": 24, "at": 460.826917011261 }, { "type": "C", "frame": 23, "at": 460.826917011261 }, { "type": "C", "frame": 22, "at": 460.826917011261 }, { "type": "C", "frame": 21, "at": 460.826917011261 }, { "type": "O", "frame": 17, "at": 460.826917011261 }, { "type": "O", "frame": 18, "at": 460.826917011261 }, { "type": "C", "frame": 18, "at": 465.08429176348875 }, { "type": "C", "frame": 17, "at": 465.08429176348875 }, { "type": "O", "frame": 19, "at": 465.084292 }, { "type": "O", "frame": 18, "at": 465.084292 }, { "type": "C", "frame": 18, "at": 466.41837496108246 }, { "type": "C", "frame": 19, "at": 466.41837496108246 }, { "type": "C", "frame": 16, "at": 466.41837496108246 }, { "type": "C", "frame": 15, "at": 466.41837496108246 }, { "type": "C", "frame": 14, "at": 466.41837496108246 }, { "type": "C", "frame": 13, "at": 466.41837496108246 }, { "type": "C", "frame": 12, "at": 466.41837496108246 }, { "type": "C", "frame": 11, "at": 466.41837496108246 }, { "type": "C", "frame": 10, "at": 466.41837496108246 }, { "type": "C", "frame": 9, "at": 466.41837496108246 }, { "type": "C", "frame": 8, "at": 466.41837496108246 }, { "type": "C", "frame": 20, "at": 466.41837496108246 }, { "type": "O", "frame": 6, "at": 466.418375 }, { "type": "O", "frame": 7, "at": 466.418375 }, { "type": "O", "frame": 8, "at": 466.418375 }, { "type": "O", "frame": 9, "at": 466.418375 }, { "type": "O", "frame": 10, "at": 466.418375 }, { "type": "O", "frame": 11, "at": 466.418375 }, { "type": "O", "frame": 12, "at": 466.418375 }, { "type": "O", "frame": 13, "at": 466.418375 }, { "type": "O", "frame": 14, "at": 466.418375 }, { "type": "O", "frame": 15, "at": 466.418375 }, { "type": "O", "frame": 16, "at": 466.418375 }, { "type": "O", "frame": 21, "at": 466.418375 }, { "type": "O", "frame": 22, "at": 466.418375 }, { "type": "O", "frame": 23, "at": 466.418375 }, { "type": "O", "frame": 24, "at": 466.418375 }, { "type": "O", "frame": 18, "at": 466.418375 }, { "type": "C", "frame": 18, "at": 469.1110000457764 }, { "type": "C", "frame": 24, "at": 469.1110000457764 }, { "type": "O", "frame": 25, "at": 469.1110000457764 }, { "type": "O", "frame": 18, "at": 469.1110000457764 }, { "type": "C", "frame": 18, "at": 470.4536669836044 }, { "type": "C", "frame": 25, "at": 470.4536669836044 }, { "type": "O", "frame": 24, "at": 470.453667 }, { "type": "O", "frame": 18, "at": 470.453667 }, { "type": "C", "frame": 18, "at": 475.83637507266235 }, { "type": "C", "frame": 24, "at": 475.83637507266235 }, { "type": "C", "frame": 23, "at": 475.83637522125247 }, { "type": "C", "frame": 22, "at": 475.83637522125247 }, { "type": "C", "frame": 21, "at": 475.83637522125247 }, { "type": "O", "frame": 17, "at": 475.83637522125247 }, { "type": "O", "frame": 18, "at": 475.83637522125247 }, { "type": "C", "frame": 18, "at": 481.3599593658447 }, { "type": "C", "frame": 17, "at": 481.3599593658447 }, { "type": "O", "frame": 19, "at": 481.3599593658447 }, { "type": "O", "frame": 18, "at": 481.3599593658447 }, { "type": "C", "frame": 18, "at": 488.0289167102661 }, { "type": "C", "frame": 19, "at": 488.0289167102661 }, { "type": "C", "frame": 16, "at": 488.02891920471194 }, { "type": "C", "frame": 15, "at": 488.02891920471194 }, { "type": "C", "frame": 14, "at": 488.02891920471194 }, { "type": "C", "frame": 13, "at": 488.02891920471194 }, { "type": "C", "frame": 12, "at": 488.02891920471194 }, { "type": "C", "frame": 11, "at": 488.02891920471194 }, { "type": "C", "frame": 10, "at": 488.02891920471194 }, { "type": "C", "frame": 9, "at": 488.02891920471194 }, { "type": "C", "frame": 8, "at": 488.02891920471194 }, { "type": "C", "frame": 7, "at": 488.02891920471194 }, { "type": "C", "frame": 6, "at": 488.02891920471194 }, { "type": "O", "frame": 20, "at": 488.02891920471194 }, { "type": "O", "frame": 8, "at": 488.02891920471194 }, { "type": "O", "frame": 9, "at": 488.02891920471194 }, { "type": "O", "frame": 10, "at": 488.02891920471194 }, { "type": "O", "frame": 11, "at": 488.02891920471194 }, { "type": "O", "frame": 12, "at": 488.02891920471194 }, { "type": "O", "frame": 13, "at": 488.02891920471194 }, { "type": "O", "frame": 14, "at": 488.02891920471194 }, { "type": "O", "frame": 15, "at": 488.02891920471194 }, { "type": "O", "frame": 16, "at": 488.02891920471194 }, { "type": "O", "frame": 21, "at": 488.02891920471194 }, { "type": "O", "frame": 22, "at": 488.02891920471194 }, { "type": "O", "frame": 23, "at": 488.02891920471194 }, { "type": "O", "frame": 24, "at": 488.02891920471194 }, { "type": "O", "frame": 18, "at": 488.02891920471194 }, { "type": "C", "frame": 18, "at": 497.43637530535887 }, { "type": "C", "frame": 24, "at": 497.43637530535887 }, { "type": "C", "frame": 23, "at": 497.43637530535887 }, { "type": "C", "frame": 22, "at": 497.43637530535887 }, { "type": "C", "frame": 21, "at": 497.43637530535887 }, { "type": "O", "frame": 17, "at": 497.43637530535887 }, { "type": "O", "frame": 18, "at": 497.43637530535887 }, { "type": "C", "frame": 18, "at": 501.5714167137146 }, { "type": "C", "frame": 17, "at": 501.5714167137146 }, { "type": "O", "frame": 19, "at": 501.571417 }, { "type": "O", "frame": 18, "at": 501.571417 }, { "type": "C", "frame": 18, "at": 504.29320898265075 }, { "type": "C", "frame": 19, "at": 504.29320898265075 }, { "type": "C", "frame": 16, "at": 504.2932106706543 }, { "type": "C", "frame": 15, "at": 504.2932106706543 }, { "type": "C", "frame": 14, "at": 504.2932106706543 }, { "type": "C", "frame": 13, "at": 504.2932106706543 }, { "type": "C", "frame": 12, "at": 504.2932106706543 }, { "type": "C", "frame": 11, "at": 504.2932106706543 }, { "type": "C", "frame": 10, "at": 504.2932106706543 }, { "type": "C", "frame": 9, "at": 504.2932106706543 }, { "type": "C", "frame": 8, "at": 504.2932106706543 }, { "type": "C", "frame": 20, "at": 504.2932106706543 }, { "type": "O", "frame": 6, "at": 504.2932106706543 }, { "type": "O", "frame": 7, "at": 504.2932106706543 }, { "type": "O", "frame": 8, "at": 504.2932106706543 }, { "type": "O", "frame": 9, "at": 504.2932106706543 }, { "type": "O", "frame": 10, "at": 504.2932106706543 }, { "type": "O", "frame": 11, "at": 504.2932106706543 }, { "type": "O", "frame": 12, "at": 504.2932106706543 }, { "type": "O", "frame": 13, "at": 504.2932106706543 }, { "type": "O", "frame": 14, "at": 504.2932106706543 }, { "type": "O", "frame": 15, "at": 504.2932106706543 }, { "type": "O", "frame": 16, "at": 504.2932106706543 }, { "type": "O", "frame": 21, "at": 504.2932106706543 }, { "type": "O", "frame": 22, "at": 504.2932106706543 }, { "type": "O", "frame": 23, "at": 504.2932106706543 }, { "type": "O", "frame": 24, "at": 504.2932106706543 }, { "type": "O", "frame": 18, "at": 504.2932106706543 }, { "type": "C", "frame": 18, "at": 505.637499971756 }, { "type": "C", "frame": 24, "at": 505.637499971756 }, { "type": "O", "frame": 28, "at": 505.6375 }, { "type": "O", "frame": 18, "at": 505.6375 }, { "type": "C", "frame": 18, "at": 506.979000043869 }, { "type": "C", "frame": 28, "at": 506.979000043869 }, { "type": "O", "frame": 24, "at": 506.979000043869 }, { "type": "O", "frame": 18, "at": 506.979000043869 }, { "type": "C", "frame": 18, "at": 509.66404190444945 }, { "type": "C", "frame": 24, "at": 509.66404190444945 }, { "type": "O", "frame": 28, "at": 509.664042 }, { "type": "O", "frame": 18, "at": 509.664042 }, { "type": "C", "frame": 18, "at": 511.0032500068588 }, { "type": "C", "frame": 28, "at": 511.0032500068588 }, { "type": "O", "frame": 24, "at": 511.0032500068588 }, { "type": "O", "frame": 18, "at": 511.0032500068588 }, { "type": "C", "frame": 18, "at": 512.3517500133514 }, { "type": "C", "frame": 24, "at": 512.3517500133514 }, { "type": "C", "frame": 23, "at": 512.3517502979125 }, { "type": "C", "frame": 22, "at": 512.3517502979125 }, { "type": "C", "frame": 21, "at": 512.3517502979125 }, { "type": "O", "frame": 17, "at": 512.3517502979125 }, { "type": "O", "frame": 18, "at": 512.3517502979125 }, { "type": "C", "frame": 18, "at": 517.8427091674805 }, { "type": "C", "frame": 17, "at": 517.8427091674805 }, { "type": "O", "frame": 19, "at": 517.8427091674805 }, { "type": "O", "frame": 18, "at": 517.8427091674805 }, { "type": "C", "frame": 18, "at": 524.5499586414185 }, { "type": "C", "frame": 19, "at": 524.5499586414185 }, { "type": "C", "frame": 16, "at": 524.5499591068115 }, { "type": "C", "frame": 15, "at": 524.5499591068115 }, { "type": "C", "frame": 14, "at": 524.5499591068115 }, { "type": "C", "frame": 13, "at": 524.5499591068115 }, { "type": "C", "frame": 12, "at": 524.5499591068115 }, { "type": "C", "frame": 11, "at": 524.5499591068115 }, { "type": "C", "frame": 10, "at": 524.5499591068115 }, { "type": "C", "frame": 9, "at": 524.5499591068115 }, { "type": "C", "frame": 8, "at": 524.5499591068115 }, { "type": "C", "frame": 7, "at": 524.5499591068115 }, { "type": "C", "frame": 6, "at": 524.5499591068115 }, { "type": "O", "frame": 20, "at": 524.5499591068115 }, { "type": "O", "frame": 8, "at": 524.5499591068115 }, { "type": "O", "frame": 9, "at": 524.5499591068115 }, { "type": "O", "frame": 10, "at": 524.5499591068115 }, { "type": "O", "frame": 11, "at": 524.5499591068115 }, { "type": "O", "frame": 12, "at": 524.5499591068115 }, { "type": "O", "frame": 13, "at": 524.5499591068115 }, { "type": "O", "frame": 14, "at": 524.5499591068115 }, { "type": "O", "frame": 15, "at": 524.5499591068115 }, { "type": "O", "frame": 16, "at": 524.5499591068115 }, { "type": "O", "frame": 36, "at": 524.5499591068115 }, { "type": "O", "frame": 37, "at": 524.5499591068115 }, { "type": "O", "frame": 18, "at": 524.5499591068115 }, { "type": "C", "frame": 18, "at": 525.8905840476837 }, { "type": "C", "frame": 37, "at": 525.8905840476837 }, { "type": "C", "frame": 36, "at": 525.8905840476837 }, { "type": "O", "frame": 21, "at": 525.8905840476837 }, { "type": "O", "frame": 22, "at": 525.8905840476837 }, { "type": "O", "frame": 23, "at": 525.8905840476837 }, { "type": "O", "frame": 24, "at": 525.8905840476837 }, { "type": "O", "frame": 18, "at": 525.8905840476837 }, { "type": "C", "frame": 18, "at": 533.9804592212524 }, { "type": "C", "frame": 24, "at": 533.9804592212524 }, { "type": "C", "frame": 23, "at": 533.9804592212524 }, { "type": "C", "frame": 22, "at": 533.9804592212524 }, { "type": "C", "frame": 21, "at": 533.9804592212524 }, { "type": "O", "frame": 17, "at": 533.9804592212524 }, { "type": "O", "frame": 18, "at": 533.9804592212524 }, { "type": "C", "frame": 18, "at": 539.4919169200745 }, { "type": "C", "frame": 17, "at": 539.4919169200745 }, { "type": "O", "frame": 19, "at": 539.491917 }, { "type": "O", "frame": 18, "at": 539.491917 }, { "type": "C", "frame": 18, "at": 546.1746667482299 }, { "type": "C", "frame": 19, "at": 546.1746667482299 }, { "type": "C", "frame": 16, "at": 546.1746690830078 }, { "type": "C", "frame": 15, "at": 546.1746690830078 }, { "type": "C", "frame": 14, "at": 546.1746690830078 }, { "type": "C", "frame": 13, "at": 546.1746690830078 }, { "type": "C", "frame": 12, "at": 546.1746690830078 }, { "type": "C", "frame": 11, "at": 546.1746690830078 }, { "type": "C", "frame": 10, "at": 546.1746690830078 }, { "type": "C", "frame": 9, "at": 546.1746690830078 }, { "type": "C", "frame": 8, "at": 546.1746690830078 }, { "type": "C", "frame": 20, "at": 546.1746690830078 }, { "type": "O", "frame": 6, "at": 546.1746690830078 }, { "type": "O", "frame": 7, "at": 546.1746690830078 }, { "type": "O", "frame": 8, "at": 546.1746690830078 }, { "type": "O", "frame": 9, "at": 546.1746690830078 }, { "type": "O", "frame": 10, "at": 546.1746690830078 }, { "type": "O", "frame": 11, "at": 546.1746690830078 }, { "type": "O", "frame": 12, "at": 546.1746690830078 }, { "type": "O", "frame": 13, "at": 546.1746690830078 }, { "type": "O", "frame": 14, "at": 546.1746690830078 }, { "type": "O", "frame": 15, "at": 546.1746690830078 }, { "type": "O", "frame": 16, "at": 546.1746690830078 }, { "type": "O", "frame": 21, "at": 546.1746690830078 }, { "type": "O", "frame": 22, "at": 546.1746690830078 }, { "type": "O", "frame": 23, "at": 546.1746690830078 }, { "type": "O", "frame": 24, "at": 546.1746690830078 }, { "type": "O", "frame": 18, "at": 546.1746690830078 }, { "type": "C", "frame": 18, "at": 555.5975424043579 }, { "type": "C", "frame": 24, "at": 555.5975424043579 }, { "type": "C", "frame": 23, "at": 555.5975424043579 }, { "type": "C", "frame": 22, "at": 555.5975424043579 }, { "type": "C", "frame": 21, "at": 555.5975424043579 }, { "type": "O", "frame": 17, "at": 555.5975424043579 }, { "type": "O", "frame": 18, "at": 555.5975424043579 }, { "type": "C", "frame": 18, "at": 559.8436252595825 }, { "type": "C", "frame": 17, "at": 559.8436252595825 }, { "type": "O", "frame": 19, "at": 559.8436252595825 }, { "type": "O", "frame": 18, "at": 559.8436252595825 }, { "type": "C", "frame": 18, "at": 561.1926249771118 }, { "type": "C", "frame": 19, "at": 561.1926249771118 }, { "type": "C", "frame": 16, "at": 561.1926249771118 }, { "type": "C", "frame": 15, "at": 561.1926249771118 }, { "type": "C", "frame": 14, "at": 561.1926249771118 }, { "type": "C", "frame": 13, "at": 561.1926249771118 }, { "type": "C", "frame": 12, "at": 561.1926249771118 }, { "type": "C", "frame": 11, "at": 561.1926249771118 }, { "type": "C", "frame": 10, "at": 561.1926249771118 }, { "type": "C", "frame": 9, "at": 561.1926249771118 }, { "type": "C", "frame": 8, "at": 561.1926249771118 }, { "type": "C", "frame": 7, "at": 561.1926249771118 }, { "type": "C", "frame": 6, "at": 561.1926249771118 }, { "type": "O", "frame": 20, "at": 561.192625 }, { "type": "O", "frame": 8, "at": 561.192625 }, { "type": "O", "frame": 9, "at": 561.192625 }, { "type": "O", "frame": 10, "at": 561.192625 }, { "type": "O", "frame": 11, "at": 561.192625 }, { "type": "O", "frame": 12, "at": 561.192625 }, { "type": "O", "frame": 13, "at": 561.192625 }, { "type": "O", "frame": 14, "at": 561.192625 }, { "type": "O", "frame": 15, "at": 561.192625 }, { "type": "O", "frame": 16, "at": 561.192625 }, { "type": "O", "frame": 21, "at": 561.192625 }, { "type": "O", "frame": 22, "at": 561.192625 }, { "type": "O", "frame": 23, "at": 561.192625 }, { "type": "O", "frame": 24, "at": 561.192625 }, { "type": "O", "frame": 18, "at": 561.192625 }, { "type": "C", "frame": 18, "at": 570.6311254043579 }, { "type": "C", "frame": 24, "at": 570.6311254043579 }, { "type": "C", "frame": 23, "at": 570.6311254043579 }, { "type": "C", "frame": 22, "at": 570.6311254043579 }, { "type": "C", "frame": 21, "at": 570.6311254043579 }, { "type": "O", "frame": 17, "at": 570.6311254043579 }, { "type": "O", "frame": 18, "at": 570.6311254043579 }, { "type": "C", "frame": 18, "at": 574.771542098999 }, { "type": "C", "frame": 17, "at": 574.771542098999 }, { "type": "O", "frame": 19, "at": 574.771542098999 }, { "type": "O", "frame": 18, "at": 574.771542098999 }, { "type": "C", "frame": 18, "at": 582.7792915574951 }, { "type": "C", "frame": 19, "at": 582.7792915574951 }, { "type": "C", "frame": 16, "at": 582.7792930145264 }, { "type": "C", "frame": 15, "at": 582.7792930145264 }, { "type": "C", "frame": 14, "at": 582.7792930145264 }, { "type": "C", "frame": 13, "at": 582.7792930145264 }, { "type": "C", "frame": 12, "at": 582.7792930145264 }, { "type": "C", "frame": 11, "at": 582.7792930145264 }, { "type": "C", "frame": 10, "at": 582.7792930145264 }, { "type": "C", "frame": 9, "at": 582.7792930145264 }, { "type": "C", "frame": 8, "at": 582.7792930145264 }, { "type": "C", "frame": 20, "at": 582.7792930145264 }, { "type": "O", "frame": 6, "at": 582.7792930145264 }, { "type": "O", "frame": 7, "at": 582.7792930145264 }, { "type": "O", "frame": 8, "at": 582.7792930145264 }, { "type": "O", "frame": 9, "at": 582.7792930145264 }, { "type": "O", "frame": 10, "at": 582.7792930145264 }, { "type": "O", "frame": 11, "at": 582.7792930145264 }, { "type": "O", "frame": 12, "at": 582.7792930145264 }, { "type": "O", "frame": 13, "at": 582.7792930145264 }, { "type": "O", "frame": 14, "at": 582.7792930145264 }, { "type": "O", "frame": 15, "at": 582.7792930145264 }, { "type": "O", "frame": 16, "at": 582.7792930145264 }, { "type": "O", "frame": 21, "at": 582.7792930145264 }, { "type": "O", "frame": 22, "at": 582.7792930145264 }, { "type": "O", "frame": 23, "at": 582.7792930145264 }, { "type": "O", "frame": 24, "at": 582.7792930145264 }, { "type": "O", "frame": 18, "at": 582.7792930145264 }, { "type": "C", "frame": 18, "at": 592.2154997713013 }, { "type": "C", "frame": 24, "at": 592.2154997713013 }, { "type": "C", "frame": 23, "at": 592.2154997713013 }, { "type": "C", "frame": 22, "at": 592.2154997713013 }, { "type": "C", "frame": 21, "at": 592.2154997713013 }, { "type": "O", "frame": 17, "at": 592.2155 }, { "type": "O", "frame": 18, "at": 592.2155 }, { "type": "C", "frame": 18, "at": 597.7887922554016 }, { "type": "C", "frame": 17, "at": 597.7887922554016 }, { "type": "O", "frame": 19, "at": 597.7887922554016 }, { "type": "O", "frame": 18, "at": 597.7887922554016 }, { "type": "C", "frame": 18, "at": 599.1251250364227 }, { "type": "C", "frame": 19, "at": 599.1251250364227 }, { "type": "C", "frame": 16, "at": 599.1251250364227 }, { "type": "C", "frame": 15, "at": 599.1251250364227 }, { "type": "C", "frame": 14, "at": 599.1251250364227 }, { "type": "C", "frame": 13, "at": 599.1251250364227 }, { "type": "C", "frame": 12, "at": 599.1251250364227 }, { "type": "C", "frame": 11, "at": 599.1251250364227 }, { "type": "C", "frame": 10, "at": 599.1251250364227 }, { "type": "C", "frame": 9, "at": 599.1251250364227 }, { "type": "C", "frame": 8, "at": 599.1251250364227 }, { "type": "C", "frame": 7, "at": 599.1251250364227 }, { "type": "C", "frame": 6, "at": 599.1251250364227 }, { "type": "O", "frame": 20, "at": 599.1251250364227 }, { "type": "O", "frame": 8, "at": 599.1251250364227 }, { "type": "O", "frame": 9, "at": 599.1251250364227 }, { "type": "O", "frame": 10, "at": 599.1251250364227 }, { "type": "O", "frame": 11, "at": 599.1251250364227 }, { "type": "O", "frame": 12, "at": 599.1251250364227 }, { "type": "O", "frame": 13, "at": 599.1251250364227 }, { "type": "O", "frame": 14, "at": 599.1251250364227 }, { "type": "O", "frame": 15, "at": 599.1251250364227 }, { "type": "O", "frame": 16, "at": 599.1251250364227 }, { "type": "O", "frame": 21, "at": 599.1251250364227 }, { "type": "O", "frame": 22, "at": 599.1251250364227 }, { "type": "O", "frame": 23, "at": 599.1251250364227 }, { "type": "O", "frame": 24, "at": 599.1251250364227 }, { "type": "O", "frame": 18, "at": 599.1251250364227 }, { "type": "C", "frame": 18, "at": 610.230500289917 }, { "type": "C", "frame": 24, "at": 610.230500289917 }, { "type": "C", "frame": 23, "at": 610.230500289917 }, { "type": "C", "frame": 22, "at": 610.230500289917 }, { "type": "C", "frame": 21, "at": 610.230500289917 }, { "type": "O", "frame": 17, "at": 610.230500289917 }, { "type": "O", "frame": 18, "at": 610.230500289917 }, { "type": "C", "frame": 18, "at": 614.8331248931885 }, { "type": "C", "frame": 17, "at": 614.8331248931885 }, { "type": "O", "frame": 19, "at": 614.833125 }, { "type": "O", "frame": 18, "at": 614.833125 }, { "type": "C", "frame": 18, "at": 622.1861246871948 }, { "type": "C", "frame": 19, "at": 622.1861246871948 }, { "type": "C", "frame": 16, "at": 622.1861258239746 }, { "type": "C", "frame": 15, "at": 622.1861258239746 }, { "type": "C", "frame": 14, "at": 622.1861258239746 }, { "type": "C", "frame": 13, "at": 622.1861258239746 }, { "type": "C", "frame": 12, "at": 622.1861258239746 }, { "type": "C", "frame": 11, "at": 622.1861258239746 }, { "type": "C", "frame": 10, "at": 622.1861258239746 }, { "type": "C", "frame": 9, "at": 622.1861258239746 }, { "type": "C", "frame": 8, "at": 622.1861258239746 }, { "type": "C", "frame": 20, "at": 622.1861258239746 }, { "type": "O", "frame": 6, "at": 622.1861258239746 }, { "type": "O", "frame": 7, "at": 622.1861258239746 }, { "type": "O", "frame": 8, "at": 622.1861258239746 }, { "type": "O", "frame": 9, "at": 622.1861258239746 }, { "type": "O", "frame": 10, "at": 622.1861258239746 }, { "type": "O", "frame": 11, "at": 622.1861258239746 }, { "type": "O", "frame": 12, "at": 622.1861258239746 }, { "type": "O", "frame": 13, "at": 622.1861258239746 }, { "type": "O", "frame": 14, "at": 622.1861258239746 }, { "type": "O", "frame": 15, "at": 622.1861258239746 }, { "type": "O", "frame": 16, "at": 622.1861258239746 }, { "type": "O", "frame": 21, "at": 622.1861258239746 }, { "type": "O", "frame": 22, "at": 622.1861258239746 }, { "type": "O", "frame": 23, "at": 622.1861258239746 }, { "type": "O", "frame": 24, "at": 622.1861258239746 }, { "type": "O", "frame": 18, "at": 622.1861258239746 }, { "type": "C", "frame": 18, "at": 631.663624961853 }, { "type": "C", "frame": 24, "at": 631.663624961853 }, { "type": "C", "frame": 23, "at": 631.663624961853 }, { "type": "C", "frame": 22, "at": 631.663624961853 }, { "type": "C", "frame": 21, "at": 631.663624961853 }, { "type": "O", "frame": 17, "at": 631.663625 }, { "type": "O", "frame": 18, "at": 631.663625 }, { "type": "C", "frame": 18, "at": 637.1603338699341 }, { "type": "C", "frame": 17, "at": 637.1603338699341 }, { "type": "O", "frame": 19, "at": 637.160334 }, { "type": "O", "frame": 18, "at": 637.160334 }, { "type": "C", "frame": 18, "at": 643.8350423663941 }, { "type": "C", "frame": 19, "at": 643.8350423663941 }, { "type": "C", "frame": 16, "at": 643.8350423663941 }, { "type": "C", "frame": 15, "at": 643.8350423663941 }, { "type": "C", "frame": 14, "at": 643.8350423663941 }, { "type": "C", "frame": 13, "at": 643.8350423663941 }, { "type": "C", "frame": 12, "at": 643.8350423663941 }, { "type": "C", "frame": 11, "at": 643.8350423663941 }, { "type": "C", "frame": 10, "at": 643.8350423663941 }, { "type": "C", "frame": 9, "at": 643.8350423663941 }, { "type": "C", "frame": 8, "at": 643.8350423663941 }, { "type": "C", "frame": 7, "at": 643.8350423663941 }, { "type": "C", "frame": 6, "at": 643.8350423663941 }, { "type": "O", "frame": 20, "at": 643.8350423663941 }, { "type": "O", "frame": 8, "at": 643.8350423663941 }, { "type": "O", "frame": 9, "at": 643.8350423663941 }, { "type": "O", "frame": 10, "at": 643.8350423663941 }, { "type": "O", "frame": 11, "at": 643.8350423663941 }, { "type": "O", "frame": 12, "at": 643.8350423663941 }, { "type": "O", "frame": 13, "at": 643.8350423663941 }, { "type": "O", "frame": 14, "at": 643.8350423663941 }, { "type": "O", "frame": 15, "at": 643.8350423663941 }, { "type": "O", "frame": 16, "at": 643.8350423663941 }, { "type": "O", "frame": 21, "at": 643.8350423663941 }, { "type": "O", "frame": 22, "at": 643.8350423663941 }, { "type": "O", "frame": 23, "at": 643.8350423663941 }, { "type": "O", "frame": 31, "at": 643.8350423663941 }, { "type": "O", "frame": 18, "at": 643.8350423663941 }, { "type": "C", "frame": 18, "at": 645.1835000516816 }, { "type": "C", "frame": 31, "at": 645.1835000516816 }, { "type": "O", "frame": 24, "at": 645.1835000516816 }, { "type": "O", "frame": 18, "at": 645.1835000516816 }, { "type": "C", "frame": 18, "at": 653.2832924804687 }, { "type": "C", "frame": 24, "at": 653.2832924804687 }, { "type": "C", "frame": 23, "at": 653.2832924804687 }, { "type": "C", "frame": 22, "at": 653.2832924804687 }, { "type": "C", "frame": 21, "at": 653.2832924804687 }, { "type": "O", "frame": 17, "at": 653.2832924804687 }, { "type": "O", "frame": 18, "at": 653.2832924804687 }, { "type": "C", "frame": 18, "at": 658.795833770935 }, { "type": "C", "frame": 17, "at": 658.795833770935 }, { "type": "O", "frame": 19, "at": 658.795834 }, { "type": "O", "frame": 18, "at": 658.795834 }, { "type": "C", "frame": 18, "at": 660.199374968895 }, { "type": "C", "frame": 19, "at": 660.199374968895 }, { "type": "C", "frame": 16, "at": 660.1993761064454 }, { "type": "C", "frame": 15, "at": 660.1993761064454 }, { "type": "C", "frame": 14, "at": 660.1993761064454 }, { "type": "C", "frame": 13, "at": 660.1993761064454 }, { "type": "C", "frame": 12, "at": 660.1993761064454 }, { "type": "C", "frame": 11, "at": 660.1993761064454 }, { "type": "C", "frame": 10, "at": 660.1993761064454 }, { "type": "C", "frame": 9, "at": 660.1993761064454 }, { "type": "C", "frame": 8, "at": 660.1993761064454 }, { "type": "C", "frame": 20, "at": 660.1993761064454 }, { "type": "O", "frame": 6, "at": 660.1993761064454 }, { "type": "O", "frame": 7, "at": 660.1993761064454 }, { "type": "O", "frame": 8, "at": 660.1993761064454 }, { "type": "O", "frame": 9, "at": 660.1993761064454 }, { "type": "O", "frame": 10, "at": 660.1993761064454 }, { "type": "O", "frame": 11, "at": 660.1993761064454 }, { "type": "O", "frame": 12, "at": 660.1993761064454 }, { "type": "O", "frame": 13, "at": 660.1993761064454 }, { "type": "O", "frame": 14, "at": 660.1993761064454 }, { "type": "O", "frame": 15, "at": 660.1993761064454 }, { "type": "O", "frame": 16, "at": 660.1993761064454 }, { "type": "O", "frame": 21, "at": 660.1993761064454 }, { "type": "O", "frame": 22, "at": 660.1993761064454 }, { "type": "O", "frame": 23, "at": 660.1993761064454 }, { "type": "O", "frame": 24, "at": 660.1993761064454 }, { "type": "O", "frame": 18, "at": 660.1993761064454 }, { "type": "C", "frame": 18, "at": 665.59475025177 }, { "type": "C", "frame": 24, "at": 665.59475025177 }, { "type": "O", "frame": 29, "at": 665.59475025177 }, { "type": "O", "frame": 18, "at": 665.59475025177 }, { "type": "C", "frame": 18, "at": 666.934333992958 }, { "type": "C", "frame": 29, "at": 666.934333992958 }, { "type": "O", "frame": 24, "at": 666.934334 }, { "type": "O", "frame": 18, "at": 666.934334 }, { "type": "C", "frame": 18, "at": 668.292041977295 }, { "type": "C", "frame": 24, "at": 668.292041977295 }, { "type": "C", "frame": 23, "at": 668.292041977295 }, { "type": "C", "frame": 22, "at": 668.292041977295 }, { "type": "C", "frame": 21, "at": 668.292041977295 }, { "type": "O", "frame": 17, "at": 668.292042 }, { "type": "O", "frame": 18, "at": 668.292042 }, { "type": "C", "frame": 18, "at": 673.7516672441407 }, { "type": "C", "frame": 17, "at": 673.7516672441407 }, { "type": "O", "frame": 19, "at": 673.7516672441407 }, { "type": "O", "frame": 18, "at": 673.7516672441407 }, { "type": "C", "frame": 18, "at": 680.3714999925537 }, { "type": "C", "frame": 19, "at": 680.3714999925537 }, { "type": "C", "frame": 16, "at": 680.3714999925537 }, { "type": "C", "frame": 15, "at": 680.3714999925537 }, { "type": "C", "frame": 14, "at": 680.3714999925537 }, { "type": "C", "frame": 13, "at": 680.3714999925537 }, { "type": "C", "frame": 12, "at": 680.3714999925537 }, { "type": "C", "frame": 11, "at": 680.3714999925537 }, { "type": "C", "frame": 10, "at": 680.3714999925537 }, { "type": "C", "frame": 9, "at": 680.3714999925537 }, { "type": "C", "frame": 8, "at": 680.3714999925537 }, { "type": "C", "frame": 7, "at": 680.3714999925537 }, { "type": "C", "frame": 6, "at": 680.3714999925537 }, { "type": "O", "frame": 20, "at": 680.3715 }, { "type": "O", "frame": 18, "at": 680.3715 }, { "type": "C", "frame": 18, "at": 681.7223750200271 }, { "type": "O", "frame": 8, "at": 681.7223750200271 }, { "type": "O", "frame": 9, "at": 681.7223750200271 }, { "type": "O", "frame": 10, "at": 681.7223750200271 }, { "type": "O", "frame": 11, "at": 681.7223750200271 }, { "type": "O", "frame": 12, "at": 681.7223750200271 }, { "type": "O", "frame": 13, "at": 681.7223750200271 }, { "type": "O", "frame": 14, "at": 681.7223750200271 }, { "type": "O", "frame": 15, "at": 681.7223750200271 }, { "type": "O", "frame": 16, "at": 681.7223750200271 }, { "type": "O", "frame": 21, "at": 681.7223750200271 }, { "type": "O", "frame": 22, "at": 681.7223750200271 }, { "type": "O", "frame": 23, "at": 681.7223750200271 }, { "type": "O", "frame": 38, "at": 681.7223750200271 }, { "type": "O", "frame": 18, "at": 681.7223750200271 }, { "type": "C", "frame": 18, "at": 683.0669589881898 }, { "type": "C", "frame": 38, "at": 683.0669589881898 }, { "type": "O", "frame": 24, "at": 683.066959 }, { "type": "O", "frame": 18, "at": 683.066959 }, { "type": "C", "frame": 18, "at": 689.8357087138977 }, { "type": "C", "frame": 24, "at": 689.8357087138977 }, { "type": "C", "frame": 23, "at": 689.8357096557618 }, { "type": "C", "frame": 22, "at": 689.8357096557618 }, { "type": "C", "frame": 21, "at": 689.8357096557618 }, { "type": "O", "frame": 17, "at": 689.8357096557618 }, { "type": "O", "frame": 18, "at": 689.8357096557618 }, { "type": "C", "frame": 18, "at": 695.3067502025451 }, { "type": "C", "frame": 17, "at": 695.3067502025451 }, { "type": "O", "frame": 19, "at": 695.3067502025451 }, { "type": "O", "frame": 18, "at": 695.3067502025451 }, { "type": "C", "frame": 18, "at": 696.6426250343322 }, { "type": "C", "frame": 19, "at": 696.6426250343322 }, { "type": "C", "frame": 16, "at": 696.6426250343322 }, { "type": "C", "frame": 15, "at": 696.6426250343322 }, { "type": "C", "frame": 14, "at": 696.6426250343322 }, { "type": "C", "frame": 13, "at": 696.6426250343322 }, { "type": "C", "frame": 12, "at": 696.6426250343322 }, { "type": "C", "frame": 11, "at": 696.6426250343322 }, { "type": "C", "frame": 10, "at": 696.6426250343322 }, { "type": "C", "frame": 9, "at": 696.6426250343322 }, { "type": "C", "frame": 8, "at": 696.6426250343322 }, { "type": "C", "frame": 20, "at": 696.6426250343322 }, { "type": "O", "frame": 6, "at": 696.6426250343322 }, { "type": "O", "frame": 7, "at": 696.6426250343322 }, { "type": "O", "frame": 8, "at": 696.6426250343322 }, { "type": "O", "frame": 9, "at": 696.6426250343322 }, { "type": "O", "frame": 10, "at": 696.6426250343322 }, { "type": "O", "frame": 11, "at": 696.6426250343322 }, { "type": "O", "frame": 12, "at": 696.6426250343322 }, { "type": "O", "frame": 13, "at": 696.6426250343322 }, { "type": "O", "frame": 14, "at": 696.6426250343322 }, { "type": "O", "frame": 15, "at": 696.6426250343322 }, { "type": "O", "frame": 16, "at": 696.6426250343322 }, { "type": "O", "frame": 21, "at": 696.6426250343322 }, { "type": "O", "frame": 22, "at": 696.6426250343322 }, { "type": "O", "frame": 23, "at": 696.6426250343322 }, { "type": "O", "frame": 24, "at": 696.6426250343322 }, { "type": "O", "frame": 18, "at": 696.6426250343322 }, { "type": "C", "frame": 18, "at": 706.0889169235229 }, { "type": "C", "frame": 24, "at": 706.0889169235229 }, { "type": "C", "frame": 23, "at": 706.0889169235229 }, { "type": "C", "frame": 22, "at": 706.0889169235229 }, { "type": "C", "frame": 21, "at": 706.0889169235229 }, { "type": "O", "frame": 17, "at": 706.088917 }, { "type": "O", "frame": 18, "at": 706.088917 }, { "type": "C", "frame": 18, "at": 710.17862485141 }, { "type": "C", "frame": 17, "at": 710.17862485141 }, { "type": "O", "frame": 19, "at": 710.178625 }, { "type": "O", "frame": 18, "at": 710.178625 }, { "type": "C", "frame": 18, "at": 718.2779997711182 }, { "type": "C", "frame": 19, "at": 718.2779997711182 }, { "type": "C", "frame": 16, "at": 718.2779997711182 }, { "type": "C", "frame": 15, "at": 718.2779997711182 }, { "type": "C", "frame": 14, "at": 718.2779997711182 }, { "type": "C", "frame": 13, "at": 718.2779997711182 }, { "type": "C", "frame": 12, "at": 718.2779997711182 }, { "type": "C", "frame": 11, "at": 718.2779997711182 }, { "type": "C", "frame": 10, "at": 718.2779997711182 }, { "type": "C", "frame": 9, "at": 718.2779997711182 }, { "type": "C", "frame": 8, "at": 718.2779997711182 }, { "type": "C", "frame": 7, "at": 718.2779997711182 }, { "type": "C", "frame": 6, "at": 718.2779997711182 }, { "type": "O", "frame": 20, "at": 718.278 }, { "type": "O", "frame": 8, "at": 718.278 }, { "type": "O", "frame": 9, "at": 718.278 }, { "type": "O", "frame": 10, "at": 718.278 }, { "type": "O", "frame": 11, "at": 718.278 }, { "type": "O", "frame": 12, "at": 718.278 }, { "type": "O", "frame": 13, "at": 718.278 }, { "type": "O", "frame": 14, "at": 718.278 }, { "type": "O", "frame": 15, "at": 718.278 }, { "type": "O", "frame": 16, "at": 718.278 }, { "type": "O", "frame": 21, "at": 718.278 }, { "type": "O", "frame": 22, "at": 718.278 }, { "type": "O", "frame": 23, "at": 718.278 }, { "type": "O", "frame": 24, "at": 718.278 }, { "type": "O", "frame": 18, "at": 718.278 }, { "type": "C", "frame": 18, "at": 726.4069587020874 }, { "type": "C", "frame": 24, "at": 726.4069587020874 }, { "type": "C", "frame": 23, "at": 726.4069587020874 }, { "type": "C", "frame": 22, "at": 726.4069587020874 }, { "type": "C", "frame": 21, "at": 726.4069587020874 }, { "type": "O", "frame": 17, "at": 726.406959 }, { "type": "O", "frame": 18, "at": 726.406959 }, { "type": "C", "frame": 18, "at": 731.8860000995484 }, { "type": "C", "frame": 17, "at": 731.8860000995484 }, { "type": "O", "frame": 19, "at": 731.8860000995484 }, { "type": "O", "frame": 18, "at": 731.8860000995484 }, { "type": "C", "frame": 18, "at": 733.2267499790191 }, { "type": "C", "frame": 19, "at": 733.2267499790191 }, { "type": "C", "frame": 16, "at": 733.2267499790191 }, { "type": "C", "frame": 15, "at": 733.2267499790191 }, { "type": "C", "frame": 14, "at": 733.2267499790191 }, { "type": "C", "frame": 13, "at": 733.2267499790191 }, { "type": "C", "frame": 12, "at": 733.2267499790191 }, { "type": "C", "frame": 11, "at": 733.2267499790191 }, { "type": "C", "frame": 10, "at": 733.2267499790191 }, { "type": "C", "frame": 9, "at": 733.2267499790191 }, { "type": "C", "frame": 8, "at": 733.2267499790191 }, { "type": "C", "frame": 20, "at": 733.2267499790191 }, { "type": "O", "frame": 6, "at": 733.22675 }, { "type": "O", "frame": 7, "at": 733.22675 }, { "type": "O", "frame": 8, "at": 733.22675 }, { "type": "O", "frame": 9, "at": 733.22675 }, { "type": "O", "frame": 10, "at": 733.22675 }, { "type": "O", "frame": 11, "at": 733.22675 }, { "type": "O", "frame": 12, "at": 733.22675 }, { "type": "O", "frame": 13, "at": 733.22675 }, { "type": "O", "frame": 14, "at": 733.22675 }, { "type": "O", "frame": 15, "at": 733.22675 }, { "type": "O", "frame": 16, "at": 733.22675 }, { "type": "O", "frame": 21, "at": 733.22675 }, { "type": "O", "frame": 22, "at": 733.22675 }, { "type": "O", "frame": 23, "at": 733.22675 }, { "type": "O", "frame": 24, "at": 733.22675 }, { "type": "O", "frame": 18, "at": 733.22675 }, { "type": "C", "frame": 18, "at": 742.6570411758423 }, { "type": "C", "frame": 24, "at": 742.6570411758423 }, { "type": "C", "frame": 23, "at": 742.6570411758423 }, { "type": "C", "frame": 22, "at": 742.6570411758423 }, { "type": "C", "frame": 21, "at": 742.6570411758423 }, { "type": "O", "frame": 17, "at": 742.657042 }, { "type": "O", "frame": 18, "at": 742.657042 }, { "type": "C", "frame": 18, "at": 746.7482089731141 }, { "type": "C", "frame": 17, "at": 746.7482089731141 }, { "type": "O", "frame": 19, "at": 746.748209 }, { "type": "O", "frame": 18, "at": 746.748209 }, { "type": "C", "frame": 18, "at": 754.7642498020019 }, { "type": "C", "frame": 19, "at": 754.7642498020019 }, { "type": "C", "frame": 16, "at": 754.7642498020019 }, { "type": "C", "frame": 15, "at": 754.7642498020019 }, { "type": "C", "frame": 14, "at": 754.7642498020019 }, { "type": "C", "frame": 13, "at": 754.7642498020019 }, { "type": "C", "frame": 12, "at": 754.7642498020019 }, { "type": "C", "frame": 11, "at": 754.7642498020019 }, { "type": "C", "frame": 10, "at": 754.7642498020019 }, { "type": "C", "frame": 9, "at": 754.7642498020019 }, { "type": "C", "frame": 8, "at": 754.7642498020019 }, { "type": "C", "frame": 7, "at": 754.7642498020019 }, { "type": "C", "frame": 6, "at": 754.7642498020019 }, { "type": "O", "frame": 20, "at": 754.76425 }, { "type": "O", "frame": 8, "at": 754.76425 }, { "type": "O", "frame": 9, "at": 754.76425 }, { "type": "O", "frame": 10, "at": 754.76425 }, { "type": "O", "frame": 11, "at": 754.76425 }, { "type": "O", "frame": 12, "at": 754.76425 }, { "type": "O", "frame": 13, "at": 754.76425 }, { "type": "O", "frame": 14, "at": 754.76425 }, { "type": "O", "frame": 15, "at": 754.76425 }, { "type": "O", "frame": 16, "at": 754.76425 }, { "type": "O", "frame": 21, "at": 754.76425 }, { "type": "O", "frame": 22, "at": 754.76425 }, { "type": "O", "frame": 23, "at": 754.76425 }, { "type": "O", "frame": 24, "at": 754.76425 }, { "type": "O", "frame": 18, "at": 754.76425 }, { "type": "C", "frame": 18, "at": 762.8407499389648 }, { "type": "C", "frame": 24, "at": 762.8407499389648 }, { "type": "C", "frame": 23, "at": 762.8407499389648 }, { "type": "C", "frame": 22, "at": 762.8407499389648 }, { "type": "C", "frame": 21, "at": 762.8407499389648 }, { "type": "O", "frame": 17, "at": 762.84075 }, { "type": "O", "frame": 18, "at": 762.84075 }, { "type": "C", "frame": 18, "at": 768.3475420684814 }, { "type": "C", "frame": 17, "at": 768.3475420684814 }, { "type": "O", "frame": 19, "at": 768.3475420684814 }, { "type": "O", "frame": 18, "at": 768.3475420684814 }, { "type": "C", "frame": 18, "at": 769.6923340083999 }, { "type": "C", "frame": 19, "at": 769.6923340083999 }, { "type": "C", "frame": 16, "at": 769.6923343734741 }, { "type": "C", "frame": 15, "at": 769.6923343734741 }, { "type": "C", "frame": 14, "at": 769.6923343734741 }, { "type": "C", "frame": 13, "at": 769.6923343734741 }, { "type": "C", "frame": 12, "at": 769.6923343734741 }, { "type": "C", "frame": 11, "at": 769.6923343734741 }, { "type": "C", "frame": 10, "at": 769.6923343734741 }, { "type": "C", "frame": 9, "at": 769.6923343734741 }, { "type": "C", "frame": 8, "at": 769.6923343734741 }, { "type": "C", "frame": 20, "at": 769.6923343734741 }, { "type": "O", "frame": 6, "at": 769.6923343734741 }, { "type": "O", "frame": 7, "at": 769.6923343734741 }, { "type": "O", "frame": 8, "at": 769.6923343734741 }, { "type": "O", "frame": 9, "at": 769.6923343734741 }, { "type": "O", "frame": 10, "at": 769.6923343734741 }, { "type": "O", "frame": 11, "at": 769.6923343734741 }, { "type": "O", "frame": 12, "at": 769.6923343734741 }, { "type": "O", "frame": 13, "at": 769.6923343734741 }, { "type": "O", "frame": 14, "at": 769.6923343734741 }, { "type": "O", "frame": 15, "at": 769.6923343734741 }, { "type": "O", "frame": 16, "at": 769.6923343734741 }, { "type": "O", "frame": 21, "at": 769.6923343734741 }, { "type": "O", "frame": 22, "at": 769.6923343734741 }, { "type": "O", "frame": 23, "at": 769.6923343734741 }, { "type": "O", "frame": 24, "at": 769.6923343734741 }, { "type": "O", "frame": 18, "at": 769.6923343734741 }, { "type": "C", "frame": 18, "at": 779.1429174579467 }, { "type": "C", "frame": 24, "at": 779.1429174579467 }, { "type": "C", "frame": 23, "at": 779.1429174579467 }, { "type": "C", "frame": 22, "at": 779.1429174579467 }, { "type": "C", "frame": 21, "at": 779.1429174579467 }, { "type": "O", "frame": 17, "at": 779.1429174579467 }, { "type": "O", "frame": 18, "at": 779.1429174579467 }, { "type": "C", "frame": 18, "at": 783.3549168931885 }, { "type": "C", "frame": 17, "at": 783.3549168931885 }, { "type": "O", "frame": 19, "at": 783.354917 }, { "type": "O", "frame": 18, "at": 783.354917 }, { "type": "C", "frame": 18, "at": 791.4805845720215 }, { "type": "C", "frame": 19, "at": 791.4805845720215 }, { "type": "C", "frame": 16, "at": 791.4805845720215 }, { "type": "C", "frame": 15, "at": 791.4805845720215 }, { "type": "C", "frame": 14, "at": 791.4805845720215 }, { "type": "C", "frame": 13, "at": 791.4805845720215 }, { "type": "C", "frame": 12, "at": 791.4805845720215 }, { "type": "C", "frame": 11, "at": 791.4805845720215 }, { "type": "C", "frame": 10, "at": 791.4805845720215 }, { "type": "C", "frame": 9, "at": 791.4805845720215 }, { "type": "C", "frame": 8, "at": 791.4805845720215 }, { "type": "C", "frame": 7, "at": 791.4805845720215 }, { "type": "C", "frame": 6, "at": 791.4805845720215 }, { "type": "O", "frame": 20, "at": 791.4805845720215 }, { "type": "O", "frame": 8, "at": 791.4805845720215 }, { "type": "O", "frame": 9, "at": 791.4805845720215 }, { "type": "O", "frame": 10, "at": 791.4805845720215 }, { "type": "O", "frame": 11, "at": 791.4805845720215 }, { "type": "O", "frame": 12, "at": 791.4805845720215 }, { "type": "O", "frame": 13, "at": 791.4805845720215 }, { "type": "O", "frame": 14, "at": 791.4805845720215 }, { "type": "O", "frame": 15, "at": 791.4805845720215 }, { "type": "O", "frame": 16, "at": 791.4805845720215 }, { "type": "O", "frame": 21, "at": 791.4805845720215 }, { "type": "O", "frame": 22, "at": 791.4805845720215 }, { "type": "O", "frame": 23, "at": 791.4805845720215 }, { "type": "O", "frame": 24, "at": 791.4805845720215 }, { "type": "O", "frame": 18, "at": 791.4805845720215 }, { "type": "C", "frame": 18, "at": 799.5559595569458 }, { "type": "C", "frame": 24, "at": 799.5559595569458 }, { "type": "C", "frame": 23, "at": 799.5559595569458 }, { "type": "C", "frame": 22, "at": 799.5559595569458 }, { "type": "C", "frame": 21, "at": 799.5559595569458 }, { "type": "O", "frame": 17, "at": 799.5559595569458 }, { "type": "O", "frame": 18, "at": 799.5559595569458 }, { "type": "C", "frame": 18, "at": 805.1124594348755 }, { "type": "C", "frame": 17, "at": 805.1124594348755 }, { "type": "O", "frame": 19, "at": 805.1124594348755 }, { "type": "O", "frame": 18, "at": 805.1124594348755 }, { "type": "C", "frame": 18, "at": 806.448625024208 }, { "type": "C", "frame": 19, "at": 806.448625024208 }, { "type": "C", "frame": 16, "at": 806.4486254199829 }, { "type": "C", "frame": 15, "at": 806.4486254199829 }, { "type": "C", "frame": 14, "at": 806.4486254199829 }, { "type": "C", "frame": 13, "at": 806.4486254199829 }, { "type": "C", "frame": 12, "at": 806.4486254199829 }, { "type": "C", "frame": 11, "at": 806.4486254199829 }, { "type": "C", "frame": 10, "at": 806.4486254199829 }, { "type": "C", "frame": 9, "at": 806.4486254199829 }, { "type": "C", "frame": 8, "at": 806.4486254199829 }, { "type": "C", "frame": 20, "at": 806.4486254199829 }, { "type": "O", "frame": 6, "at": 806.4486254199829 }, { "type": "O", "frame": 7, "at": 806.4486254199829 }, { "type": "O", "frame": 8, "at": 806.4486254199829 }, { "type": "O", "frame": 9, "at": 806.4486254199829 }, { "type": "O", "frame": 10, "at": 806.4486254199829 }, { "type": "O", "frame": 11, "at": 806.4486254199829 }, { "type": "O", "frame": 12, "at": 806.4486254199829 }, { "type": "O", "frame": 13, "at": 806.4486254199829 }, { "type": "O", "frame": 14, "at": 806.4486254199829 }, { "type": "O", "frame": 15, "at": 806.4486254199829 }, { "type": "O", "frame": 16, "at": 806.4486254199829 }, { "type": "O", "frame": 21, "at": 806.4486254199829 }, { "type": "O", "frame": 22, "at": 806.4486254199829 }, { "type": "O", "frame": 23, "at": 806.4486254199829 }, { "type": "O", "frame": 24, "at": 806.4486254199829 }, { "type": "O", "frame": 18, "at": 806.4486254199829 }, { "type": "C", "frame": 18, "at": 811.8387922363281 }, { "type": "C", "frame": 24, "at": 811.8387922363281 }, { "type": "O", "frame": 26, "at": 811.8387922363281 }, { "type": "O", "frame": 18, "at": 811.8387922363281 }, { "type": "C", "frame": 18, "at": 813.1819169856949 }, { "type": "C", "frame": 26, "at": 813.1819169856949 }, { "type": "O", "frame": 24, "at": 813.181917 }, { "type": "O", "frame": 18, "at": 813.181917 }, { "type": "C", "frame": 18, "at": 814.524459052269 }, { "type": "C", "frame": 24, "at": 814.524459052269 }, { "type": "O", "frame": 28, "at": 814.524459052269 }, { "type": "O", "frame": 18, "at": 814.524459052269 }, { "type": "C", "frame": 18, "at": 815.8894170478668 }, { "type": "C", "frame": 28, "at": 815.8894170478668 }, { "type": "C", "frame": 23, "at": 815.8894170837402 }, { "type": "C", "frame": 22, "at": 815.8894170837402 }, { "type": "C", "frame": 21, "at": 815.8894170837402 }, { "type": "O", "frame": 17, "at": 815.8894170837402 }, { "type": "O", "frame": 18, "at": 815.8894170837402 }, { "type": "C", "frame": 18, "at": 819.998584098999 }, { "type": "C", "frame": 17, "at": 819.998584098999 }, { "type": "O", "frame": 19, "at": 819.998584098999 }, { "type": "O", "frame": 18, "at": 819.998584098999 }, { "type": "C", "frame": 18, "at": 828.0171663440552 }, { "type": "C", "frame": 19, "at": 828.0171663440552 }, { "type": "C", "frame": 16, "at": 828.0171674804687 }, { "type": "C", "frame": 15, "at": 828.0171674804687 }, { "type": "C", "frame": 14, "at": 828.0171674804687 }, { "type": "C", "frame": 13, "at": 828.0171674804687 }, { "type": "C", "frame": 12, "at": 828.0171674804687 }, { "type": "C", "frame": 11, "at": 828.0171674804687 }, { "type": "C", "frame": 10, "at": 828.0171674804687 }, { "type": "C", "frame": 9, "at": 828.0171674804687 }, { "type": "C", "frame": 8, "at": 828.0171674804687 }, { "type": "C", "frame": 7, "at": 828.0171674804687 }, { "type": "C", "frame": 6, "at": 828.0171674804687 }, { "type": "O", "frame": 20, "at": 828.0171674804687 }, { "type": "O", "frame": 8, "at": 828.0171674804687 }, { "type": "O", "frame": 9, "at": 828.0171674804687 }, { "type": "O", "frame": 10, "at": 828.0171674804687 }, { "type": "O", "frame": 11, "at": 828.0171674804687 }, { "type": "O", "frame": 12, "at": 828.0171674804687 }, { "type": "O", "frame": 13, "at": 828.0171674804687 }, { "type": "O", "frame": 14, "at": 828.0171674804687 }, { "type": "O", "frame": 15, "at": 828.0171674804687 }, { "type": "O", "frame": 16, "at": 828.0171674804687 }, { "type": "O", "frame": 21, "at": 828.0171674804687 }, { "type": "O", "frame": 22, "at": 828.0171674804687 }, { "type": "O", "frame": 23, "at": 828.0171674804687 }, { "type": "O", "frame": 24, "at": 828.0171674804687 }, { "type": "O", "frame": 18, "at": 828.0171674804687 }, { "type": "C", "frame": 18, "at": 837.4659174959106 }, { "type": "C", "frame": 24, "at": 837.4659174959106 }, { "type": "C", "frame": 23, "at": 837.4659174959106 }, { "type": "C", "frame": 22, "at": 837.4659174959106 }, { "type": "C", "frame": 21, "at": 837.4659174959106 }, { "type": "O", "frame": 17, "at": 837.4659174959106 }, { "type": "O", "frame": 18, "at": 837.4659174959106 }, { "type": "C", "frame": 18, "at": 841.5668338624878 }, { "type": "C", "frame": 17, "at": 841.5668338624878 }, { "type": "O", "frame": 19, "at": 841.566834 }, { "type": "O", "frame": 18, "at": 841.566834 }, { "type": "C", "frame": 18, "at": 842.9076249870147 }, { "type": "C", "frame": 19, "at": 842.9076249870147 }, { "type": "C", "frame": 16, "at": 842.9076251069946 }, { "type": "C", "frame": 15, "at": 842.9076251069946 }, { "type": "C", "frame": 14, "at": 842.9076251069946 }, { "type": "C", "frame": 13, "at": 842.9076251069946 }, { "type": "C", "frame": 12, "at": 842.9076251069946 }, { "type": "C", "frame": 11, "at": 842.9076251069946 }, { "type": "C", "frame": 10, "at": 842.9076251069946 }, { "type": "C", "frame": 9, "at": 842.9076251069946 }, { "type": "C", "frame": 8, "at": 842.9076251069946 }, { "type": "C", "frame": 20, "at": 842.9076251069946 }, { "type": "O", "frame": 6, "at": 842.9076251069946 }, { "type": "O", "frame": 7, "at": 842.9076251069946 }, { "type": "O", "frame": 8, "at": 842.9076251069946 }, { "type": "O", "frame": 9, "at": 842.9076251069946 }, { "type": "O", "frame": 10, "at": 842.9076251069946 }, { "type": "O", "frame": 11, "at": 842.9076251069946 }, { "type": "O", "frame": 12, "at": 842.9076251069946 }, { "type": "O", "frame": 13, "at": 842.9076251069946 }, { "type": "O", "frame": 14, "at": 842.9076251069946 }, { "type": "O", "frame": 15, "at": 842.9076251069946 }, { "type": "O", "frame": 16, "at": 842.9076251069946 }, { "type": "O", "frame": 18, "at": 842.9076251069946 }, { "type": "C", "frame": 18, "at": 844.258291999817 }, { "type": "O", "frame": 21, "at": 844.258292 }, { "type": "O", "frame": 22, "at": 844.258292 }, { "type": "O", "frame": 23, "at": 844.258292 }, { "type": "O", "frame": 24, "at": 844.258292 }, { "type": "O", "frame": 18, "at": 844.258292 }, { "type": "C", "frame": 18, "at": 845.6041249439163 }, { "type": "C", "frame": 24, "at": 845.6041249439163 }, { "type": "O", "frame": 25, "at": 845.604125 }, { "type": "O", "frame": 18, "at": 845.604125 }, { "type": "C", "frame": 18, "at": 846.9464169511795 }, { "type": "C", "frame": 25, "at": 846.9464169511795 }, { "type": "O", "frame": 24, "at": 846.946417 }, { "type": "O", "frame": 18, "at": 846.946417 }, { "type": "C", "frame": 18, "at": 852.3251248857422 }, { "type": "C", "frame": 24, "at": 852.3251248857422 }, { "type": "C", "frame": 23, "at": 852.3251254960937 }, { "type": "C", "frame": 22, "at": 852.3251254960937 }, { "type": "C", "frame": 21, "at": 852.3251254960937 }, { "type": "O", "frame": 17, "at": 852.3251254960937 }, { "type": "O", "frame": 18, "at": 852.3251254960937 }, { "type": "C", "frame": 18, "at": 856.5115001411438 }, { "type": "C", "frame": 17, "at": 856.5115001411438 }, { "type": "O", "frame": 19, "at": 856.5115001411438 }, { "type": "O", "frame": 18, "at": 856.5115001411438 }, { "type": "C", "frame": 18, "at": 864.5118337860107 }, { "type": "C", "frame": 19, "at": 864.5118337860107 }, { "type": "C", "frame": 16, "at": 864.5118348999024 }, { "type": "C", "frame": 15, "at": 864.5118348999024 }, { "type": "C", "frame": 14, "at": 864.5118348999024 }, { "type": "C", "frame": 13, "at": 864.5118348999024 }, { "type": "C", "frame": 12, "at": 864.5118348999024 }, { "type": "C", "frame": 11, "at": 864.5118348999024 }, { "type": "C", "frame": 10, "at": 864.5118348999024 }, { "type": "C", "frame": 9, "at": 864.5118348999024 }, { "type": "C", "frame": 8, "at": 864.5118348999024 }, { "type": "C", "frame": 7, "at": 864.5118348999024 }, { "type": "C", "frame": 6, "at": 864.5118348999024 }, { "type": "O", "frame": 20, "at": 864.5118348999024 }, { "type": "O", "frame": 8, "at": 864.5118348999024 }, { "type": "O", "frame": 9, "at": 864.5118348999024 }, { "type": "O", "frame": 10, "at": 864.5118348999024 }, { "type": "O", "frame": 11, "at": 864.5118348999024 }, { "type": "O", "frame": 12, "at": 864.5118348999024 }, { "type": "O", "frame": 13, "at": 864.5118348999024 }, { "type": "O", "frame": 14, "at": 864.5118348999024 }, { "type": "O", "frame": 15, "at": 864.5118348999024 }, { "type": "O", "frame": 16, "at": 864.5118348999024 }, { "type": "O", "frame": 21, "at": 864.5118348999024 }, { "type": "O", "frame": 22, "at": 864.5118348999024 }, { "type": "O", "frame": 23, "at": 864.5118348999024 }, { "type": "O", "frame": 24, "at": 864.5118348999024 }, { "type": "O", "frame": 18, "at": 864.5118348999024 }, { "type": "C", "frame": 18, "at": 873.9504593356934 }, { "type": "C", "frame": 24, "at": 873.9504593356934 }, { "type": "C", "frame": 23, "at": 873.9504593356934 }, { "type": "C", "frame": 22, "at": 873.9504593356934 }, { "type": "C", "frame": 21, "at": 873.9504593356934 }, { "type": "O", "frame": 17, "at": 873.9504593356934 }, { "type": "O", "frame": 18, "at": 873.9504593356934 }, { "type": "C", "frame": 18, "at": 878.0809998477783 }, { "type": "C", "frame": 17, "at": 878.0809998477783 }, { "type": "O", "frame": 19, "at": 878.081 }, { "type": "O", "frame": 18, "at": 878.081 }, { "type": "C", "frame": 18, "at": 879.4272500572205 }, { "type": "C", "frame": 19, "at": 879.4272500572205 }, { "type": "C", "frame": 16, "at": 879.4272507175293 }, { "type": "C", "frame": 15, "at": 879.4272507175293 }, { "type": "C", "frame": 14, "at": 879.4272507175293 }, { "type": "C", "frame": 13, "at": 879.4272507175293 }, { "type": "C", "frame": 12, "at": 879.4272507175293 }, { "type": "C", "frame": 11, "at": 879.4272507175293 }, { "type": "C", "frame": 10, "at": 879.4272507175293 }, { "type": "C", "frame": 9, "at": 879.4272507175293 }, { "type": "C", "frame": 8, "at": 879.4272507175293 }, { "type": "C", "frame": 20, "at": 879.4272507175293 }, { "type": "O", "frame": 6, "at": 879.4272507175293 }, { "type": "O", "frame": 7, "at": 879.4272507175293 }, { "type": "O", "frame": 8, "at": 879.4272507175293 }, { "type": "O", "frame": 9, "at": 879.4272507175293 }, { "type": "O", "frame": 10, "at": 879.4272507175293 }, { "type": "O", "frame": 11, "at": 879.4272507175293 }, { "type": "O", "frame": 12, "at": 879.4272507175293 }, { "type": "O", "frame": 13, "at": 879.4272507175293 }, { "type": "O", "frame": 14, "at": 879.4272507175293 }, { "type": "O", "frame": 15, "at": 879.4272507175293 }, { "type": "O", "frame": 16, "at": 879.4272507175293 }, { "type": "O", "frame": 21, "at": 879.4272507175293 }, { "type": "O", "frame": 22, "at": 879.4272507175293 }, { "type": "O", "frame": 23, "at": 879.4272507175293 }, { "type": "O", "frame": 24, "at": 879.4272507175293 }, { "type": "O", "frame": 18, "at": 879.4272507175293 }, { "type": "C", "frame": 18, "at": 882.1095419845581 }, { "type": "C", "frame": 24, "at": 882.1095419845581 }, { "type": "O", "frame": 31, "at": 882.109542 }, { "type": "O", "frame": 18, "at": 882.109542 }, { "type": "C", "frame": 18, "at": 883.4531669494553 }, { "type": "C", "frame": 31, "at": 883.4531669494553 }, { "type": "O", "frame": 24, "at": 883.453167 }, { "type": "O", "frame": 18, "at": 883.453167 }, { "type": "C", "frame": 18, "at": 886.1318340684815 }, { "type": "C", "frame": 24, "at": 886.1318340684815 }, { "type": "O", "frame": 29, "at": 886.1318340684815 }, { "type": "O", "frame": 18, "at": 886.1318340684815 }, { "type": "C", "frame": 18, "at": 887.4825420078125 }, { "type": "C", "frame": 29, "at": 887.4825420078125 }, { "type": "O", "frame": 24, "at": 887.4825420078125 }, { "type": "O", "frame": 18, "at": 887.4825420078125 }, { "type": "C", "frame": 18, "at": 888.8497919656677 }, { "type": "C", "frame": 24, "at": 888.8497919656677 }, { "type": "C", "frame": 23, "at": 888.8497925720214 }, { "type": "C", "frame": 22, "at": 888.8497925720214 }, { "type": "C", "frame": 21, "at": 888.8497925720214 }, { "type": "O", "frame": 17, "at": 888.8497925720214 }, { "type": "O", "frame": 18, "at": 888.8497925720214 }, { "type": "C", "frame": 18, "at": 892.9653749429626 }, { "type": "C", "frame": 17, "at": 892.9653749429626 }, { "type": "O", "frame": 19, "at": 892.965375 }, { "type": "O", "frame": 18, "at": 892.965375 }, { "type": "C", "frame": 18, "at": 901.0033751068115 }, { "type": "C", "frame": 19, "at": 901.0033751068115 }, { "type": "C", "frame": 16, "at": 901.0033751068115 }, { "type": "C", "frame": 15, "at": 901.0033751068115 }, { "type": "C", "frame": 14, "at": 901.0033751068115 }, { "type": "C", "frame": 13, "at": 901.0033751068115 }, { "type": "C", "frame": 12, "at": 901.0033751068115 }, { "type": "C", "frame": 11, "at": 901.0033751068115 }, { "type": "C", "frame": 10, "at": 901.0033751068115 }, { "type": "C", "frame": 9, "at": 901.0033751068115 }, { "type": "C", "frame": 8, "at": 901.0033751068115 }, { "type": "C", "frame": 7, "at": 901.0033751068115 }, { "type": "C", "frame": 6, "at": 901.0033751068115 }, { "type": "O", "frame": 20, "at": 901.0033751068115 }, { "type": "O", "frame": 8, "at": 901.0033751068115 }, { "type": "O", "frame": 9, "at": 901.0033751068115 }, { "type": "O", "frame": 10, "at": 901.0033751068115 }, { "type": "O", "frame": 11, "at": 901.0033751068115 }, { "type": "O", "frame": 12, "at": 901.0033751068115 }, { "type": "O", "frame": 13, "at": 901.0033751068115 }, { "type": "O", "frame": 14, "at": 901.0033751068115 }, { "type": "O", "frame": 15, "at": 901.0033751068115 }, { "type": "O", "frame": 16, "at": 901.0033751068115 }, { "type": "O", "frame": 21, "at": 901.0033751068115 }, { "type": "O", "frame": 22, "at": 901.0033751068115 }, { "type": "O", "frame": 23, "at": 901.0033751068115 }, { "type": "O", "frame": 24, "at": 901.0033751068115 }, { "type": "O", "frame": 18, "at": 901.0033751068115 }, { "type": "C", "frame": 18, "at": 907.7480420532227 }, { "type": "C", "frame": 24, "at": 907.7480420532227 }, { "type": "O", "frame": 28, "at": 907.7480420532227 }, { "type": "O", "frame": 18, "at": 907.7480420532227 }, { "type": "C", "frame": 18, "at": 909.0899590379639 }, { "type": "C", "frame": 28, "at": 909.0899590379639 }, { "type": "O", "frame": 24, "at": 909.0899590379639 }, { "type": "O", "frame": 18, "at": 909.0899590379639 }, { "type": "C", "frame": 18, "at": 910.4384590133515 }, { "type": "C", "frame": 24, "at": 910.4384590133515 }, { "type": "C", "frame": 23, "at": 910.4384593429565 }, { "type": "C", "frame": 22, "at": 910.4384593429565 }, { "type": "C", "frame": 21, "at": 910.4384593429565 }, { "type": "O", "frame": 17, "at": 910.4384593429565 }, { "type": "O", "frame": 18, "at": 910.4384593429565 }, { "type": "C", "frame": 18, "at": 914.5943342059936 }, { "type": "C", "frame": 17, "at": 914.5943342059936 }, { "type": "O", "frame": 19, "at": 914.5943342059936 }, { "type": "O", "frame": 18, "at": 914.5943342059936 }, { "type": "C", "frame": 18, "at": 915.9800840553131 }, { "type": "C", "frame": 19, "at": 915.9800840553131 }, { "type": "C", "frame": 16, "at": 915.9800843658447 }, { "type": "C", "frame": 15, "at": 915.9800843658447 }, { "type": "C", "frame": 14, "at": 915.9800843658447 }, { "type": "C", "frame": 13, "at": 915.9800843658447 }, { "type": "C", "frame": 12, "at": 915.9800843658447 }, { "type": "C", "frame": 11, "at": 915.9800843658447 }, { "type": "C", "frame": 10, "at": 915.9800843658447 }, { "type": "C", "frame": 9, "at": 915.9800843658447 }, { "type": "C", "frame": 8, "at": 915.9800843658447 }, { "type": "O", "frame": 18, "at": 915.9800843658447 }, { "type": "C", "frame": 18, "at": 917.3261249641266 }, { "type": "C", "frame": 20, "at": 917.3261250915527 }, { "type": "O", "frame": 6, "at": 917.3261250915527 }, { "type": "O", "frame": 7, "at": 917.3261250915527 }, { "type": "O", "frame": 8, "at": 917.3261250915527 }, { "type": "O", "frame": 9, "at": 917.3261250915527 }, { "type": "O", "frame": 10, "at": 917.3261250915527 }, { "type": "O", "frame": 11, "at": 917.3261250915527 }, { "type": "O", "frame": 12, "at": 917.3261250915527 }, { "type": "O", "frame": 13, "at": 917.3261250915527 }, { "type": "O", "frame": 14, "at": 917.3261250915527 }, { "type": "O", "frame": 15, "at": 917.3261250915527 }, { "type": "O", "frame": 16, "at": 917.3261250915527 }, { "type": "O", "frame": 21, "at": 917.3261250915527 }, { "type": "O", "frame": 22, "at": 917.3261250915527 }, { "type": "O", "frame": 23, "at": 917.3261250915527 }, { "type": "O", "frame": 24, "at": 917.3261250915527 }, { "type": "O", "frame": 18, "at": 917.3261250915527 }, { "type": "C", "frame": 18, "at": 920.0154169540406 }, { "type": "C", "frame": 24, "at": 920.0154169540406 }, { "type": "O", "frame": 26, "at": 920.015417 }, { "type": "O", "frame": 18, "at": 920.015417 }, { "type": "C", "frame": 18, "at": 921.3607089721603 }, { "type": "C", "frame": 26, "at": 921.3607089721603 }, { "type": "O", "frame": 24, "at": 921.360709 }, { "type": "O", "frame": 18, "at": 921.360709 }, { "type": "C", "frame": 18, "at": 925.3974588397828 }, { "type": "C", "frame": 24, "at": 925.3974588397828 }, { "type": "C", "frame": 23, "at": 925.3974588851929 }, { "type": "C", "frame": 22, "at": 925.3974588851929 }, { "type": "C", "frame": 21, "at": 925.3974588851929 }, { "type": "O", "frame": 17, "at": 925.397459 }, { "type": "O", "frame": 18, "at": 925.397459 }, { "type": "C", "frame": 18, "at": 929.6092090305176 }, { "type": "C", "frame": 17, "at": 929.6092090305176 }, { "type": "O", "frame": 19, "at": 929.6092090305176 }, { "type": "O", "frame": 18, "at": 929.6092090305176 }, { "type": "C", "frame": 18, "at": 937.5960006107177 }, { "type": "C", "frame": 19, "at": 937.5960006107177 }, { "type": "C", "frame": 16, "at": 937.5960006107177 }, { "type": "C", "frame": 15, "at": 937.5960006107177 }, { "type": "C", "frame": 14, "at": 937.5960006107177 }, { "type": "C", "frame": 13, "at": 937.5960006107177 }, { "type": "C", "frame": 12, "at": 937.5960006107177 }, { "type": "C", "frame": 11, "at": 937.5960006107177 }, { "type": "C", "frame": 10, "at": 937.5960006107177 }, { "type": "C", "frame": 9, "at": 937.5960006107177 }, { "type": "C", "frame": 8, "at": 937.5960006107177 }, { "type": "C", "frame": 7, "at": 937.5960006107177 }, { "type": "C", "frame": 6, "at": 937.5960006107177 }, { "type": "O", "frame": 20, "at": 937.5960006107177 }, { "type": "O", "frame": 8, "at": 937.5960006107177 }, { "type": "O", "frame": 9, "at": 937.5960006107177 }, { "type": "O", "frame": 10, "at": 937.5960006107177 }, { "type": "O", "frame": 11, "at": 937.5960006107177 }, { "type": "O", "frame": 12, "at": 937.5960006107177 }, { "type": "O", "frame": 13, "at": 937.5960006107177 }, { "type": "O", "frame": 14, "at": 937.5960006107177 }, { "type": "O", "frame": 15, "at": 937.5960006107177 }, { "type": "O", "frame": 16, "at": 937.5960006107177 }, { "type": "O", "frame": 21, "at": 937.5960006107177 }, { "type": "O", "frame": 22, "at": 937.5960006107177 }, { "type": "O", "frame": 23, "at": 937.5960006107177 }, { "type": "O", "frame": 24, "at": 937.5960006107177 }, { "type": "O", "frame": 18, "at": 937.5960006107177 }, { "type": "C", "frame": 18, "at": 944.3293340644836 }, { "type": "C", "frame": 24, "at": 944.3293340644836 }, { "type": "O", "frame": 29, "at": 944.3293340644836 }, { "type": "O", "frame": 18, "at": 944.3293340644836 }, { "type": "C", "frame": 18, "at": 945.6790840419617 }, { "type": "C", "frame": 29, "at": 945.6790840419617 }, { "type": "C", "frame": 23, "at": 945.6790841064453 }, { "type": "C", "frame": 22, "at": 945.6790841064453 }, { "type": "C", "frame": 21, "at": 945.6790841064453 }, { "type": "O", "frame": 17, "at": 945.6790841064453 }, { "type": "O", "frame": 18, "at": 945.6790841064453 }, { "type": "C", "frame": 18, "at": 951.1804591983642 }, { "type": "C", "frame": 17, "at": 951.1804591983642 }, { "type": "O", "frame": 19, "at": 951.1804591983642 }, { "type": "O", "frame": 18, "at": 951.1804591983642 }, { "type": "C", "frame": 18, "at": 957.8604593051758 }, { "type": "C", "frame": 19, "at": 957.8604593051758 }, { "type": "C", "frame": 16, "at": 957.8604593051758 }, { "type": "C", "frame": 15, "at": 957.8604593051758 }, { "type": "C", "frame": 14, "at": 957.8604593051758 }, { "type": "C", "frame": 13, "at": 957.8604593051758 }, { "type": "C", "frame": 12, "at": 957.8604593051758 }, { "type": "C", "frame": 11, "at": 957.8604593051758 }, { "type": "C", "frame": 10, "at": 957.8604593051758 }, { "type": "C", "frame": 9, "at": 957.8604593051758 }, { "type": "C", "frame": 8, "at": 957.8604593051758 }, { "type": "C", "frame": 20, "at": 957.8604593051758 }, { "type": "O", "frame": 6, "at": 957.8604593051758 }, { "type": "O", "frame": 7, "at": 957.8604593051758 }, { "type": "O", "frame": 8, "at": 957.8604593051758 }, { "type": "O", "frame": 32, "at": 957.8604593051758 }, { "type": "O", "frame": 33, "at": 957.8604593051758 }, { "type": "O", "frame": 34, "at": 957.8604593051758 }, { "type": "O", "frame": 39, "at": 957.8604593051758 }, { "type": "O", "frame": 35, "at": 957.8604593051758 }, { "type": "O", "frame": 18, "at": 957.8604593051758 }, { "type": "C", "frame": 18, "at": 959.2035839856949 }, { "type": "C", "frame": 35, "at": 959.2035839856949 }, { "type": "C", "frame": 39, "at": 959.2035839856949 }, { "type": "C", "frame": 34, "at": 959.2035839856949 }, { "type": "C", "frame": 33, "at": 959.2035839856949 }, { "type": "C", "frame": 32, "at": 959.2035839856949 }, { "type": "O", "frame": 9, "at": 959.203584 }, { "type": "O", "frame": 10, "at": 959.203584 }, { "type": "O", "frame": 11, "at": 959.203584 }, { "type": "O", "frame": 12, "at": 959.203584 }, { "type": "O", "frame": 13, "at": 959.203584 }, { "type": "O", "frame": 14, "at": 959.203584 }, { "type": "O", "frame": 15, "at": 959.203584 }, { "type": "O", "frame": 16, "at": 959.203584 }, { "type": "O", "frame": 21, "at": 959.203584 }, { "type": "O", "frame": 22, "at": 959.203584 }, { "type": "O", "frame": 23, "at": 959.203584 }, { "type": "O", "frame": 24, "at": 959.203584 }, { "type": "O", "frame": 18, "at": 959.203584 }, { "type": "C", "frame": 18, "at": 967.2928746188965 }, { "type": "C", "frame": 24, "at": 967.2928746188965 }, { "type": "C", "frame": 23, "at": 967.2928746188965 }, { "type": "C", "frame": 22, "at": 967.2928746188965 }, { "type": "C", "frame": 21, "at": 967.2928746188965 }, { "type": "O", "frame": 17, "at": 967.292875 }, { "type": "O", "frame": 18, "at": 967.292875 }, { "type": "C", "frame": 18, "at": 972.8733746490478 }, { "type": "C", "frame": 17, "at": 972.8733746490478 }, { "type": "O", "frame": 19, "at": 972.873375 }, { "type": "O", "frame": 18, "at": 972.873375 }, { "type": "C", "frame": 18, "at": 974.2358339443207 }, { "type": "C", "frame": 19, "at": 974.2358339443207 }, { "type": "C", "frame": 16, "at": 974.2358339443207 }, { "type": "C", "frame": 15, "at": 974.2358339443207 }, { "type": "C", "frame": 14, "at": 974.2358339443207 }, { "type": "C", "frame": 13, "at": 974.2358339443207 }, { "type": "C", "frame": 12, "at": 974.2358339443207 }, { "type": "C", "frame": 11, "at": 974.2358339443207 }, { "type": "C", "frame": 10, "at": 974.2358339443207 }, { "type": "C", "frame": 9, "at": 974.2358339443207 }, { "type": "C", "frame": 8, "at": 974.2358339443207 }, { "type": "C", "frame": 7, "at": 974.2358339443207 }, { "type": "C", "frame": 6, "at": 974.2358339443207 }, { "type": "O", "frame": 20, "at": 974.235834 }, { "type": "O", "frame": 8, "at": 974.235834 }, { "type": "O", "frame": 9, "at": 974.235834 }, { "type": "O", "frame": 10, "at": 974.235834 }, { "type": "O", "frame": 11, "at": 974.235834 }, { "type": "O", "frame": 12, "at": 974.235834 }, { "type": "O", "frame": 13, "at": 974.235834 }, { "type": "O", "frame": 14, "at": 974.235834 }, { "type": "O", "frame": 15, "at": 974.235834 }, { "type": "O", "frame": 16, "at": 974.235834 }, { "type": "O", "frame": 21, "at": 974.235834 }, { "type": "O", "frame": 22, "at": 974.235834 }, { "type": "O", "frame": 23, "at": 974.235834 }, { "type": "O", "frame": 31, "at": 974.235834 }, { "type": "O", "frame": 18, "at": 974.235834 }, { "type": "C", "frame": 18, "at": 975.581791994461 }, { "type": "C", "frame": 31, "at": 975.581791994461 }, { "type": "O", "frame": 24, "at": 975.581792 }, { "type": "O", "frame": 18, "at": 975.581792 }, { "type": "C", "frame": 18, "at": 978.2617918283386 }, { "type": "C", "frame": 24, "at": 978.2617918283386 }, { "type": "O", "frame": 28, "at": 978.261792 }, { "type": "O", "frame": 18, "at": 978.261792 }, { "type": "C", "frame": 18, "at": 979.6035839874191 }, { "type": "C", "frame": 28, "at": 979.6035839874191 }, { "type": "O", "frame": 24, "at": 979.603584 }, { "type": "O", "frame": 18, "at": 979.603584 }, { "type": "C", "frame": 18, "at": 982.3042499507751 }, { "type": "C", "frame": 24, "at": 982.3042499507751 }, { "type": "C", "frame": 23, "at": 982.3042505954589 }, { "type": "C", "frame": 22, "at": 982.3042505954589 }, { "type": "C", "frame": 21, "at": 982.3042505954589 }, { "type": "O", "frame": 17, "at": 982.3042505954589 }, { "type": "O", "frame": 18, "at": 982.3042505954589 }, { "type": "C", "frame": 18, "at": 986.520917175293 }, { "type": "C", "frame": 17, "at": 986.520917175293 }, { "type": "O", "frame": 19, "at": 986.520917175293 }, { "type": "O", "frame": 18, "at": 986.520917175293 }, { "type": "C", "frame": 18, "at": 995.8611250535889 }, { "type": "C", "frame": 19, "at": 995.8611250535889 }, { "type": "C", "frame": 16, "at": 995.8611250535889 }, { "type": "C", "frame": 15, "at": 995.8611250535889 }, { "type": "C", "frame": 14, "at": 995.8611250535889 }, { "type": "C", "frame": 13, "at": 995.8611250535889 }, { "type": "C", "frame": 12, "at": 995.8611250535889 }, { "type": "C", "frame": 11, "at": 995.8611250535889 }, { "type": "C", "frame": 10, "at": 995.8611250535889 }, { "type": "C", "frame": 9, "at": 995.8611250535889 }, { "type": "C", "frame": 8, "at": 995.8611250535889 }, { "type": "C", "frame": 20, "at": 995.8611250535889 }, { "type": "O", "frame": 6, "at": 995.8611250535889 }, { "type": "O", "frame": 7, "at": 995.8611250535889 }, { "type": "O", "frame": 8, "at": 995.8611250535889 }, { "type": "O", "frame": 9, "at": 995.8611250535889 }, { "type": "O", "frame": 10, "at": 995.8611250535889 }, { "type": "O", "frame": 11, "at": 995.8611250535889 }, { "type": "O", "frame": 12, "at": 995.8611250535889 }, { "type": "O", "frame": 13, "at": 995.8611250535889 }, { "type": "O", "frame": 14, "at": 995.8611250535889 }, { "type": "O", "frame": 15, "at": 995.8611250535889 }, { "type": "O", "frame": 16, "at": 995.8611250535889 }, { "type": "O", "frame": 21, "at": 995.8611250535889 }, { "type": "O", "frame": 22, "at": 995.8611250535889 }, { "type": "O", "frame": 23, "at": 995.8611250535889 }, { "type": "O", "frame": 24, "at": 995.8611250535889 }, { "type": "O", "frame": 18, "at": 995.8611250535889 }, { "type": "C", "frame": 18, "at": 1002.6001248435974 }, { "type": "C", "frame": 24, "at": 1002.6001248435974 }, { "type": "O", "frame": 29, "at": 1002.600125 }, { "type": "O", "frame": 18, "at": 1002.600125 }, { "type": "C", "frame": 18, "at": 1003.9434999675751 }, { "type": "C", "frame": 29, "at": 1003.9434999675751 }, { "type": "O", "frame": 24, "at": 1003.9435 }, { "type": "O", "frame": 18, "at": 1003.9435 }, { "type": "C", "frame": 18, "at": 1005.3087919530868 }, { "type": "C", "frame": 24, "at": 1005.3087919530868 }, { "type": "C", "frame": 23, "at": 1005.3087919530868 }, { "type": "C", "frame": 22, "at": 1005.3087919530868 }, { "type": "C", "frame": 21, "at": 1005.3087919530868 }, { "type": "O", "frame": 17, "at": 1005.308792 }, { "type": "O", "frame": 18, "at": 1005.308792 }, { "type": "C", "frame": 18, "at": 1010.9471253206177 }, { "type": "C", "frame": 17, "at": 1010.9471253206177 }, { "type": "O", "frame": 19, "at": 1010.9471253206177 }, { "type": "O", "frame": 18, "at": 1010.9471253206177 }, { "type": "C", "frame": 18, "at": 1012.2907920303345 }, { "type": "C", "frame": 19, "at": 1012.2907920303345 }, { "type": "C", "frame": 16, "at": 1012.2907920303345 }, { "type": "C", "frame": 15, "at": 1012.2907920303345 }, { "type": "C", "frame": 14, "at": 1012.2907920303345 }, { "type": "C", "frame": 13, "at": 1012.2907920303345 }, { "type": "C", "frame": 12, "at": 1012.2907920303345 }, { "type": "C", "frame": 11, "at": 1012.2907920303345 }, { "type": "C", "frame": 10, "at": 1012.2907920303345 }, { "type": "C", "frame": 9, "at": 1012.2907920303345 }, { "type": "C", "frame": 8, "at": 1012.2907920303345 }, { "type": "C", "frame": 7, "at": 1012.2907920303345 }, { "type": "C", "frame": 6, "at": 1012.2907920303345 }, { "type": "O", "frame": 20, "at": 1012.2907920303345 }, { "type": "O", "frame": 8, "at": 1012.2907920303345 }, { "type": "O", "frame": 9, "at": 1012.2907920303345 }, { "type": "O", "frame": 10, "at": 1012.2907920303345 }, { "type": "O", "frame": 11, "at": 1012.2907920303345 }, { "type": "O", "frame": 12, "at": 1012.2907920303345 }, { "type": "O", "frame": 13, "at": 1012.2907920303345 }, { "type": "O", "frame": 14, "at": 1012.2907920303345 }, { "type": "O", "frame": 15, "at": 1012.2907920303345 }, { "type": "O", "frame": 16, "at": 1012.2907920303345 }, { "type": "O", "frame": 21, "at": 1012.2907920303345 }, { "type": "O", "frame": 22, "at": 1012.2907920303345 }, { "type": "O", "frame": 23, "at": 1012.2907920303345 }, { "type": "O", "frame": 24, "at": 1012.2907920303345 }, { "type": "O", "frame": 18, "at": 1012.2907920303345 }, { "type": "C", "frame": 18, "at": 1019.0152497407837 }, { "type": "C", "frame": 24, "at": 1019.0152497407837 }, { "type": "O", "frame": 29, "at": 1019.01525 }, { "type": "O", "frame": 18, "at": 1019.01525 }, { "type": "C", "frame": 18, "at": 1020.3700419988633 }, { "type": "C", "frame": 29, "at": 1020.3700419988633 }, { "type": "C", "frame": 23, "at": 1020.3700419988633 }, { "type": "C", "frame": 22, "at": 1020.3700419988633 }, { "type": "C", "frame": 21, "at": 1020.3700419988633 }, { "type": "O", "frame": 17, "at": 1020.370042 }, { "type": "O", "frame": 18, "at": 1020.370042 }, { "type": "C", "frame": 18, "at": 1026.042124901001 }, { "type": "C", "frame": 17, "at": 1026.042124901001 }, { "type": "O", "frame": 19, "at": 1026.042125 }, { "type": "O", "frame": 18, "at": 1026.042125 }, { "type": "C", "frame": 18, "at": 1034.0905420913696 }, { "type": "C", "frame": 19, "at": 1034.0905420913696 }, { "type": "C", "frame": 16, "at": 1034.0905420913696 }, { "type": "C", "frame": 15, "at": 1034.0905420913696 }, { "type": "C", "frame": 14, "at": 1034.0905420913696 }, { "type": "C", "frame": 13, "at": 1034.0905420913696 }, { "type": "C", "frame": 12, "at": 1034.0905420913696 }, { "type": "C", "frame": 11, "at": 1034.0905420913696 }, { "type": "C", "frame": 10, "at": 1034.0905420913696 }, { "type": "C", "frame": 9, "at": 1034.0905420913696 }, { "type": "C", "frame": 8, "at": 1034.0905420913696 }, { "type": "C", "frame": 20, "at": 1034.0905420913696 }, { "type": "O", "frame": 6, "at": 1034.0905420913696 }, { "type": "O", "frame": 7, "at": 1034.0905420913696 }, { "type": "O", "frame": 8, "at": 1034.0905420913696 }, { "type": "O", "frame": 9, "at": 1034.0905420913696 }, { "type": "O", "frame": 10, "at": 1034.0905420913696 }, { "type": "O", "frame": 11, "at": 1034.0905420913696 }, { "type": "O", "frame": 12, "at": 1034.0905420913696 }, { "type": "O", "frame": 13, "at": 1034.0905420913696 }, { "type": "O", "frame": 14, "at": 1034.0905420913696 }, { "type": "O", "frame": 15, "at": 1034.0905420913696 }, { "type": "O", "frame": 16, "at": 1034.0905420913696 }, { "type": "O", "frame": 21, "at": 1034.0905420913696 }, { "type": "O", "frame": 22, "at": 1034.0905420913696 }, { "type": "O", "frame": 23, "at": 1034.0905420913696 }, { "type": "O", "frame": 24, "at": 1034.0905420913696 }, { "type": "O", "frame": 18, "at": 1034.0905420913696 }, { "type": "C", "frame": 18, "at": 1042.172416847412 }, { "type": "C", "frame": 24, "at": 1042.172416847412 }, { "type": "C", "frame": 23, "at": 1042.172416847412 }, { "type": "C", "frame": 22, "at": 1042.172416847412 }, { "type": "C", "frame": 21, "at": 1042.172416847412 }, { "type": "O", "frame": 17, "at": 1042.172417 }, { "type": "O", "frame": 18, "at": 1042.172417 }, { "type": "C", "frame": 18, "at": 1047.6692918092651 }, { "type": "C", "frame": 17, "at": 1047.6692918092651 }, { "type": "O", "frame": 19, "at": 1047.669292 }, { "type": "O", "frame": 18, "at": 1047.669292 }, { "type": "C", "frame": 18, "at": 1054.337417152588 }, { "type": "C", "frame": 19, "at": 1054.337417152588 }, { "type": "C", "frame": 16, "at": 1054.3374177629394 }, { "type": "C", "frame": 15, "at": 1054.3374177629394 }, { "type": "C", "frame": 14, "at": 1054.3374177629394 }, { "type": "C", "frame": 13, "at": 1054.3374177629394 }, { "type": "C", "frame": 12, "at": 1054.3374177629394 }, { "type": "C", "frame": 11, "at": 1054.3374177629394 }, { "type": "C", "frame": 10, "at": 1054.3374177629394 }, { "type": "C", "frame": 9, "at": 1054.3374177629394 }, { "type": "C", "frame": 8, "at": 1054.3374177629394 }, { "type": "C", "frame": 7, "at": 1054.3374177629394 }, { "type": "C", "frame": 6, "at": 1054.3374177629394 }, { "type": "O", "frame": 20, "at": 1054.3374177629394 }, { "type": "O", "frame": 8, "at": 1054.3374177629394 }, { "type": "O", "frame": 9, "at": 1054.3374177629394 }, { "type": "O", "frame": 10, "at": 1054.3374177629394 }, { "type": "O", "frame": 11, "at": 1054.3374177629394 }, { "type": "O", "frame": 12, "at": 1054.3374177629394 }, { "type": "O", "frame": 13, "at": 1054.3374177629394 }, { "type": "O", "frame": 14, "at": 1054.3374177629394 }, { "type": "O", "frame": 15, "at": 1054.3374177629394 }, { "type": "O", "frame": 16, "at": 1054.3374177629394 }, { "type": "O", "frame": 21, "at": 1054.3374177629394 }, { "type": "O", "frame": 22, "at": 1054.3374177629394 }, { "type": "O", "frame": 23, "at": 1054.3374177629394 }, { "type": "O", "frame": 24, "at": 1054.3374177629394 }, { "type": "O", "frame": 18, "at": 1054.3374177629394 }, { "type": "C", "frame": 18, "at": 1063.743874901001 }, { "type": "C", "frame": 24, "at": 1063.743874901001 }, { "type": "C", "frame": 23, "at": 1063.743874901001 }, { "type": "C", "frame": 22, "at": 1063.743874901001 }, { "type": "C", "frame": 21, "at": 1063.743874901001 }, { "type": "O", "frame": 17, "at": 1063.743875 }, { "type": "O", "frame": 18, "at": 1063.743875 }, { "type": "C", "frame": 18, "at": 1067.8443751068114 }, { "type": "C", "frame": 17, "at": 1067.8443751068114 }, { "type": "O", "frame": 19, "at": 1067.8443751068114 }, { "type": "O", "frame": 18, "at": 1067.8443751068114 }, { "type": "C", "frame": 18, "at": 1069.1800839757918 }, { "type": "C", "frame": 19, "at": 1069.1800839757918 }, { "type": "C", "frame": 16, "at": 1069.1800839757918 }, { "type": "C", "frame": 15, "at": 1069.1800839757918 }, { "type": "C", "frame": 14, "at": 1069.1800839757918 }, { "type": "C", "frame": 13, "at": 1069.1800839757918 }, { "type": "C", "frame": 12, "at": 1069.1800839757918 }, { "type": "C", "frame": 11, "at": 1069.1800839757918 }, { "type": "C", "frame": 10, "at": 1069.1800839757918 }, { "type": "C", "frame": 9, "at": 1069.1800839757918 }, { "type": "C", "frame": 8, "at": 1069.1800839757918 }, { "type": "C", "frame": 20, "at": 1069.1800839757918 }, { "type": "O", "frame": 6, "at": 1069.180084 }, { "type": "O", "frame": 7, "at": 1069.180084 }, { "type": "O", "frame": 18, "at": 1069.180084 }, { "type": "C", "frame": 18, "at": 1070.5383340219346 }, { "type": "O", "frame": 8, "at": 1070.5383340219346 }, { "type": "O", "frame": 9, "at": 1070.5383340219346 }, { "type": "O", "frame": 10, "at": 1070.5383340219346 }, { "type": "O", "frame": 11, "at": 1070.5383340219346 }, { "type": "O", "frame": 12, "at": 1070.5383340219346 }, { "type": "O", "frame": 13, "at": 1070.5383340219346 }, { "type": "O", "frame": 14, "at": 1070.5383340219346 }, { "type": "O", "frame": 15, "at": 1070.5383340219346 }, { "type": "O", "frame": 16, "at": 1070.5383340219346 }, { "type": "O", "frame": 21, "at": 1070.5383340219346 }, { "type": "O", "frame": 22, "at": 1070.5383340219346 }, { "type": "O", "frame": 23, "at": 1070.5383340219346 }, { "type": "O", "frame": 24, "at": 1070.5383340219346 }, { "type": "O", "frame": 18, "at": 1070.5383340219346 }, { "type": "C", "frame": 18, "at": 1078.583500015625 }, { "type": "C", "frame": 24, "at": 1078.583500015625 }, { "type": "C", "frame": 23, "at": 1078.583500015625 }, { "type": "C", "frame": 22, "at": 1078.583500015625 }, { "type": "C", "frame": 21, "at": 1078.583500015625 }, { "type": "O", "frame": 17, "at": 1078.583500015625 }, { "type": "O", "frame": 18, "at": 1078.583500015625 }, { "type": "C", "frame": 18, "at": 1084.0609169921875 }, { "type": "C", "frame": 17, "at": 1084.0609169921875 }, { "type": "O", "frame": 19, "at": 1084.060917 }, { "type": "O", "frame": 18, "at": 1084.060917 }, { "type": "C", "frame": 18, "at": 1090.733250240509 }, { "type": "C", "frame": 19, "at": 1090.733250240509 }, { "type": "C", "frame": 16, "at": 1090.733250240509 }, { "type": "C", "frame": 15, "at": 1090.733250240509 }, { "type": "C", "frame": 14, "at": 1090.733250240509 }, { "type": "C", "frame": 13, "at": 1090.733250240509 }, { "type": "C", "frame": 12, "at": 1090.733250240509 }, { "type": "C", "frame": 11, "at": 1090.733250240509 }, { "type": "C", "frame": 10, "at": 1090.733250240509 }, { "type": "C", "frame": 9, "at": 1090.733250240509 }, { "type": "C", "frame": 8, "at": 1090.733250240509 }, { "type": "C", "frame": 7, "at": 1090.7332513431397 }, { "type": "C", "frame": 6, "at": 1090.7332513431397 }, { "type": "O", "frame": 20, "at": 1090.7332513431397 }, { "type": "O", "frame": 8, "at": 1090.7332513431397 }, { "type": "O", "frame": 9, "at": 1090.7332513431397 }, { "type": "O", "frame": 10, "at": 1090.7332513431397 }, { "type": "O", "frame": 11, "at": 1090.7332513431397 }, { "type": "O", "frame": 12, "at": 1090.7332513431397 }, { "type": "O", "frame": 13, "at": 1090.7332513431397 }, { "type": "O", "frame": 14, "at": 1090.7332513431397 }, { "type": "O", "frame": 15, "at": 1090.7332513431397 }, { "type": "O", "frame": 16, "at": 1090.7332513431397 }, { "type": "O", "frame": 21, "at": 1090.7332513431397 }, { "type": "O", "frame": 22, "at": 1090.7332513431397 }, { "type": "O", "frame": 23, "at": 1090.7332513431397 }, { "type": "O", "frame": 24, "at": 1090.7332513431397 }, { "type": "O", "frame": 18, "at": 1090.7332513431397 }, { "type": "C", "frame": 18, "at": 1100.145917274475 }, { "type": "C", "frame": 24, "at": 1100.145917274475 }, { "type": "C", "frame": 23, "at": 1100.145917274475 }, { "type": "C", "frame": 22, "at": 1100.145917274475 }, { "type": "C", "frame": 21, "at": 1100.145917274475 }, { "type": "O", "frame": 17, "at": 1100.145917274475 }, { "type": "O", "frame": 18, "at": 1100.145917274475 }, { "type": "C", "frame": 18, "at": 1105.6759596483155 }, { "type": "C", "frame": 17, "at": 1105.6759596483155 }, { "type": "O", "frame": 19, "at": 1105.6759596483155 }, { "type": "O", "frame": 18, "at": 1105.6759596483155 }, { "type": "C", "frame": 18, "at": 1107.0544170230712 }, { "type": "C", "frame": 19, "at": 1107.0544170230712 }, { "type": "C", "frame": 16, "at": 1107.0544170230712 }, { "type": "C", "frame": 15, "at": 1107.0544170230712 }, { "type": "C", "frame": 14, "at": 1107.0544170230712 }, { "type": "C", "frame": 13, "at": 1107.0544170230712 }, { "type": "C", "frame": 12, "at": 1107.0544170230712 }, { "type": "C", "frame": 11, "at": 1107.0544170230712 }, { "type": "C", "frame": 10, "at": 1107.0544170230712 }, { "type": "C", "frame": 9, "at": 1107.0544170230712 }, { "type": "C", "frame": 8, "at": 1107.0544170230712 }, { "type": "O", "frame": 18, "at": 1107.0544170230712 }, { "type": "C", "frame": 18, "at": 1108.4118749954148 }, { "type": "C", "frame": 20, "at": 1108.4118751068115 }, { "type": "O", "frame": 6, "at": 1108.4118751068115 }, { "type": "O", "frame": 7, "at": 1108.4118751068115 }, { "type": "O", "frame": 8, "at": 1108.4118751068115 }, { "type": "O", "frame": 9, "at": 1108.4118751068115 }, { "type": "O", "frame": 10, "at": 1108.4118751068115 }, { "type": "O", "frame": 11, "at": 1108.4118751068115 }, { "type": "O", "frame": 12, "at": 1108.4118751068115 }, { "type": "O", "frame": 13, "at": 1108.4118751068115 }, { "type": "O", "frame": 14, "at": 1108.4118751068115 }, { "type": "O", "frame": 15, "at": 1108.4118751068115 }, { "type": "O", "frame": 16, "at": 1108.4118751068115 }, { "type": "O", "frame": 21, "at": 1108.4118751068115 }, { "type": "O", "frame": 22, "at": 1108.4118751068115 }, { "type": "O", "frame": 23, "at": 1108.4118751068115 }, { "type": "O", "frame": 24, "at": 1108.4118751068115 }, { "type": "O", "frame": 18, "at": 1108.4118751068115 }, { "type": "C", "frame": 18, "at": 1112.4527499580383 }, { "type": "C", "frame": 24, "at": 1112.4527499580383 }, { "type": "O", "frame": 31, "at": 1112.45275 }, { "type": "O", "frame": 18, "at": 1112.45275 }, { "type": "C", "frame": 18, "at": 1113.7986250247955 }, { "type": "C", "frame": 31, "at": 1113.7986250247955 }, { "type": "O", "frame": 24, "at": 1113.7986250247955 }, { "type": "O", "frame": 18, "at": 1113.7986250247955 }, { "type": "C", "frame": 18, "at": 1115.1428339557647 }, { "type": "C", "frame": 24, "at": 1115.1428339557647 }, { "type": "O", "frame": 29, "at": 1115.142834 }, { "type": "O", "frame": 18, "at": 1115.142834 }, { "type": "C", "frame": 18, "at": 1116.498292021164 }, { "type": "C", "frame": 29, "at": 1116.498292021164 }, { "type": "C", "frame": 23, "at": 1116.4982921981812 }, { "type": "C", "frame": 22, "at": 1116.4982921981812 }, { "type": "C", "frame": 21, "at": 1116.4982921981812 }, { "type": "O", "frame": 17, "at": 1116.4982921981812 }, { "type": "O", "frame": 18, "at": 1116.4982921981812 }, { "type": "C", "frame": 18, "at": 1122.0407920190735 }, { "type": "C", "frame": 17, "at": 1122.0407920190735 }, { "type": "O", "frame": 19, "at": 1122.0407920190735 }, { "type": "O", "frame": 18, "at": 1122.0407920190735 }, { "type": "C", "frame": 18, "at": 1128.7203750726624 }, { "type": "C", "frame": 19, "at": 1128.7203750726624 }, { "type": "C", "frame": 16, "at": 1128.720375289917 }, { "type": "C", "frame": 15, "at": 1128.720375289917 }, { "type": "C", "frame": 14, "at": 1128.720375289917 }, { "type": "C", "frame": 13, "at": 1128.720375289917 }, { "type": "C", "frame": 12, "at": 1128.720375289917 }, { "type": "C", "frame": 11, "at": 1128.720375289917 }, { "type": "C", "frame": 10, "at": 1128.720375289917 }, { "type": "C", "frame": 9, "at": 1128.720375289917 }, { "type": "C", "frame": 8, "at": 1128.720375289917 }, { "type": "C", "frame": 7, "at": 1128.720375289917 }, { "type": "C", "frame": 6, "at": 1128.720375289917 }, { "type": "O", "frame": 20, "at": 1128.720375289917 }, { "type": "O", "frame": 8, "at": 1128.720375289917 }, { "type": "O", "frame": 9, "at": 1128.720375289917 }, { "type": "O", "frame": 10, "at": 1128.720375289917 }, { "type": "O", "frame": 11, "at": 1128.720375289917 }, { "type": "O", "frame": 12, "at": 1128.720375289917 }, { "type": "O", "frame": 13, "at": 1128.720375289917 }, { "type": "O", "frame": 14, "at": 1128.720375289917 }, { "type": "O", "frame": 15, "at": 1128.720375289917 }, { "type": "O", "frame": 16, "at": 1128.720375289917 }, { "type": "O", "frame": 21, "at": 1128.720375289917 }, { "type": "O", "frame": 22, "at": 1128.720375289917 }, { "type": "O", "frame": 23, "at": 1128.720375289917 }, { "type": "O", "frame": 24, "at": 1128.720375289917 }, { "type": "O", "frame": 18, "at": 1128.720375289917 }, { "type": "C", "frame": 18, "at": 1138.2952918395997 }, { "type": "C", "frame": 24, "at": 1138.2952918395997 }, { "type": "C", "frame": 23, "at": 1138.2952918395997 }, { "type": "C", "frame": 22, "at": 1138.2952918395997 }, { "type": "C", "frame": 21, "at": 1138.2952918395997 }, { "type": "O", "frame": 17, "at": 1138.295292 }, { "type": "O", "frame": 18, "at": 1138.295292 }, { "type": "C", "frame": 18, "at": 1143.78920946521 }, { "type": "C", "frame": 17, "at": 1143.78920946521 }, { "type": "O", "frame": 19, "at": 1143.78920946521 }, { "type": "O", "frame": 18, "at": 1143.78920946521 }, { "type": "C", "frame": 18, "at": 1150.4658757366028 }, { "type": "C", "frame": 19, "at": 1150.4658757366028 }, { "type": "C", "frame": 16, "at": 1150.4658757366028 }, { "type": "C", "frame": 15, "at": 1150.4658757366028 }, { "type": "C", "frame": 14, "at": 1150.4658757366028 }, { "type": "C", "frame": 13, "at": 1150.4658757366028 }, { "type": "C", "frame": 12, "at": 1150.4658757366028 }, { "type": "C", "frame": 11, "at": 1150.4658757366028 }, { "type": "C", "frame": 10, "at": 1150.4658757366028 }, { "type": "C", "frame": 9, "at": 1150.4658757366028 }, { "type": "C", "frame": 8, "at": 1150.4658757366028 }, { "type": "C", "frame": 20, "at": 1150.4658757366028 }, { "type": "O", "frame": 6, "at": 1150.4658757366028 }, { "type": "O", "frame": 7, "at": 1150.4658757366028 }, { "type": "O", "frame": 8, "at": 1150.4658757366028 }, { "type": "O", "frame": 9, "at": 1150.4658757366028 }, { "type": "O", "frame": 10, "at": 1150.4658757366028 }, { "type": "O", "frame": 11, "at": 1150.4658757366028 }, { "type": "O", "frame": 12, "at": 1150.4658757366028 }, { "type": "O", "frame": 13, "at": 1150.4658757366028 }, { "type": "O", "frame": 14, "at": 1150.4658757366028 }, { "type": "O", "frame": 15, "at": 1150.4658757366028 }, { "type": "O", "frame": 16, "at": 1150.4658757366028 }, { "type": "O", "frame": 21, "at": 1150.4658757366028 }, { "type": "O", "frame": 22, "at": 1150.4658757366028 }, { "type": "O", "frame": 23, "at": 1150.4658757366028 }, { "type": "O", "frame": 24, "at": 1150.4658757366028 }, { "type": "O", "frame": 18, "at": 1150.4658757366028 }, { "type": "C", "frame": 18, "at": 1154.5138343276979 }, { "type": "C", "frame": 24, "at": 1154.5138343276979 }, { "type": "O", "frame": 31, "at": 1154.5138343276979 }, { "type": "O", "frame": 18, "at": 1154.5138343276979 }, { "type": "C", "frame": 18, "at": 1155.8610420230714 }, { "type": "C", "frame": 31, "at": 1155.8610420230714 }, { "type": "O", "frame": 24, "at": 1155.8610420230714 }, { "type": "O", "frame": 18, "at": 1155.8610420230714 }, { "type": "C", "frame": 18, "at": 1159.906249977295 }, { "type": "C", "frame": 24, "at": 1159.906249977295 }, { "type": "C", "frame": 23, "at": 1159.906250328064 }, { "type": "C", "frame": 22, "at": 1159.906250328064 }, { "type": "C", "frame": 21, "at": 1159.906250328064 }, { "type": "O", "frame": 17, "at": 1159.906250328064 }, { "type": "O", "frame": 18, "at": 1159.906250328064 }, { "type": "C", "frame": 18, "at": 1165.448875427246 }, { "type": "C", "frame": 17, "at": 1165.448875427246 }, { "type": "O", "frame": 19, "at": 1165.448875427246 }, { "type": "O", "frame": 18, "at": 1165.448875427246 }, { "type": "C", "frame": 18, "at": 1166.8140839834214 }, { "type": "C", "frame": 19, "at": 1166.8140839834214 }, { "type": "C", "frame": 16, "at": 1166.8140862884522 }, { "type": "C", "frame": 15, "at": 1166.8140862884522 }, { "type": "C", "frame": 14, "at": 1166.8140862884522 }, { "type": "C", "frame": 13, "at": 1166.8140862884522 }, { "type": "C", "frame": 12, "at": 1166.8140862884522 }, { "type": "C", "frame": 11, "at": 1166.8140862884522 }, { "type": "C", "frame": 10, "at": 1166.8140862884522 }, { "type": "C", "frame": 9, "at": 1166.8140862884522 }, { "type": "C", "frame": 8, "at": 1166.8140862884522 }, { "type": "C", "frame": 7, "at": 1166.8140862884522 }, { "type": "C", "frame": 6, "at": 1166.8140862884522 }, { "type": "O", "frame": 20, "at": 1166.8140862884522 }, { "type": "O", "frame": 8, "at": 1166.8140862884522 }, { "type": "O", "frame": 9, "at": 1166.8140862884522 }, { "type": "O", "frame": 10, "at": 1166.8140862884522 }, { "type": "O", "frame": 11, "at": 1166.8140862884522 }, { "type": "O", "frame": 12, "at": 1166.8140862884522 }, { "type": "O", "frame": 13, "at": 1166.8140862884522 }, { "type": "O", "frame": 14, "at": 1166.8140862884522 }, { "type": "O", "frame": 15, "at": 1166.8140862884522 }, { "type": "O", "frame": 16, "at": 1166.8140862884522 }, { "type": "O", "frame": 21, "at": 1166.8140862884522 }, { "type": "O", "frame": 22, "at": 1166.8140862884522 }, { "type": "O", "frame": 23, "at": 1166.8140862884522 }, { "type": "O", "frame": 24, "at": 1166.8140862884522 }, { "type": "O", "frame": 18, "at": 1166.8140862884522 }, { "type": "C", "frame": 18, "at": 1174.909958786377 }, { "type": "C", "frame": 24, "at": 1174.909958786377 }, { "type": "C", "frame": 23, "at": 1174.909958786377 }, { "type": "C", "frame": 22, "at": 1174.909958786377 }, { "type": "C", "frame": 21, "at": 1174.909958786377 }, { "type": "O", "frame": 17, "at": 1174.909959 }, { "type": "O", "frame": 18, "at": 1174.909959 }, { "type": "C", "frame": 18, "at": 1180.414416950592 }, { "type": "C", "frame": 17, "at": 1180.414416950592 }, { "type": "O", "frame": 19, "at": 1180.414417 }, { "type": "O", "frame": 18, "at": 1180.414417 }, { "type": "C", "frame": 18, "at": 1187.09508440036 }, { "type": "C", "frame": 19, "at": 1187.09508440036 }, { "type": "C", "frame": 16, "at": 1187.09508440036 }, { "type": "C", "frame": 15, "at": 1187.09508440036 }, { "type": "C", "frame": 14, "at": 1187.09508440036 }, { "type": "C", "frame": 13, "at": 1187.09508440036 }, { "type": "C", "frame": 12, "at": 1187.09508440036 }, { "type": "C", "frame": 11, "at": 1187.09508440036 }, { "type": "C", "frame": 10, "at": 1187.09508440036 }, { "type": "C", "frame": 9, "at": 1187.09508440036 }, { "type": "C", "frame": 8, "at": 1187.09508440036 }, { "type": "C", "frame": 20, "at": 1187.09508440036 }, { "type": "O", "frame": 6, "at": 1187.09508440036 }, { "type": "O", "frame": 7, "at": 1187.09508440036 }, { "type": "O", "frame": 8, "at": 1187.09508440036 }, { "type": "O", "frame": 9, "at": 1187.09508440036 }, { "type": "O", "frame": 10, "at": 1187.09508440036 }, { "type": "O", "frame": 11, "at": 1187.09508440036 }, { "type": "O", "frame": 12, "at": 1187.09508440036 }, { "type": "O", "frame": 13, "at": 1187.09508440036 }, { "type": "O", "frame": 14, "at": 1187.09508440036 }, { "type": "O", "frame": 15, "at": 1187.09508440036 }, { "type": "O", "frame": 16, "at": 1187.09508440036 }, { "type": "O", "frame": 21, "at": 1187.09508440036 }, { "type": "O", "frame": 22, "at": 1187.09508440036 }, { "type": "O", "frame": 23, "at": 1187.09508440036 }, { "type": "O", "frame": 24, "at": 1187.09508440036 }, { "type": "O", "frame": 18, "at": 1187.09508440036 }, { "type": "C", "frame": 18, "at": 1196.5264165881958 }, { "type": "C", "frame": 24, "at": 1196.5264165881958 }, { "type": "C", "frame": 23, "at": 1196.5264165881958 }, { "type": "C", "frame": 22, "at": 1196.5264165881958 }, { "type": "C", "frame": 21, "at": 1196.5264165881958 }, { "type": "O", "frame": 17, "at": 1196.526417 }, { "type": "O", "frame": 18, "at": 1196.526417 }, { "type": "C", "frame": 18, "at": 1200.6559998819275 }, { "type": "C", "frame": 17, "at": 1200.6559998819275 }, { "type": "O", "frame": 19, "at": 1200.656 }, { "type": "O", "frame": 18, "at": 1200.656 }, { "type": "C", "frame": 18, "at": 1201.9917089757919 }, { "type": "C", "frame": 19, "at": 1201.9917089757919 }, { "type": "C", "frame": 16, "at": 1201.9917089757919 }, { "type": "C", "frame": 15, "at": 1201.9917089757919 }, { "type": "C", "frame": 14, "at": 1201.9917089757919 }, { "type": "C", "frame": 13, "at": 1201.9917089757919 }, { "type": "C", "frame": 12, "at": 1201.9917089757919 }, { "type": "C", "frame": 11, "at": 1201.9917089757919 }, { "type": "C", "frame": 10, "at": 1201.9917089757919 }, { "type": "C", "frame": 9, "at": 1201.9917089757919 }, { "type": "C", "frame": 8, "at": 1201.9917089757919 }, { "type": "C", "frame": 7, "at": 1201.9917089757919 }, { "type": "C", "frame": 6, "at": 1201.9917089757919 }, { "type": "O", "frame": 20, "at": 1201.991709 }, { "type": "O", "frame": 8, "at": 1201.991709 }, { "type": "O", "frame": 9, "at": 1201.991709 }, { "type": "O", "frame": 10, "at": 1201.991709 }, { "type": "O", "frame": 11, "at": 1201.991709 }, { "type": "O", "frame": 12, "at": 1201.991709 }, { "type": "O", "frame": 13, "at": 1201.991709 }, { "type": "O", "frame": 14, "at": 1201.991709 }, { "type": "O", "frame": 15, "at": 1201.991709 }, { "type": "O", "frame": 16, "at": 1201.991709 }, { "type": "O", "frame": 21, "at": 1201.991709 }, { "type": "O", "frame": 22, "at": 1201.991709 }, { "type": "O", "frame": 23, "at": 1201.991709 }, { "type": "O", "frame": 31, "at": 1201.991709 }, { "type": "O", "frame": 18, "at": 1201.991709 }, { "type": "C", "frame": 18, "at": 1203.349375015625 }, { "type": "C", "frame": 31, "at": 1203.349375015625 }, { "type": "O", "frame": 24, "at": 1203.349375015625 }, { "type": "O", "frame": 18, "at": 1203.349375015625 }, { "type": "C", "frame": 18, "at": 1211.4472916030884 }, { "type": "C", "frame": 24, "at": 1211.4472916030884 }, { "type": "C", "frame": 23, "at": 1211.4472916187133 }, { "type": "C", "frame": 22, "at": 1211.4472916187133 }, { "type": "C", "frame": 21, "at": 1211.4472916187133 }, { "type": "O", "frame": 17, "at": 1211.447292 }, { "type": "O", "frame": 18, "at": 1211.447292 }, { "type": "C", "frame": 18, "at": 1215.5433751642151 }, { "type": "C", "frame": 17, "at": 1215.5433751642151 }, { "type": "O", "frame": 19, "at": 1215.5433751642151 }, { "type": "O", "frame": 18, "at": 1215.5433751642151 }, { "type": "C", "frame": 18, "at": 1223.5427918281555 }, { "type": "C", "frame": 19, "at": 1223.5427918281555 }, { "type": "C", "frame": 16, "at": 1223.5427935184325 }, { "type": "C", "frame": 15, "at": 1223.5427935184325 }, { "type": "C", "frame": 14, "at": 1223.5427935184325 }, { "type": "C", "frame": 13, "at": 1223.5427935184325 }, { "type": "C", "frame": 12, "at": 1223.5427935184325 }, { "type": "C", "frame": 11, "at": 1223.5427935184325 }, { "type": "C", "frame": 10, "at": 1223.5427935184325 }, { "type": "C", "frame": 9, "at": 1223.5427935184325 }, { "type": "C", "frame": 8, "at": 1223.5427935184325 }, { "type": "C", "frame": 20, "at": 1223.5427935184325 }, { "type": "O", "frame": 6, "at": 1223.5427935184325 }, { "type": "O", "frame": 7, "at": 1223.5427935184325 }, { "type": "O", "frame": 8, "at": 1223.5427935184325 }, { "type": "O", "frame": 9, "at": 1223.5427935184325 }, { "type": "O", "frame": 10, "at": 1223.5427935184325 }, { "type": "O", "frame": 11, "at": 1223.5427935184325 }, { "type": "O", "frame": 12, "at": 1223.5427935184325 }, { "type": "O", "frame": 13, "at": 1223.5427935184325 }, { "type": "O", "frame": 14, "at": 1223.5427935184325 }, { "type": "O", "frame": 15, "at": 1223.5427935184325 }, { "type": "O", "frame": 16, "at": 1223.5427935184325 }, { "type": "O", "frame": 21, "at": 1223.5427935184325 }, { "type": "O", "frame": 22, "at": 1223.5427935184325 }, { "type": "O", "frame": 23, "at": 1223.5427935184325 }, { "type": "O", "frame": 24, "at": 1223.5427935184325 }, { "type": "O", "frame": 18, "at": 1223.5427935184325 }, { "type": "C", "frame": 18, "at": 1233.0306250230713 }, { "type": "C", "frame": 24, "at": 1233.0306250230713 }, { "type": "C", "frame": 23, "at": 1233.0306250230713 }, { "type": "C", "frame": 22, "at": 1233.0306250230713 }, { "type": "C", "frame": 21, "at": 1233.0306250230713 }, { "type": "O", "frame": 17, "at": 1233.0306250230713 }, { "type": "O", "frame": 18, "at": 1233.0306250230713 }, { "type": "C", "frame": 18, "at": 1237.111875190735 }, { "type": "C", "frame": 17, "at": 1237.111875190735 }, { "type": "O", "frame": 19, "at": 1237.111875190735 }, { "type": "O", "frame": 18, "at": 1237.111875190735 }, { "type": "C", "frame": 18, "at": 1239.7827500724793 }, { "type": "C", "frame": 19, "at": 1239.7827500724793 }, { "type": "C", "frame": 16, "at": 1239.7827500724793 }, { "type": "C", "frame": 15, "at": 1239.7827500724793 }, { "type": "C", "frame": 14, "at": 1239.7827500724793 }, { "type": "C", "frame": 13, "at": 1239.7827500724793 }, { "type": "C", "frame": 12, "at": 1239.7827500724793 }, { "type": "C", "frame": 11, "at": 1239.7827500724793 }, { "type": "C", "frame": 10, "at": 1239.7827500724793 }, { "type": "C", "frame": 9, "at": 1239.7827500724793 }, { "type": "C", "frame": 8, "at": 1239.7827500724793 }, { "type": "C", "frame": 7, "at": 1239.7827500724793 }, { "type": "C", "frame": 6, "at": 1239.7827500724793 }, { "type": "O", "frame": 20, "at": 1239.7827500724793 }, { "type": "O", "frame": 8, "at": 1239.7827500724793 }, { "type": "O", "frame": 9, "at": 1239.7827500724793 }, { "type": "O", "frame": 10, "at": 1239.7827500724793 }, { "type": "O", "frame": 11, "at": 1239.7827500724793 }, { "type": "O", "frame": 12, "at": 1239.7827500724793 }, { "type": "O", "frame": 13, "at": 1239.7827500724793 }, { "type": "O", "frame": 14, "at": 1239.7827500724793 }, { "type": "O", "frame": 15, "at": 1239.7827500724793 }, { "type": "O", "frame": 16, "at": 1239.7827500724793 }, { "type": "O", "frame": 21, "at": 1239.7827500724793 }, { "type": "O", "frame": 22, "at": 1239.7827500724793 }, { "type": "O", "frame": 23, "at": 1239.7827500724793 }, { "type": "O", "frame": 24, "at": 1239.7827500724793 }, { "type": "O", "frame": 18, "at": 1239.7827500724793 }, { "type": "C", "frame": 18, "at": 1243.8015421524049 }, { "type": "C", "frame": 24, "at": 1243.8015421524049 }, { "type": "O", "frame": 29, "at": 1243.8015421524049 }, { "type": "O", "frame": 18, "at": 1243.8015421524049 }, { "type": "C", "frame": 18, "at": 1245.1423749486846 }, { "type": "C", "frame": 29, "at": 1245.1423749486846 }, { "type": "O", "frame": 24, "at": 1245.142375 }, { "type": "O", "frame": 18, "at": 1245.142375 }, { "type": "C", "frame": 18, "at": 1246.4833339529036 }, { "type": "C", "frame": 24, "at": 1246.4833339529036 }, { "type": "O", "frame": 25, "at": 1246.483334 }, { "type": "O", "frame": 18, "at": 1246.483334 }, { "type": "C", "frame": 18, "at": 1247.8218750308838 }, { "type": "C", "frame": 25, "at": 1247.8218750308838 }, { "type": "O", "frame": 24, "at": 1247.8218750308838 }, { "type": "O", "frame": 18, "at": 1247.8218750308838 }, { "type": "C", "frame": 18, "at": 1249.1716670036317 }, { "type": "C", "frame": 24, "at": 1249.1716670036317 }, { "type": "C", "frame": 23, "at": 1249.1716679229737 }, { "type": "C", "frame": 22, "at": 1249.1716679229737 }, { "type": "C", "frame": 21, "at": 1249.1716679229737 }, { "type": "O", "frame": 17, "at": 1249.1716679229737 }, { "type": "O", "frame": 18, "at": 1249.1716679229737 }, { "type": "C", "frame": 18, "at": 1253.2573336564942 }, { "type": "C", "frame": 17, "at": 1253.2573336564942 }, { "type": "O", "frame": 19, "at": 1253.257334 }, { "type": "O", "frame": 18, "at": 1253.257334 }, { "type": "C", "frame": 18, "at": 1261.3125841678466 }, { "type": "C", "frame": 19, "at": 1261.3125841678466 }, { "type": "C", "frame": 16, "at": 1261.3125841678466 }, { "type": "C", "frame": 15, "at": 1261.3125841678466 }, { "type": "C", "frame": 14, "at": 1261.3125841678466 }, { "type": "C", "frame": 13, "at": 1261.3125841678466 }, { "type": "C", "frame": 12, "at": 1261.3125841678466 }, { "type": "C", "frame": 11, "at": 1261.3125841678466 }, { "type": "C", "frame": 10, "at": 1261.3125841678466 }, { "type": "C", "frame": 9, "at": 1261.3125841678466 }, { "type": "C", "frame": 8, "at": 1261.3125841678466 }, { "type": "C", "frame": 20, "at": 1261.3125841678466 }, { "type": "O", "frame": 6, "at": 1261.3125841678466 }, { "type": "O", "frame": 7, "at": 1261.3125841678466 }, { "type": "O", "frame": 8, "at": 1261.3125841678466 }, { "type": "O", "frame": 9, "at": 1261.3125841678466 }, { "type": "O", "frame": 10, "at": 1261.3125841678466 }, { "type": "O", "frame": 11, "at": 1261.3125841678466 }, { "type": "O", "frame": 12, "at": 1261.3125841678466 }, { "type": "O", "frame": 13, "at": 1261.3125841678466 }, { "type": "O", "frame": 14, "at": 1261.3125841678466 }, { "type": "O", "frame": 15, "at": 1261.3125841678466 }, { "type": "O", "frame": 16, "at": 1261.3125841678466 }, { "type": "O", "frame": 21, "at": 1261.3125841678466 }, { "type": "O", "frame": 22, "at": 1261.3125841678466 }, { "type": "O", "frame": 23, "at": 1261.3125841678466 }, { "type": "O", "frame": 24, "at": 1261.3125841678466 }, { "type": "O", "frame": 18, "at": 1261.3125841678466 }, { "type": "C", "frame": 18, "at": 1269.4209175876465 }, { "type": "C", "frame": 24, "at": 1269.4209175876465 }, { "type": "C", "frame": 23, "at": 1269.4209175876465 }, { "type": "C", "frame": 22, "at": 1269.4209175876465 }, { "type": "C", "frame": 21, "at": 1269.4209175876465 }, { "type": "O", "frame": 17, "at": 1269.4209175876465 }, { "type": "O", "frame": 18, "at": 1269.4209175876465 }, { "type": "C", "frame": 18, "at": 1274.955874885742 }, { "type": "C", "frame": 17, "at": 1274.955874885742 }, { "type": "O", "frame": 19, "at": 1274.955875 }, { "type": "O", "frame": 18, "at": 1274.955875 }, { "type": "C", "frame": 18, "at": 1276.290958961487 }, { "type": "C", "frame": 19, "at": 1276.290958961487 }, { "type": "C", "frame": 16, "at": 1276.2909594348755 }, { "type": "C", "frame": 15, "at": 1276.2909594348755 }, { "type": "C", "frame": 14, "at": 1276.2909594348755 }, { "type": "C", "frame": 13, "at": 1276.2909594348755 }, { "type": "C", "frame": 12, "at": 1276.2909594348755 }, { "type": "C", "frame": 11, "at": 1276.2909594348755 }, { "type": "C", "frame": 10, "at": 1276.2909594348755 }, { "type": "C", "frame": 9, "at": 1276.2909594348755 }, { "type": "C", "frame": 8, "at": 1276.2909594348755 }, { "type": "C", "frame": 7, "at": 1276.2909594348755 }, { "type": "C", "frame": 6, "at": 1276.2909594348755 }, { "type": "O", "frame": 20, "at": 1276.2909594348755 }, { "type": "O", "frame": 8, "at": 1276.2909594348755 }, { "type": "O", "frame": 9, "at": 1276.2909594348755 }, { "type": "O", "frame": 10, "at": 1276.2909594348755 }, { "type": "O", "frame": 11, "at": 1276.2909594348755 }, { "type": "O", "frame": 12, "at": 1276.2909594348755 }, { "type": "O", "frame": 13, "at": 1276.2909594348755 }, { "type": "O", "frame": 14, "at": 1276.2909594348755 }, { "type": "O", "frame": 15, "at": 1276.2909594348755 }, { "type": "O", "frame": 16, "at": 1276.2909594348755 }, { "type": "O", "frame": 21, "at": 1276.2909594348755 }, { "type": "O", "frame": 22, "at": 1276.2909594348755 }, { "type": "O", "frame": 23, "at": 1276.2909594348755 }, { "type": "O", "frame": 24, "at": 1276.2909594348755 }, { "type": "O", "frame": 18, "at": 1276.2909594348755 }, { "type": "C", "frame": 18, "at": 1284.3959165805663 }, { "type": "C", "frame": 24, "at": 1284.3959165805663 }, { "type": "C", "frame": 23, "at": 1284.3959165805663 }, { "type": "C", "frame": 22, "at": 1284.3959165805663 }, { "type": "C", "frame": 21, "at": 1284.3959165805663 }, { "type": "O", "frame": 17, "at": 1284.395917 }, { "type": "O", "frame": 18, "at": 1284.395917 }, { "type": "C", "frame": 18, "at": 1289.9065418855591 }, { "type": "C", "frame": 17, "at": 1289.9065418855591 }, { "type": "O", "frame": 19, "at": 1289.906542 }, { "type": "O", "frame": 18, "at": 1289.906542 }, { "type": "C", "frame": 18, "at": 1297.9416248170776 }, { "type": "C", "frame": 19, "at": 1297.9416248170776 }, { "type": "C", "frame": 16, "at": 1297.9416248170776 }, { "type": "C", "frame": 15, "at": 1297.9416248170776 }, { "type": "C", "frame": 14, "at": 1297.9416248170776 }, { "type": "C", "frame": 13, "at": 1297.9416248170776 }, { "type": "C", "frame": 12, "at": 1297.9416248170776 }, { "type": "C", "frame": 11, "at": 1297.9416248170776 }, { "type": "C", "frame": 10, "at": 1297.9416248170776 }, { "type": "C", "frame": 9, "at": 1297.9416248170776 }, { "type": "C", "frame": 8, "at": 1297.9416248170776 }, { "type": "C", "frame": 20, "at": 1297.9416248170776 }, { "type": "O", "frame": 6, "at": 1297.941625 }, { "type": "O", "frame": 7, "at": 1297.941625 }, { "type": "O", "frame": 8, "at": 1297.941625 }, { "type": "O", "frame": 9, "at": 1297.941625 }, { "type": "O", "frame": 10, "at": 1297.941625 }, { "type": "O", "frame": 11, "at": 1297.941625 }, { "type": "O", "frame": 12, "at": 1297.941625 }, { "type": "O", "frame": 13, "at": 1297.941625 }, { "type": "O", "frame": 14, "at": 1297.941625 }, { "type": "O", "frame": 15, "at": 1297.941625 }, { "type": "O", "frame": 16, "at": 1297.941625 }, { "type": "O", "frame": 21, "at": 1297.941625 }, { "type": "O", "frame": 22, "at": 1297.941625 }, { "type": "O", "frame": 23, "at": 1297.941625 }, { "type": "O", "frame": 24, "at": 1297.941625 }, { "type": "O", "frame": 18, "at": 1297.941625 }, { "type": "C", "frame": 18, "at": 1306.0040420303344 }, { "type": "C", "frame": 24, "at": 1306.0040420303344 }, { "type": "C", "frame": 23, "at": 1306.0040420303344 }, { "type": "C", "frame": 22, "at": 1306.0040420303344 }, { "type": "C", "frame": 21, "at": 1306.0040420303344 }, { "type": "O", "frame": 17, "at": 1306.0040420303344 }, { "type": "O", "frame": 18, "at": 1306.0040420303344 }, { "type": "C", "frame": 18, "at": 1310.2004588548584 }, { "type": "C", "frame": 17, "at": 1310.2004588548584 }, { "type": "O", "frame": 19, "at": 1310.200459 }, { "type": "O", "frame": 18, "at": 1310.200459 }, { "type": "C", "frame": 18, "at": 1311.5387500490035 }, { "type": "C", "frame": 19, "at": 1311.5387500490035 }, { "type": "C", "frame": 16, "at": 1311.5387500534057 }, { "type": "C", "frame": 15, "at": 1311.5387500534057 }, { "type": "C", "frame": 14, "at": 1311.5387500534057 }, { "type": "C", "frame": 13, "at": 1311.5387500534057 }, { "type": "C", "frame": 12, "at": 1311.5387500534057 }, { "type": "C", "frame": 11, "at": 1311.5387500534057 }, { "type": "C", "frame": 10, "at": 1311.5387500534057 }, { "type": "C", "frame": 9, "at": 1311.5387500534057 }, { "type": "C", "frame": 8, "at": 1311.5387500534057 }, { "type": "C", "frame": 7, "at": 1311.5387500534057 }, { "type": "C", "frame": 6, "at": 1311.5387500534057 }, { "type": "O", "frame": 20, "at": 1311.5387500534057 }, { "type": "O", "frame": 8, "at": 1311.5387500534057 }, { "type": "O", "frame": 9, "at": 1311.5387500534057 }, { "type": "O", "frame": 10, "at": 1311.5387500534057 }, { "type": "O", "frame": 11, "at": 1311.5387500534057 }, { "type": "O", "frame": 12, "at": 1311.5387500534057 }, { "type": "O", "frame": 13, "at": 1311.5387500534057 }, { "type": "O", "frame": 14, "at": 1311.5387500534057 }, { "type": "O", "frame": 15, "at": 1311.5387500534057 }, { "type": "O", "frame": 40, "at": 1311.5387500534057 }, { "type": "O", "frame": 18, "at": 1311.5387500534057 }, { "type": "C", "frame": 18, "at": 1312.8967920017242 }, { "type": "C", "frame": 40, "at": 1312.8967920017242 }, { "type": "O", "frame": 16, "at": 1312.8967920017242 }, { "type": "O", "frame": 21, "at": 1312.8967920017242 }, { "type": "O", "frame": 22, "at": 1312.8967920017242 }, { "type": "O", "frame": 23, "at": 1312.8967920017242 }, { "type": "O", "frame": 24, "at": 1312.8967920017242 }, { "type": "O", "frame": 18, "at": 1312.8967920017242 }, { "type": "C", "frame": 18, "at": 1320.9741674119873 }, { "type": "C", "frame": 24, "at": 1320.9741674119873 }, { "type": "C", "frame": 23, "at": 1320.9741674119873 }, { "type": "C", "frame": 22, "at": 1320.9741674119873 }, { "type": "C", "frame": 21, "at": 1320.9741674119873 }, { "type": "O", "frame": 17, "at": 1320.9741674119873 }, { "type": "O", "frame": 18, "at": 1320.9741674119873 }, { "type": "C", "frame": 18, "at": 1325.0741669046326 }, { "type": "C", "frame": 17, "at": 1325.0741669046326 }, { "type": "O", "frame": 19, "at": 1325.074167 }, { "type": "O", "frame": 18, "at": 1325.074167 }, { "type": "C", "frame": 18, "at": 1333.063084350769 }, { "type": "C", "frame": 19, "at": 1333.063084350769 }, { "type": "C", "frame": 16, "at": 1333.063084350769 }, { "type": "C", "frame": 15, "at": 1333.063084350769 }, { "type": "C", "frame": 14, "at": 1333.063084350769 }, { "type": "C", "frame": 13, "at": 1333.063084350769 }, { "type": "C", "frame": 12, "at": 1333.063084350769 }, { "type": "C", "frame": 11, "at": 1333.063084350769 }, { "type": "C", "frame": 10, "at": 1333.063084350769 }, { "type": "C", "frame": 9, "at": 1333.063084350769 }, { "type": "C", "frame": 8, "at": 1333.063084350769 }, { "type": "C", "frame": 20, "at": 1333.063084350769 }, { "type": "O", "frame": 6, "at": 1333.063084350769 }, { "type": "O", "frame": 7, "at": 1333.063084350769 }, { "type": "O", "frame": 8, "at": 1333.063084350769 }, { "type": "O", "frame": 9, "at": 1333.063084350769 }, { "type": "O", "frame": 10, "at": 1333.063084350769 }, { "type": "O", "frame": 11, "at": 1333.063084350769 }, { "type": "O", "frame": 12, "at": 1333.063084350769 }, { "type": "O", "frame": 13, "at": 1333.063084350769 }, { "type": "O", "frame": 14, "at": 1333.063084350769 }, { "type": "O", "frame": 15, "at": 1333.063084350769 }, { "type": "O", "frame": 16, "at": 1333.063084350769 }, { "type": "O", "frame": 21, "at": 1333.063084350769 }, { "type": "O", "frame": 22, "at": 1333.063084350769 }, { "type": "O", "frame": 23, "at": 1333.063084350769 }, { "type": "O", "frame": 24, "at": 1333.063084350769 }, { "type": "O", "frame": 18, "at": 1333.063084350769 }, { "type": "C", "frame": 18, "at": 1338.4437497791137 }, { "type": "C", "frame": 24, "at": 1338.4437497791137 }, { "type": "O", "frame": 25, "at": 1338.44375 }, { "type": "O", "frame": 18, "at": 1338.44375 }, { "type": "C", "frame": 18, "at": 1339.791041946411 }, { "type": "C", "frame": 25, "at": 1339.791041946411 }, { "type": "O", "frame": 24, "at": 1339.791042 }, { "type": "O", "frame": 18, "at": 1339.791042 }, { "type": "C", "frame": 18, "at": 1342.4819590150757 }, { "type": "C", "frame": 24, "at": 1342.4819590150757 }, { "type": "C", "frame": 23, "at": 1342.4819590150757 }, { "type": "C", "frame": 22, "at": 1342.4819590150757 }, { "type": "C", "frame": 21, "at": 1342.4819590150757 }, { "type": "O", "frame": 17, "at": 1342.4819590150757 }, { "type": "O", "frame": 18, "at": 1342.4819590150757 }, { "type": "C", "frame": 18, "at": 1346.5887500194397 }, { "type": "C", "frame": 17, "at": 1346.5887500194397 }, { "type": "O", "frame": 19, "at": 1346.5887500194397 }, { "type": "O", "frame": 18, "at": 1346.5887500194397 }, { "type": "C", "frame": 18, "at": 1354.632291908264 }, { "type": "C", "frame": 19, "at": 1354.632291908264 }, { "type": "C", "frame": 16, "at": 1354.632291908264 }, { "type": "C", "frame": 15, "at": 1354.632291908264 }, { "type": "C", "frame": 14, "at": 1354.632291908264 }, { "type": "C", "frame": 13, "at": 1354.632291908264 }, { "type": "C", "frame": 12, "at": 1354.632291908264 }, { "type": "C", "frame": 11, "at": 1354.632291908264 }, { "type": "C", "frame": 10, "at": 1354.632291908264 }, { "type": "C", "frame": 9, "at": 1354.632291908264 }, { "type": "C", "frame": 8, "at": 1354.632291908264 }, { "type": "C", "frame": 7, "at": 1354.632291908264 }, { "type": "C", "frame": 6, "at": 1354.632291908264 }, { "type": "O", "frame": 20, "at": 1354.632292 }, { "type": "O", "frame": 8, "at": 1354.632292 }, { "type": "O", "frame": 9, "at": 1354.632292 }, { "type": "O", "frame": 10, "at": 1354.632292 }, { "type": "O", "frame": 11, "at": 1354.632292 }, { "type": "O", "frame": 12, "at": 1354.632292 }, { "type": "O", "frame": 13, "at": 1354.632292 }, { "type": "O", "frame": 14, "at": 1354.632292 }, { "type": "O", "frame": 15, "at": 1354.632292 }, { "type": "O", "frame": 16, "at": 1354.632292 }, { "type": "O", "frame": 21, "at": 1354.632292 }, { "type": "O", "frame": 22, "at": 1354.632292 }, { "type": "O", "frame": 23, "at": 1354.632292 }, { "type": "O", "frame": 24, "at": 1354.632292 }, { "type": "O", "frame": 18, "at": 1354.632292 }, { "type": "C", "frame": 18, "at": 1362.6823751604004 }, { "type": "C", "frame": 24, "at": 1362.6823751604004 }, { "type": "C", "frame": 23, "at": 1362.6823751604004 }, { "type": "C", "frame": 22, "at": 1362.6823751604004 }, { "type": "C", "frame": 21, "at": 1362.6823751604004 }, { "type": "O", "frame": 17, "at": 1362.6823751604004 }, { "type": "O", "frame": 18, "at": 1362.6823751604004 }, { "type": "C", "frame": 18, "at": 1368.1769171218873 }, { "type": "C", "frame": 17, "at": 1368.1769171218873 }, { "type": "O", "frame": 19, "at": 1368.1769171218873 }, { "type": "O", "frame": 18, "at": 1368.1769171218873 }, { "type": "C", "frame": 18, "at": 1369.5161250068588 }, { "type": "C", "frame": 19, "at": 1369.5161250068588 }, { "type": "C", "frame": 16, "at": 1369.5161250068588 }, { "type": "C", "frame": 15, "at": 1369.5161250068588 }, { "type": "C", "frame": 14, "at": 1369.5161250068588 }, { "type": "C", "frame": 13, "at": 1369.5161250068588 }, { "type": "C", "frame": 12, "at": 1369.5161250068588 }, { "type": "C", "frame": 11, "at": 1369.5161250068588 }, { "type": "C", "frame": 10, "at": 1369.5161250068588 }, { "type": "C", "frame": 9, "at": 1369.5161250068588 }, { "type": "C", "frame": 8, "at": 1369.5161250068588 }, { "type": "C", "frame": 20, "at": 1369.5161250068588 }, { "type": "O", "frame": 6, "at": 1369.5161250068588 }, { "type": "O", "frame": 7, "at": 1369.5161250068588 }, { "type": "O", "frame": 8, "at": 1369.5161250068588 }, { "type": "O", "frame": 9, "at": 1369.5161250068588 }, { "type": "O", "frame": 10, "at": 1369.5161250068588 }, { "type": "O", "frame": 11, "at": 1369.5161250068588 }, { "type": "O", "frame": 12, "at": 1369.5161250068588 }, { "type": "O", "frame": 13, "at": 1369.5161250068588 }, { "type": "O", "frame": 14, "at": 1369.5161250068588 }, { "type": "O", "frame": 15, "at": 1369.5161250068588 }, { "type": "O", "frame": 16, "at": 1369.5161250068588 }, { "type": "O", "frame": 21, "at": 1369.5161250068588 }, { "type": "O", "frame": 22, "at": 1369.5161250068588 }, { "type": "O", "frame": 23, "at": 1369.5161250068588 }, { "type": "O", "frame": 24, "at": 1369.5161250068588 }, { "type": "O", "frame": 18, "at": 1369.5161250068588 }, { "type": "C", "frame": 18, "at": 1372.2130000953675 }, { "type": "C", "frame": 24, "at": 1372.2130000953675 }, { "type": "O", "frame": 31, "at": 1372.2130000953675 }, { "type": "O", "frame": 18, "at": 1372.2130000953675 }, { "type": "C", "frame": 18, "at": 1373.5560420160293 }, { "type": "C", "frame": 31, "at": 1373.5560420160293 }, { "type": "O", "frame": 24, "at": 1373.5560420160293 }, { "type": "O", "frame": 18, "at": 1373.5560420160293 }, { "type": "C", "frame": 18, "at": 1377.5867503129882 }, { "type": "C", "frame": 24, "at": 1377.5867503129882 }, { "type": "C", "frame": 23, "at": 1377.5867503129882 }, { "type": "C", "frame": 22, "at": 1377.5867503129882 }, { "type": "C", "frame": 21, "at": 1377.5867503129882 }, { "type": "O", "frame": 17, "at": 1377.5867503129882 }, { "type": "O", "frame": 18, "at": 1377.5867503129882 }, { "type": "C", "frame": 18, "at": 1383.039209335327 }, { "type": "C", "frame": 17, "at": 1383.039209335327 }, { "type": "O", "frame": 19, "at": 1383.039209335327 }, { "type": "O", "frame": 18, "at": 1383.039209335327 }, { "type": "C", "frame": 18, "at": 1389.711334339508 }, { "type": "C", "frame": 19, "at": 1389.711334339508 }, { "type": "C", "frame": 16, "at": 1389.711334503174 }, { "type": "C", "frame": 15, "at": 1389.711334503174 }, { "type": "C", "frame": 14, "at": 1389.711334503174 }, { "type": "C", "frame": 13, "at": 1389.711334503174 }, { "type": "C", "frame": 12, "at": 1389.711334503174 }, { "type": "C", "frame": 11, "at": 1389.711334503174 }, { "type": "C", "frame": 10, "at": 1389.711334503174 }, { "type": "C", "frame": 9, "at": 1389.711334503174 }, { "type": "C", "frame": 8, "at": 1389.711334503174 }, { "type": "C", "frame": 7, "at": 1389.711334503174 }, { "type": "C", "frame": 6, "at": 1389.711334503174 }, { "type": "O", "frame": 20, "at": 1389.711334503174 }, { "type": "O", "frame": 8, "at": 1389.711334503174 }, { "type": "O", "frame": 9, "at": 1389.711334503174 }, { "type": "O", "frame": 10, "at": 1389.711334503174 }, { "type": "O", "frame": 11, "at": 1389.711334503174 }, { "type": "O", "frame": 12, "at": 1389.711334503174 }, { "type": "O", "frame": 13, "at": 1389.711334503174 }, { "type": "O", "frame": 14, "at": 1389.711334503174 }, { "type": "O", "frame": 15, "at": 1389.711334503174 }, { "type": "O", "frame": 16, "at": 1389.711334503174 }, { "type": "O", "frame": 21, "at": 1389.711334503174 }, { "type": "O", "frame": 22, "at": 1389.711334503174 }, { "type": "O", "frame": 23, "at": 1389.711334503174 }, { "type": "O", "frame": 24, "at": 1389.711334503174 }, { "type": "O", "frame": 18, "at": 1389.711334503174 }, { "type": "C", "frame": 18, "at": 1395.0732500652161 }, { "type": "C", "frame": 24, "at": 1395.0732500652161 }, { "type": "O", "frame": 25, "at": 1395.0732500652161 }, { "type": "O", "frame": 18, "at": 1395.0732500652161 }, { "type": "C", "frame": 18, "at": 1396.412792031288 }, { "type": "C", "frame": 25, "at": 1396.412792031288 }, { "type": "O", "frame": 24, "at": 1396.412792031288 }, { "type": "O", "frame": 18, "at": 1396.412792031288 }, { "type": "C", "frame": 18, "at": 1399.100583824341 }, { "type": "C", "frame": 24, "at": 1399.100583824341 }, { "type": "C", "frame": 23, "at": 1399.100583824341 }, { "type": "C", "frame": 22, "at": 1399.100583824341 }, { "type": "C", "frame": 21, "at": 1399.100583824341 }, { "type": "O", "frame": 17, "at": 1399.100584 }, { "type": "O", "frame": 18, "at": 1399.100584 }, { "type": "C", "frame": 18, "at": 1403.1685838397827 }, { "type": "C", "frame": 17, "at": 1403.1685838397827 }, { "type": "O", "frame": 19, "at": 1403.168584 }, { "type": "O", "frame": 18, "at": 1403.168584 }, { "type": "C", "frame": 18, "at": 1408.499499927887 }, { "type": "C", "frame": 19, "at": 1408.499499927887 }, { "type": "C", "frame": 16, "at": 1408.499499927887 }, { "type": "C", "frame": 15, "at": 1408.499499927887 }, { "type": "C", "frame": 14, "at": 1408.499499927887 }, { "type": "C", "frame": 13, "at": 1408.499499927887 }, { "type": "C", "frame": 12, "at": 1408.499499927887 }, { "type": "C", "frame": 11, "at": 1408.499499927887 }, { "type": "C", "frame": 10, "at": 1408.499499927887 }, { "type": "C", "frame": 9, "at": 1408.499499927887 }, { "type": "C", "frame": 8, "at": 1408.499499927887 }, { "type": "C", "frame": 20, "at": 1408.499499927887 }, { "type": "O", "frame": 6, "at": 1408.4995 }, { "type": "O", "frame": 7, "at": 1408.4995 }, { "type": "O", "frame": 8, "at": 1408.4995 }, { "type": "O", "frame": 9, "at": 1408.4995 }, { "type": "O", "frame": 10, "at": 1408.4995 }, { "type": "O", "frame": 11, "at": 1408.4995 }, { "type": "O", "frame": 12, "at": 1408.4995 }, { "type": "O", "frame": 13, "at": 1408.4995 }, { "type": "O", "frame": 14, "at": 1408.4995 }, { "type": "O", "frame": 15, "at": 1408.4995 }, { "type": "O", "frame": 16, "at": 1408.4995 }, { "type": "O", "frame": 21, "at": 1408.4995 }, { "type": "O", "frame": 22, "at": 1408.4995 }, { "type": "O", "frame": 23, "at": 1408.4995 }, { "type": "O", "frame": 24, "at": 1408.4995 }, { "type": "O", "frame": 18, "at": 1408.4995 }, { "type": "C", "frame": 18, "at": 1416.5786664123534 }, { "type": "C", "frame": 24, "at": 1416.5786664123534 }, { "type": "C", "frame": 23, "at": 1416.5786664123534 }, { "type": "C", "frame": 22, "at": 1416.5786664123534 }, { "type": "C", "frame": 21, "at": 1416.5786664123534 }, { "type": "O", "frame": 17, "at": 1416.578667 }, { "type": "O", "frame": 18, "at": 1416.578667 }, { "type": "C", "frame": 18, "at": 1422.0162919313354 }, { "type": "C", "frame": 17, "at": 1422.0162919313354 }, { "type": "O", "frame": 19, "at": 1422.016292 }, { "type": "O", "frame": 18, "at": 1422.016292 }, { "type": "C", "frame": 18, "at": 1428.6617917062683 }, { "type": "C", "frame": 19, "at": 1428.6617917062683 }, { "type": "C", "frame": 16, "at": 1428.6617924804686 }, { "type": "C", "frame": 15, "at": 1428.6617924804686 }, { "type": "C", "frame": 14, "at": 1428.6617924804686 }, { "type": "C", "frame": 13, "at": 1428.6617924804686 }, { "type": "C", "frame": 12, "at": 1428.6617924804686 }, { "type": "C", "frame": 11, "at": 1428.6617924804686 }, { "type": "C", "frame": 10, "at": 1428.6617924804686 }, { "type": "C", "frame": 9, "at": 1428.6617924804686 }, { "type": "C", "frame": 8, "at": 1428.6617924804686 }, { "type": "C", "frame": 7, "at": 1428.6617924804686 }, { "type": "C", "frame": 6, "at": 1428.6617924804686 }, { "type": "O", "frame": 20, "at": 1428.6617924804686 }, { "type": "O", "frame": 8, "at": 1428.6617924804686 }, { "type": "O", "frame": 9, "at": 1428.6617924804686 }, { "type": "O", "frame": 10, "at": 1428.6617924804686 }, { "type": "O", "frame": 11, "at": 1428.6617924804686 }, { "type": "O", "frame": 12, "at": 1428.6617924804686 }, { "type": "O", "frame": 13, "at": 1428.6617924804686 }, { "type": "O", "frame": 14, "at": 1428.6617924804686 }, { "type": "O", "frame": 15, "at": 1428.6617924804686 }, { "type": "O", "frame": 16, "at": 1428.6617924804686 }, { "type": "O", "frame": 21, "at": 1428.6617924804686 }, { "type": "O", "frame": 22, "at": 1428.6617924804686 }, { "type": "O", "frame": 23, "at": 1428.6617924804686 }, { "type": "O", "frame": 41, "at": 1428.6617924804686 }, { "type": "O", "frame": 18, "at": 1428.6617924804686 }, { "type": "C", "frame": 18, "at": 1430.009834011261 }, { "type": "C", "frame": 41, "at": 1430.009834011261 }, { "type": "O", "frame": 24, "at": 1430.009834011261 }, { "type": "O", "frame": 18, "at": 1430.009834011261 }, { "type": "C", "frame": 18, "at": 1438.1038348163452 }, { "type": "C", "frame": 24, "at": 1438.1038348163452 }, { "type": "C", "frame": 23, "at": 1438.1038348163452 }, { "type": "C", "frame": 22, "at": 1438.1038348163452 }, { "type": "C", "frame": 21, "at": 1438.1038348163452 }, { "type": "O", "frame": 17, "at": 1438.1038348163452 }, { "type": "O", "frame": 18, "at": 1438.1038348163452 }, { "type": "C", "frame": 18, "at": 1442.1791251567688 }, { "type": "C", "frame": 17, "at": 1442.1791251567688 }, { "type": "O", "frame": 19, "at": 1442.1791251567688 }, { "type": "O", "frame": 18, "at": 1442.1791251567688 }, { "type": "C", "frame": 18, "at": 1444.8997089157106 }, { "type": "C", "frame": 19, "at": 1444.8997089157106 }, { "type": "C", "frame": 16, "at": 1444.8997108537599 }, { "type": "C", "frame": 15, "at": 1444.8997108537599 }, { "type": "C", "frame": 14, "at": 1444.8997108537599 }, { "type": "C", "frame": 13, "at": 1444.8997108537599 }, { "type": "C", "frame": 12, "at": 1444.8997108537599 }, { "type": "C", "frame": 11, "at": 1444.8997108537599 }, { "type": "C", "frame": 10, "at": 1444.8997108537599 }, { "type": "C", "frame": 9, "at": 1444.8997108537599 }, { "type": "C", "frame": 8, "at": 1444.8997108537599 }, { "type": "C", "frame": 20, "at": 1444.8997108537599 }, { "type": "O", "frame": 6, "at": 1444.8997108537599 }, { "type": "O", "frame": 7, "at": 1444.8997108537599 }, { "type": "O", "frame": 8, "at": 1444.8997108537599 }, { "type": "O", "frame": 9, "at": 1444.8997108537599 }, { "type": "O", "frame": 10, "at": 1444.8997108537599 }, { "type": "O", "frame": 11, "at": 1444.8997108537599 }, { "type": "O", "frame": 12, "at": 1444.8997108537599 }, { "type": "O", "frame": 13, "at": 1444.8997108537599 }, { "type": "O", "frame": 14, "at": 1444.8997108537599 }, { "type": "O", "frame": 15, "at": 1444.8997108537599 }, { "type": "O", "frame": 16, "at": 1444.8997108537599 }, { "type": "O", "frame": 21, "at": 1444.8997108537599 }, { "type": "O", "frame": 22, "at": 1444.8997108537599 }, { "type": "O", "frame": 23, "at": 1444.8997108537599 }, { "type": "O", "frame": 24, "at": 1444.8997108537599 }, { "type": "O", "frame": 18, "at": 1444.8997108537599 }, { "type": "C", "frame": 18, "at": 1447.5856249469605 }, { "type": "C", "frame": 24, "at": 1447.5856249469605 }, { "type": "O", "frame": 29, "at": 1447.585625 }, { "type": "O", "frame": 18, "at": 1447.585625 }, { "type": "C", "frame": 18, "at": 1448.9257920455932 }, { "type": "C", "frame": 29, "at": 1448.9257920455932 }, { "type": "O", "frame": 24, "at": 1448.9257920455932 }, { "type": "O", "frame": 18, "at": 1448.9257920455932 }, { "type": "C", "frame": 18, "at": 1451.6080000612183 }, { "type": "C", "frame": 24, "at": 1451.6080000612183 }, { "type": "O", "frame": 28, "at": 1451.6080000612183 }, { "type": "O", "frame": 18, "at": 1451.6080000612183 }, { "type": "C", "frame": 18, "at": 1452.977125008583 }, { "type": "C", "frame": 28, "at": 1452.977125008583 }, { "type": "C", "frame": 23, "at": 1452.977125419983 }, { "type": "C", "frame": 22, "at": 1452.977125419983 }, { "type": "C", "frame": 21, "at": 1452.977125419983 }, { "type": "O", "frame": 17, "at": 1452.977125419983 }, { "type": "O", "frame": 18, "at": 1452.977125419983 }, { "type": "C", "frame": 18, "at": 1457.0875838508605 }, { "type": "C", "frame": 17, "at": 1457.0875838508605 }, { "type": "O", "frame": 19, "at": 1457.087584 }, { "type": "O", "frame": 18, "at": 1457.087584 }, { "type": "C", "frame": 18, "at": 1465.0619172862855 }, { "type": "C", "frame": 19, "at": 1465.0619172862855 }, { "type": "C", "frame": 16, "at": 1465.061917557129 }, { "type": "C", "frame": 15, "at": 1465.061917557129 }, { "type": "C", "frame": 14, "at": 1465.061917557129 }, { "type": "C", "frame": 13, "at": 1465.061917557129 }, { "type": "C", "frame": 12, "at": 1465.061917557129 }, { "type": "C", "frame": 11, "at": 1465.061917557129 }, { "type": "C", "frame": 10, "at": 1465.061917557129 }, { "type": "C", "frame": 9, "at": 1465.061917557129 }, { "type": "C", "frame": 8, "at": 1465.061917557129 }, { "type": "C", "frame": 7, "at": 1465.061917557129 }, { "type": "C", "frame": 6, "at": 1465.061917557129 }, { "type": "O", "frame": 20, "at": 1465.061917557129 }, { "type": "O", "frame": 8, "at": 1465.061917557129 }, { "type": "O", "frame": 9, "at": 1465.061917557129 }, { "type": "O", "frame": 10, "at": 1465.061917557129 }, { "type": "O", "frame": 11, "at": 1465.061917557129 }, { "type": "O", "frame": 12, "at": 1465.061917557129 }, { "type": "O", "frame": 13, "at": 1465.061917557129 }, { "type": "O", "frame": 14, "at": 1465.061917557129 }, { "type": "O", "frame": 15, "at": 1465.061917557129 }, { "type": "O", "frame": 16, "at": 1465.061917557129 }, { "type": "O", "frame": 21, "at": 1465.061917557129 }, { "type": "O", "frame": 22, "at": 1465.061917557129 }, { "type": "O", "frame": 23, "at": 1465.061917557129 }, { "type": "O", "frame": 24, "at": 1465.061917557129 }, { "type": "O", "frame": 18, "at": 1465.061917557129 }, { "type": "C", "frame": 18, "at": 1466.4039170076294 }, { "type": "C", "frame": 24, "at": 1466.4039170076294 }, { "type": "O", "frame": 28, "at": 1466.4039170076294 }, { "type": "O", "frame": 18, "at": 1466.4039170076294 }, { "type": "C", "frame": 18, "at": 1467.7602500173493 }, { "type": "C", "frame": 28, "at": 1467.7602500173493 }, { "type": "O", "frame": 24, "at": 1467.7602500173493 }, { "type": "O", "frame": 18, "at": 1467.7602500173493 }, { "type": "C", "frame": 18, "at": 1473.12979164505 }, { "type": "C", "frame": 24, "at": 1473.12979164505 }, { "type": "C", "frame": 23, "at": 1473.1297919084473 }, { "type": "C", "frame": 22, "at": 1473.1297919084473 }, { "type": "C", "frame": 21, "at": 1473.1297919084473 }, { "type": "O", "frame": 17, "at": 1473.129792 }, { "type": "O", "frame": 18, "at": 1473.129792 }, { "type": "C", "frame": 18, "at": 1478.6412089120788 }, { "type": "C", "frame": 17, "at": 1478.6412089120788 }, { "type": "O", "frame": 19, "at": 1478.641209 }, { "type": "O", "frame": 18, "at": 1478.641209 }, { "type": "C", "frame": 18, "at": 1479.9775420364226 }, { "type": "C", "frame": 19, "at": 1479.9775420364226 }, { "type": "C", "frame": 16, "at": 1479.9775420364226 }, { "type": "C", "frame": 15, "at": 1479.9775420364226 }, { "type": "C", "frame": 14, "at": 1479.9775420364226 }, { "type": "C", "frame": 13, "at": 1479.9775420364226 }, { "type": "C", "frame": 12, "at": 1479.9775420364226 }, { "type": "C", "frame": 11, "at": 1479.9775420364226 }, { "type": "C", "frame": 10, "at": 1479.9775420364226 }, { "type": "C", "frame": 9, "at": 1479.9775420364226 }, { "type": "C", "frame": 8, "at": 1479.9775420364226 }, { "type": "C", "frame": 20, "at": 1479.9775420364226 }, { "type": "O", "frame": 6, "at": 1479.9775420364226 }, { "type": "O", "frame": 7, "at": 1479.9775420364226 }, { "type": "O", "frame": 8, "at": 1479.9775420364226 }, { "type": "O", "frame": 9, "at": 1479.9775420364226 }, { "type": "O", "frame": 10, "at": 1479.9775420364226 }, { "type": "O", "frame": 11, "at": 1479.9775420364226 }, { "type": "O", "frame": 12, "at": 1479.9775420364226 }, { "type": "O", "frame": 13, "at": 1479.9775420364226 }, { "type": "O", "frame": 14, "at": 1479.9775420364226 }, { "type": "O", "frame": 15, "at": 1479.9775420364226 }, { "type": "O", "frame": 16, "at": 1479.9775420364226 }, { "type": "O", "frame": 21, "at": 1479.9775420364226 }, { "type": "O", "frame": 22, "at": 1479.9775420364226 }, { "type": "O", "frame": 23, "at": 1479.9775420364226 }, { "type": "O", "frame": 24, "at": 1479.9775420364226 }, { "type": "O", "frame": 18, "at": 1479.9775420364226 }, { "type": "C", "frame": 18, "at": 1488.0466252138062 }, { "type": "C", "frame": 24, "at": 1488.0466252138062 }, { "type": "C", "frame": 23, "at": 1488.0466252138062 }, { "type": "C", "frame": 22, "at": 1488.0466252138062 }, { "type": "C", "frame": 21, "at": 1488.0466252138062 }, { "type": "O", "frame": 17, "at": 1488.0466252138062 }, { "type": "O", "frame": 18, "at": 1488.0466252138062 }, { "type": "C", "frame": 18, "at": 1493.5175417480468 }, { "type": "C", "frame": 17, "at": 1493.5175417480468 }, { "type": "O", "frame": 19, "at": 1493.517542 }, { "type": "O", "frame": 18, "at": 1493.517542 }, { "type": "C", "frame": 18, "at": 1501.5723744584961 }, { "type": "C", "frame": 19, "at": 1501.5723744584961 }, { "type": "C", "frame": 16, "at": 1501.5723753740235 }, { "type": "C", "frame": 15, "at": 1501.5723753740235 }, { "type": "C", "frame": 14, "at": 1501.5723753740235 }, { "type": "C", "frame": 13, "at": 1501.5723753740235 }, { "type": "C", "frame": 12, "at": 1501.5723753740235 }, { "type": "C", "frame": 11, "at": 1501.5723753740235 }, { "type": "C", "frame": 10, "at": 1501.5723753740235 }, { "type": "C", "frame": 9, "at": 1501.5723753740235 }, { "type": "C", "frame": 8, "at": 1501.5723753740235 }, { "type": "C", "frame": 7, "at": 1501.5723753740235 }, { "type": "C", "frame": 6, "at": 1501.5723753740235 }, { "type": "O", "frame": 20, "at": 1501.5723753740235 }, { "type": "O", "frame": 8, "at": 1501.5723753740235 }, { "type": "O", "frame": 9, "at": 1501.5723753740235 }, { "type": "O", "frame": 10, "at": 1501.5723753740235 }, { "type": "O", "frame": 11, "at": 1501.5723753740235 }, { "type": "O", "frame": 12, "at": 1501.5723753740235 }, { "type": "O", "frame": 13, "at": 1501.5723753740235 }, { "type": "O", "frame": 14, "at": 1501.5723753740235 }, { "type": "O", "frame": 15, "at": 1501.5723753740235 }, { "type": "O", "frame": 16, "at": 1501.5723753740235 }, { "type": "O", "frame": 21, "at": 1501.5723753740235 }, { "type": "O", "frame": 22, "at": 1501.5723753740235 }, { "type": "O", "frame": 23, "at": 1501.5723753740235 }, { "type": "O", "frame": 24, "at": 1501.5723753740235 }, { "type": "O", "frame": 18, "at": 1501.5723753740235 }, { "type": "C", "frame": 18, "at": 1509.6272093658447 }, { "type": "C", "frame": 24, "at": 1509.6272093658447 }, { "type": "C", "frame": 23, "at": 1509.6272093658447 }, { "type": "C", "frame": 22, "at": 1509.6272093658447 }, { "type": "C", "frame": 21, "at": 1509.6272093658447 }, { "type": "O", "frame": 17, "at": 1509.6272093658447 }, { "type": "O", "frame": 18, "at": 1509.6272093658447 }, { "type": "C", "frame": 18, "at": 1513.7414167445984 }, { "type": "C", "frame": 17, "at": 1513.7414167445984 }, { "type": "O", "frame": 19, "at": 1513.741417 }, { "type": "O", "frame": 18, "at": 1513.741417 }, { "type": "C", "frame": 18, "at": 1516.4293339940948 }, { "type": "C", "frame": 19, "at": 1516.4293339940948 }, { "type": "C", "frame": 16, "at": 1516.4293352966308 }, { "type": "C", "frame": 15, "at": 1516.4293352966308 }, { "type": "C", "frame": 14, "at": 1516.4293352966308 }, { "type": "C", "frame": 13, "at": 1516.4293352966308 }, { "type": "C", "frame": 12, "at": 1516.4293352966308 }, { "type": "C", "frame": 11, "at": 1516.4293352966308 }, { "type": "C", "frame": 10, "at": 1516.4293352966308 }, { "type": "C", "frame": 9, "at": 1516.4293352966308 }, { "type": "C", "frame": 8, "at": 1516.4293352966308 }, { "type": "C", "frame": 20, "at": 1516.4293352966308 }, { "type": "O", "frame": 6, "at": 1516.4293352966308 }, { "type": "O", "frame": 7, "at": 1516.4293352966308 }, { "type": "O", "frame": 8, "at": 1516.4293352966308 }, { "type": "O", "frame": 9, "at": 1516.4293352966308 }, { "type": "O", "frame": 10, "at": 1516.4293352966308 }, { "type": "O", "frame": 11, "at": 1516.4293352966308 }, { "type": "O", "frame": 12, "at": 1516.4293352966308 }, { "type": "O", "frame": 13, "at": 1516.4293352966308 }, { "type": "O", "frame": 14, "at": 1516.4293352966308 }, { "type": "O", "frame": 15, "at": 1516.4293352966308 }, { "type": "O", "frame": 16, "at": 1516.4293352966308 }, { "type": "O", "frame": 21, "at": 1516.4293352966308 }, { "type": "O", "frame": 22, "at": 1516.4293352966308 }, { "type": "O", "frame": 23, "at": 1516.4293352966308 }, { "type": "O", "frame": 24, "at": 1516.4293352966308 }, { "type": "O", "frame": 18, "at": 1516.4293352966308 }, { "type": "C", "frame": 18, "at": 1519.1122091564025 }, { "type": "C", "frame": 24, "at": 1519.1122091564025 }, { "type": "O", "frame": 29, "at": 1519.1122091564025 }, { "type": "O", "frame": 18, "at": 1519.1122091564025 }, { "type": "C", "frame": 18, "at": 1520.4502920287932 }, { "type": "C", "frame": 29, "at": 1520.4502920287932 }, { "type": "O", "frame": 24, "at": 1520.4502920287932 }, { "type": "O", "frame": 18, "at": 1520.4502920287932 }, { "type": "C", "frame": 18, "at": 1521.7879999963684 }, { "type": "C", "frame": 24, "at": 1521.7879999963684 }, { "type": "O", "frame": 25, "at": 1521.788 }, { "type": "O", "frame": 18, "at": 1521.788 }, { "type": "C", "frame": 18, "at": 1523.125291955948 }, { "type": "C", "frame": 25, "at": 1523.125291955948 }, { "type": "O", "frame": 24, "at": 1523.125292 }, { "type": "O", "frame": 18, "at": 1523.125292 }, { "type": "C", "frame": 18, "at": 1524.4788749782485 }, { "type": "C", "frame": 24, "at": 1524.4788749782485 }, { "type": "C", "frame": 23, "at": 1524.4788754733886 }, { "type": "C", "frame": 22, "at": 1524.4788754733886 }, { "type": "C", "frame": 21, "at": 1524.4788754733886 }, { "type": "O", "frame": 17, "at": 1524.4788754733886 }, { "type": "O", "frame": 18, "at": 1524.4788754733886 }, { "type": "C", "frame": 18, "at": 1530.0009997673035 }, { "type": "C", "frame": 17, "at": 1530.0009997673035 }, { "type": "O", "frame": 19, "at": 1530.001 }, { "type": "O", "frame": 18, "at": 1530.001 }, { "type": "C", "frame": 18, "at": 1540.6711250076294 }, { "type": "C", "frame": 19, "at": 1540.6711250076294 }, { "type": "C", "frame": 16, "at": 1540.6711250076294 }, { "type": "C", "frame": 15, "at": 1540.6711250076294 }, { "type": "C", "frame": 14, "at": 1540.6711250076294 }, { "type": "C", "frame": 13, "at": 1540.6711250076294 }, { "type": "C", "frame": 12, "at": 1540.6711250076294 }, { "type": "C", "frame": 11, "at": 1540.6711250076294 }, { "type": "C", "frame": 10, "at": 1540.6711250076294 }, { "type": "C", "frame": 9, "at": 1540.6711250076294 }, { "type": "C", "frame": 8, "at": 1540.6711250076294 }, { "type": "C", "frame": 7, "at": 1540.6711250076294 }, { "type": "C", "frame": 6, "at": 1540.6711250076294 }, { "type": "O", "frame": 20, "at": 1540.6711250076294 }, { "type": "O", "frame": 8, "at": 1540.6711250076294 }, { "type": "O", "frame": 9, "at": 1540.6711250076294 }, { "type": "O", "frame": 10, "at": 1540.6711250076294 }, { "type": "O", "frame": 11, "at": 1540.6711250076294 }, { "type": "O", "frame": 12, "at": 1540.6711250076294 }, { "type": "O", "frame": 13, "at": 1540.6711250076294 }, { "type": "O", "frame": 14, "at": 1540.6711250076294 }, { "type": "O", "frame": 15, "at": 1540.6711250076294 }, { "type": "O", "frame": 16, "at": 1540.6711250076294 }, { "type": "O", "frame": 21, "at": 1540.6711250076294 }, { "type": "O", "frame": 22, "at": 1540.6711250076294 }, { "type": "O", "frame": 23, "at": 1540.6711250076294 }, { "type": "O", "frame": 24, "at": 1540.6711250076294 }, { "type": "O", "frame": 18, "at": 1540.6711250076294 }, { "type": "C", "frame": 18, "at": 1542.016334002495 }, { "type": "C", "frame": 24, "at": 1542.016334002495 }, { "type": "O", "frame": 26, "at": 1542.016334002495 }, { "type": "O", "frame": 18, "at": 1542.016334002495 }, { "type": "C", "frame": 18, "at": 1543.3688749698485 }, { "type": "C", "frame": 26, "at": 1543.3688749698485 }, { "type": "O", "frame": 24, "at": 1543.368875 }, { "type": "O", "frame": 18, "at": 1543.368875 }, { "type": "C", "frame": 18, "at": 1547.3977088661193 }, { "type": "C", "frame": 24, "at": 1547.3977088661193 }, { "type": "O", "frame": 26, "at": 1547.397709 }, { "type": "O", "frame": 18, "at": 1547.397709 }, { "type": "C", "frame": 18, "at": 1548.7341250060883 }, { "type": "C", "frame": 26, "at": 1548.7341250060883 }, { "type": "O", "frame": 24, "at": 1548.7341250060883 }, { "type": "O", "frame": 18, "at": 1548.7341250060883 }, { "type": "C", "frame": 18, "at": 1550.1090420303344 }, { "type": "C", "frame": 24, "at": 1550.1090420303344 }, { "type": "C", "frame": 23, "at": 1550.1090427093507 }, { "type": "C", "frame": 22, "at": 1550.1090427093507 }, { "type": "C", "frame": 21, "at": 1550.1090427093507 }, { "type": "O", "frame": 17, "at": 1550.1090427093507 }, { "type": "O", "frame": 18, "at": 1550.1090427093507 }, { "type": "C", "frame": 18, "at": 1555.5816667787476 }, { "type": "C", "frame": 17, "at": 1555.5816667787476 }, { "type": "C", "frame": 16, "at": 1555.5816674880982 }, { "type": "C", "frame": 15, "at": 1555.5816674880982 }, { "type": "C", "frame": 14, "at": 1555.5816674880982 }, { "type": "C", "frame": 13, "at": 1555.5816674880982 }, { "type": "C", "frame": 12, "at": 1555.5816674880982 }, { "type": "C", "frame": 11, "at": 1555.5816674880982 }, { "type": "C", "frame": 10, "at": 1555.5816674880982 }, { "type": "C", "frame": 9, "at": 1555.5816674880982 }, { "type": "C", "frame": 8, "at": 1555.5816674880982 }, { "type": "C", "frame": 20, "at": 1555.5816674880982 }, { "type": "O", "frame": 6, "at": 1555.5816674880982 }, { "type": "O", "frame": 27, "at": 1555.5816674880982 }, { "type": "O", "frame": 18, "at": 1555.5816674880982 }, { "type": "C", "frame": 18, "at": 1556.928667002861 }, { "type": "C", "frame": 27, "at": 1556.928667002861 }, { "type": "O", "frame": 7, "at": 1556.928667002861 }, { "type": "O", "frame": 8, "at": 1556.928667002861 }, { "type": "O", "frame": 9, "at": 1556.928667002861 }, { "type": "O", "frame": 10, "at": 1556.928667002861 }, { "type": "O", "frame": 11, "at": 1556.928667002861 }, { "type": "O", "frame": 12, "at": 1556.928667002861 }, { "type": "O", "frame": 13, "at": 1556.928667002861 }, { "type": "O", "frame": 14, "at": 1556.928667002861 }, { "type": "O", "frame": 15, "at": 1556.928667002861 }, { "type": "O", "frame": 16, "at": 1556.928667002861 }, { "type": "O", "frame": 21, "at": 1556.928667002861 }, { "type": "O", "frame": 22, "at": 1556.928667002861 }, { "type": "O", "frame": 23, "at": 1556.928667002861 }, { "type": "O", "frame": 24, "at": 1556.928667002861 }, { "type": "O", "frame": 18, "at": 1556.928667002861 }, { "type": "C", "frame": 18, "at": 1565.008417061035 }, { "type": "C", "frame": 24, "at": 1565.008417061035 }, { "type": "C", "frame": 23, "at": 1565.008417061035 }, { "type": "C", "frame": 22, "at": 1565.008417061035 }, { "type": "C", "frame": 21, "at": 1565.008417061035 }, { "type": "O", "frame": 17, "at": 1565.008417061035 }, { "type": "O", "frame": 18, "at": 1565.008417061035 }, { "type": "C", "frame": 18, "at": 1569.1208342210693 }, { "type": "C", "frame": 17, "at": 1569.1208342210693 }, { "type": "O", "frame": 19, "at": 1569.1208342210693 }, { "type": "O", "frame": 18, "at": 1569.1208342210693 }, { "type": "C", "frame": 18, "at": 1577.108250267395 }, { "type": "C", "frame": 19, "at": 1577.108250267395 }, { "type": "C", "frame": 16, "at": 1577.1082515031737 }, { "type": "C", "frame": 15, "at": 1577.1082515031737 }, { "type": "C", "frame": 14, "at": 1577.1082515031737 }, { "type": "C", "frame": 13, "at": 1577.1082515031737 }, { "type": "C", "frame": 12, "at": 1577.1082515031737 }, { "type": "C", "frame": 11, "at": 1577.1082515031737 }, { "type": "C", "frame": 10, "at": 1577.1082515031737 }, { "type": "C", "frame": 9, "at": 1577.1082515031737 }, { "type": "C", "frame": 8, "at": 1577.1082515031737 }, { "type": "C", "frame": 7, "at": 1577.1082515031737 }, { "type": "C", "frame": 6, "at": 1577.108251625244 }, { "type": "O", "frame": 20, "at": 1577.108251625244 }, { "type": "O", "frame": 8, "at": 1577.108251625244 }, { "type": "O", "frame": 9, "at": 1577.108251625244 }, { "type": "O", "frame": 10, "at": 1577.108251625244 }, { "type": "O", "frame": 11, "at": 1577.108251625244 }, { "type": "O", "frame": 12, "at": 1577.108251625244 }, { "type": "O", "frame": 13, "at": 1577.108251625244 }, { "type": "O", "frame": 14, "at": 1577.108251625244 }, { "type": "O", "frame": 15, "at": 1577.108251625244 }, { "type": "O", "frame": 16, "at": 1577.108251625244 }, { "type": "O", "frame": 21, "at": 1577.108251625244 }, { "type": "O", "frame": 22, "at": 1577.108251625244 }, { "type": "O", "frame": 23, "at": 1577.108251625244 }, { "type": "O", "frame": 24, "at": 1577.108251625244 }, { "type": "O", "frame": 18, "at": 1577.108251625244 }, { "type": "C", "frame": 18, "at": 1586.5362924118042 }, { "type": "C", "frame": 24, "at": 1586.5362924118042 }, { "type": "C", "frame": 23, "at": 1586.5362924118042 }, { "type": "C", "frame": 22, "at": 1586.5362924118042 }, { "type": "C", "frame": 21, "at": 1586.5362924118042 }, { "type": "O", "frame": 17, "at": 1586.5362924118042 }, { "type": "O", "frame": 18, "at": 1586.5362924118042 }, { "type": "C", "frame": 18, "at": 1590.6471671296997 }, { "type": "C", "frame": 17, "at": 1590.6471671296997 }, { "type": "O", "frame": 19, "at": 1590.6471671296997 }, { "type": "O", "frame": 18, "at": 1590.6471671296997 }, { "type": "C", "frame": 18, "at": 1591.990291985695 }, { "type": "C", "frame": 19, "at": 1591.990291985695 }, { "type": "C", "frame": 16, "at": 1591.9902928848267 }, { "type": "C", "frame": 15, "at": 1591.9902928848267 }, { "type": "C", "frame": 14, "at": 1591.9902928848267 }, { "type": "C", "frame": 13, "at": 1591.9902928848267 }, { "type": "C", "frame": 12, "at": 1591.9902928848267 }, { "type": "C", "frame": 11, "at": 1591.9902928848267 }, { "type": "C", "frame": 10, "at": 1591.9902928848267 }, { "type": "C", "frame": 9, "at": 1591.9902928848267 }, { "type": "C", "frame": 8, "at": 1591.9902928848267 }, { "type": "C", "frame": 20, "at": 1591.9902928848267 }, { "type": "O", "frame": 6, "at": 1591.9902928848267 }, { "type": "O", "frame": 7, "at": 1591.9902928848267 }, { "type": "O", "frame": 8, "at": 1591.9902928848267 }, { "type": "O", "frame": 9, "at": 1591.9902928848267 }, { "type": "O", "frame": 10, "at": 1591.9902928848267 }, { "type": "O", "frame": 11, "at": 1591.9902928848267 }, { "type": "O", "frame": 12, "at": 1591.9902928848267 }, { "type": "O", "frame": 13, "at": 1591.9902928848267 }, { "type": "O", "frame": 14, "at": 1591.9902928848267 }, { "type": "O", "frame": 15, "at": 1591.9902928848267 }, { "type": "O", "frame": 16, "at": 1591.9902928848267 }, { "type": "O", "frame": 21, "at": 1591.9902928848267 }, { "type": "O", "frame": 22, "at": 1591.9902928848267 }, { "type": "O", "frame": 23, "at": 1591.9902928848267 }, { "type": "O", "frame": 24, "at": 1591.9902928848267 }, { "type": "O", "frame": 18, "at": 1591.9902928848267 }, { "type": "C", "frame": 18, "at": 1593.340833949272 }, { "type": "C", "frame": 24, "at": 1593.340833949272 }, { "type": "O", "frame": 26, "at": 1593.340834 }, { "type": "O", "frame": 18, "at": 1593.340834 }, { "type": "C", "frame": 18, "at": 1594.6915000461427 }, { "type": "C", "frame": 26, "at": 1594.6915000461427 }, { "type": "O", "frame": 24, "at": 1594.6915000461427 }, { "type": "O", "frame": 18, "at": 1594.6915000461427 }, { "type": "C", "frame": 18, "at": 1600.07050018692 }, { "type": "C", "frame": 24, "at": 1600.07050018692 }, { "type": "O", "frame": 26, "at": 1600.07050018692 }, { "type": "O", "frame": 18, "at": 1600.07050018692 }, { "type": "C", "frame": 18, "at": 1601.4196669893265 }, { "type": "C", "frame": 26, "at": 1601.4196669893265 }, { "type": "C", "frame": 23, "at": 1601.4196669893265 }, { "type": "C", "frame": 22, "at": 1601.4196669893265 }, { "type": "C", "frame": 21, "at": 1601.4196669893265 }, { "type": "O", "frame": 17, "at": 1601.419667 }, { "type": "O", "frame": 18, "at": 1601.419667 }, { "type": "C", "frame": 18, "at": 1606.8830420915526 }, { "type": "C", "frame": 17, "at": 1606.8830420915526 }, { "type": "O", "frame": 19, "at": 1606.8830420915526 }, { "type": "O", "frame": 18, "at": 1606.8830420915526 }, { "type": "C", "frame": 18, "at": 1614.9660841447753 }, { "type": "C", "frame": 19, "at": 1614.9660841447753 }, { "type": "C", "frame": 16, "at": 1614.9660841447753 }, { "type": "C", "frame": 15, "at": 1614.9660841447753 }, { "type": "C", "frame": 14, "at": 1614.9660841447753 }, { "type": "C", "frame": 13, "at": 1614.9660841447753 }, { "type": "C", "frame": 12, "at": 1614.9660841447753 }, { "type": "C", "frame": 11, "at": 1614.9660841447753 }, { "type": "C", "frame": 10, "at": 1614.9660841447753 }, { "type": "C", "frame": 9, "at": 1614.9660841447753 }, { "type": "C", "frame": 8, "at": 1614.9660841447753 }, { "type": "C", "frame": 7, "at": 1614.9660841447753 }, { "type": "C", "frame": 6, "at": 1614.9660841447753 }, { "type": "O", "frame": 20, "at": 1614.9660841447753 }, { "type": "O", "frame": 8, "at": 1614.9660841447753 }, { "type": "O", "frame": 9, "at": 1614.9660841447753 }, { "type": "O", "frame": 10, "at": 1614.9660841447753 }, { "type": "O", "frame": 11, "at": 1614.9660841447753 }, { "type": "O", "frame": 12, "at": 1614.9660841447753 }, { "type": "O", "frame": 13, "at": 1614.9660841447753 }, { "type": "O", "frame": 14, "at": 1614.9660841447753 }, { "type": "O", "frame": 15, "at": 1614.9660841447753 }, { "type": "O", "frame": 16, "at": 1614.9660841447753 }, { "type": "O", "frame": 21, "at": 1614.9660841447753 }, { "type": "O", "frame": 22, "at": 1614.9660841447753 }, { "type": "O", "frame": 23, "at": 1614.9660841447753 }, { "type": "O", "frame": 24, "at": 1614.9660841447753 }, { "type": "O", "frame": 18, "at": 1614.9660841447753 }, { "type": "C", "frame": 18, "at": 1623.0439991916503 }, { "type": "C", "frame": 24, "at": 1623.0439991916503 }, { "type": "C", "frame": 23, "at": 1623.0439991916503 }, { "type": "C", "frame": 22, "at": 1623.0439991916503 }, { "type": "C", "frame": 21, "at": 1623.0439991916503 }, { "type": "O", "frame": 17, "at": 1623.044 }, { "type": "O", "frame": 18, "at": 1623.044 }, { "type": "C", "frame": 18, "at": 1628.5211666526795 }, { "type": "C", "frame": 17, "at": 1628.5211666526795 }, { "type": "O", "frame": 19, "at": 1628.521167 }, { "type": "O", "frame": 18, "at": 1628.521167 }, { "type": "C", "frame": 18, "at": 1636.523291786377 }, { "type": "C", "frame": 19, "at": 1636.523291786377 }, { "type": "C", "frame": 16, "at": 1636.523291786377 }, { "type": "C", "frame": 15, "at": 1636.523291786377 }, { "type": "C", "frame": 14, "at": 1636.523291786377 }, { "type": "C", "frame": 13, "at": 1636.523291786377 }, { "type": "C", "frame": 12, "at": 1636.523291786377 }, { "type": "C", "frame": 11, "at": 1636.523291786377 }, { "type": "C", "frame": 10, "at": 1636.523291786377 }, { "type": "C", "frame": 9, "at": 1636.523291786377 }, { "type": "C", "frame": 8, "at": 1636.523291786377 }, { "type": "C", "frame": 20, "at": 1636.523291786377 }, { "type": "O", "frame": 6, "at": 1636.523292 }, { "type": "O", "frame": 7, "at": 1636.523292 }, { "type": "O", "frame": 8, "at": 1636.523292 }, { "type": "O", "frame": 9, "at": 1636.523292 }, { "type": "O", "frame": 10, "at": 1636.523292 }, { "type": "O", "frame": 11, "at": 1636.523292 }, { "type": "O", "frame": 12, "at": 1636.523292 }, { "type": "O", "frame": 13, "at": 1636.523292 }, { "type": "O", "frame": 14, "at": 1636.523292 }, { "type": "O", "frame": 15, "at": 1636.523292 }, { "type": "O", "frame": 16, "at": 1636.523292 }, { "type": "O", "frame": 21, "at": 1636.523292 }, { "type": "O", "frame": 22, "at": 1636.523292 }, { "type": "O", "frame": 23, "at": 1636.523292 }, { "type": "O", "frame": 24, "at": 1636.523292 }, { "type": "O", "frame": 18, "at": 1636.523292 }, { "type": "C", "frame": 18, "at": 1644.5857500383302 }, { "type": "C", "frame": 24, "at": 1644.5857500383302 }, { "type": "C", "frame": 23, "at": 1644.5857500383302 }, { "type": "C", "frame": 22, "at": 1644.5857500383302 }, { "type": "C", "frame": 21, "at": 1644.5857500383302 }, { "type": "O", "frame": 17, "at": 1644.5857500383302 }, { "type": "O", "frame": 18, "at": 1644.5857500383302 }, { "type": "C", "frame": 18, "at": 1650.220959083557 }, { "type": "C", "frame": 17, "at": 1650.220959083557 }, { "type": "O", "frame": 19, "at": 1650.220959083557 }, { "type": "O", "frame": 18, "at": 1650.220959083557 }, { "type": "C", "frame": 18, "at": 1651.558834008583 }, { "type": "C", "frame": 19, "at": 1651.558834008583 }, { "type": "C", "frame": 16, "at": 1651.5588344880982 }, { "type": "C", "frame": 15, "at": 1651.5588344880982 }, { "type": "C", "frame": 14, "at": 1651.5588344880982 }, { "type": "C", "frame": 13, "at": 1651.5588344880982 }, { "type": "C", "frame": 12, "at": 1651.5588344880982 }, { "type": "C", "frame": 11, "at": 1651.5588344880982 }, { "type": "C", "frame": 10, "at": 1651.5588344880982 }, { "type": "C", "frame": 9, "at": 1651.5588344880982 }, { "type": "C", "frame": 8, "at": 1651.5588344880982 }, { "type": "C", "frame": 7, "at": 1651.5588344880982 }, { "type": "C", "frame": 6, "at": 1651.5588344880982 }, { "type": "O", "frame": 20, "at": 1651.5588344880982 }, { "type": "O", "frame": 8, "at": 1651.5588344880982 }, { "type": "O", "frame": 9, "at": 1651.5588344880982 }, { "type": "O", "frame": 10, "at": 1651.5588344880982 }, { "type": "O", "frame": 11, "at": 1651.5588344880982 }, { "type": "O", "frame": 12, "at": 1651.5588344880982 }, { "type": "O", "frame": 13, "at": 1651.5588344880982 }, { "type": "O", "frame": 14, "at": 1651.5588344880982 }, { "type": "O", "frame": 15, "at": 1651.5588344880982 }, { "type": "O", "frame": 16, "at": 1651.5588344880982 }, { "type": "O", "frame": 21, "at": 1651.5588344880982 }, { "type": "O", "frame": 22, "at": 1651.5588344880982 }, { "type": "O", "frame": 23, "at": 1651.5588344880982 }, { "type": "O", "frame": 24, "at": 1651.5588344880982 }, { "type": "O", "frame": 18, "at": 1651.5588344880982 }, { "type": "C", "frame": 18, "at": 1656.9423751071777 }, { "type": "C", "frame": 24, "at": 1656.9423751071777 }, { "type": "O", "frame": 29, "at": 1656.9423751071777 }, { "type": "O", "frame": 18, "at": 1656.9423751071777 }, { "type": "C", "frame": 18, "at": 1658.2871250467301 }, { "type": "C", "frame": 29, "at": 1658.2871250467301 }, { "type": "O", "frame": 24, "at": 1658.2871250467301 }, { "type": "O", "frame": 18, "at": 1658.2871250467301 }, { "type": "C", "frame": 18, "at": 1660.9844168510438 }, { "type": "C", "frame": 24, "at": 1660.9844168510438 }, { "type": "C", "frame": 23, "at": 1660.9844178394164 }, { "type": "C", "frame": 22, "at": 1660.9844178394164 }, { "type": "C", "frame": 21, "at": 1660.9844178394164 }, { "type": "O", "frame": 17, "at": 1660.9844178394164 }, { "type": "O", "frame": 18, "at": 1660.9844178394164 }, { "type": "C", "frame": 18, "at": 1665.0945420648497 }, { "type": "C", "frame": 17, "at": 1665.0945420648497 }, { "type": "O", "frame": 19, "at": 1665.0945420648497 }, { "type": "O", "frame": 18, "at": 1665.0945420648497 }, { "type": "C", "frame": 18, "at": 1671.786249611084 }, { "type": "C", "frame": 19, "at": 1671.786249611084 }, { "type": "C", "frame": 16, "at": 1671.786252899536 }, { "type": "C", "frame": 15, "at": 1671.786252899536 }, { "type": "C", "frame": 14, "at": 1671.786252899536 }, { "type": "C", "frame": 13, "at": 1671.786252899536 }, { "type": "C", "frame": 12, "at": 1671.786252899536 }, { "type": "C", "frame": 11, "at": 1671.786252899536 }, { "type": "C", "frame": 10, "at": 1671.786252899536 }, { "type": "C", "frame": 9, "at": 1671.786252899536 }, { "type": "C", "frame": 8, "at": 1671.786252899536 }, { "type": "O", "frame": 18, "at": 1671.786252899536 }, { "type": "C", "frame": 18, "at": 1673.1495419788362 }, { "type": "C", "frame": 20, "at": 1673.1495455936279 }, { "type": "O", "frame": 6, "at": 1673.1495455936279 }, { "type": "O", "frame": 7, "at": 1673.1495455936279 }, { "type": "O", "frame": 8, "at": 1673.1495455936279 }, { "type": "O", "frame": 9, "at": 1673.1495455936279 }, { "type": "O", "frame": 10, "at": 1673.1495455936279 }, { "type": "O", "frame": 11, "at": 1673.1495455936279 }, { "type": "O", "frame": 12, "at": 1673.1495455936279 }, { "type": "O", "frame": 13, "at": 1673.1495455936279 }, { "type": "O", "frame": 14, "at": 1673.1495455936279 }, { "type": "O", "frame": 15, "at": 1673.1495455936279 }, { "type": "O", "frame": 16, "at": 1673.1495455936279 }, { "type": "O", "frame": 21, "at": 1673.1495455936279 }, { "type": "O", "frame": 22, "at": 1673.1495455936279 }, { "type": "O", "frame": 23, "at": 1673.1495455936279 }, { "type": "O", "frame": 24, "at": 1673.1495455936279 }, { "type": "O", "frame": 18, "at": 1673.1495455936279 }, { "type": "C", "frame": 18, "at": 1675.8496669790193 }, { "type": "C", "frame": 24, "at": 1675.8496669790193 }, { "type": "O", "frame": 28, "at": 1675.849667 }, { "type": "O", "frame": 18, "at": 1675.849667 }, { "type": "C", "frame": 18, "at": 1677.1952089540405 }, { "type": "C", "frame": 28, "at": 1677.1952089540405 }, { "type": "O", "frame": 24, "at": 1677.195209 }, { "type": "O", "frame": 18, "at": 1677.195209 }, { "type": "C", "frame": 18, "at": 1681.2317919467773 }, { "type": "C", "frame": 24, "at": 1681.2317919467773 }, { "type": "C", "frame": 23, "at": 1681.2317919467773 }, { "type": "C", "frame": 22, "at": 1681.2317919467773 }, { "type": "C", "frame": 21, "at": 1681.2317919467773 }, { "type": "O", "frame": 17, "at": 1681.231792 }, { "type": "O", "frame": 18, "at": 1681.231792 }, { "type": "C", "frame": 18, "at": 1685.4721670419617 }, { "type": "C", "frame": 17, "at": 1685.4721670419617 }, { "type": "O", "frame": 30, "at": 1685.4721670419617 }, { "type": "O", "frame": 18, "at": 1685.4721670419617 }, { "type": "C", "frame": 18, "at": 1686.8374589530868 }, { "type": "C", "frame": 30, "at": 1686.8374589530868 }, { "type": "O", "frame": 19, "at": 1686.837459 }, { "type": "O", "frame": 18, "at": 1686.837459 }, { "type": "C", "frame": 18, "at": 1688.1917089542237 }, { "type": "C", "frame": 19, "at": 1688.1917089542237 }, { "type": "C", "frame": 16, "at": 1688.1917089542237 }, { "type": "C", "frame": 15, "at": 1688.1917089542237 }, { "type": "C", "frame": 14, "at": 1688.1917089542237 }, { "type": "C", "frame": 13, "at": 1688.1917089542237 }, { "type": "C", "frame": 12, "at": 1688.1917089542237 }, { "type": "C", "frame": 11, "at": 1688.1917089542237 }, { "type": "C", "frame": 10, "at": 1688.1917089542237 }, { "type": "C", "frame": 9, "at": 1688.1917089542237 }, { "type": "C", "frame": 8, "at": 1688.1917089542237 }, { "type": "C", "frame": 7, "at": 1688.1917089542237 }, { "type": "C", "frame": 6, "at": 1688.1917089542237 }, { "type": "O", "frame": 20, "at": 1688.191709 }, { "type": "O", "frame": 8, "at": 1688.191709 }, { "type": "O", "frame": 9, "at": 1688.191709 }, { "type": "O", "frame": 10, "at": 1688.191709 }, { "type": "O", "frame": 11, "at": 1688.191709 }, { "type": "O", "frame": 12, "at": 1688.191709 }, { "type": "O", "frame": 13, "at": 1688.191709 }, { "type": "O", "frame": 14, "at": 1688.191709 }, { "type": "O", "frame": 15, "at": 1688.191709 }, { "type": "O", "frame": 16, "at": 1688.191709 }, { "type": "O", "frame": 21, "at": 1688.191709 }, { "type": "O", "frame": 22, "at": 1688.191709 }, { "type": "O", "frame": 23, "at": 1688.191709 }, { "type": "O", "frame": 24, "at": 1688.191709 }, { "type": "O", "frame": 18, "at": 1688.191709 }, { "type": "C", "frame": 18, "at": 1689.539334017166 }, { "type": "C", "frame": 24, "at": 1689.539334017166 }, { "type": "O", "frame": 26, "at": 1689.539334017166 }, { "type": "O", "frame": 18, "at": 1689.539334017166 }, { "type": "C", "frame": 18, "at": 1690.8831669696656 }, { "type": "C", "frame": 26, "at": 1690.8831669696656 }, { "type": "O", "frame": 24, "at": 1690.883167 }, { "type": "O", "frame": 18, "at": 1690.883167 }, { "type": "C", "frame": 18, "at": 1692.233708949272 }, { "type": "C", "frame": 24, "at": 1692.233708949272 }, { "type": "O", "frame": 31, "at": 1692.233709 }, { "type": "O", "frame": 18, "at": 1692.233709 }, { "type": "C", "frame": 18, "at": 1693.57645895327 }, { "type": "C", "frame": 31, "at": 1693.57645895327 }, { "type": "O", "frame": 24, "at": 1693.576459 }, { "type": "O", "frame": 18, "at": 1693.576459 }, { "type": "C", "frame": 18, "at": 1696.280541965851 }, { "type": "C", "frame": 24, "at": 1696.280541965851 }, { "type": "C", "frame": 23, "at": 1696.280541965851 }, { "type": "C", "frame": 22, "at": 1696.280541965851 }, { "type": "C", "frame": 21, "at": 1696.280541965851 }, { "type": "O", "frame": 17, "at": 1696.280542 }, { "type": "O", "frame": 18, "at": 1696.280542 }, { "type": "C", "frame": 18, "at": 1700.4600840646667 }, { "type": "C", "frame": 17, "at": 1700.4600840646667 }, { "type": "O", "frame": 30, "at": 1700.4600840646667 }, { "type": "O", "frame": 18, "at": 1700.4600840646667 }, { "type": "C", "frame": 18, "at": 1701.7976669458237 }, { "type": "C", "frame": 30, "at": 1701.7976669458237 }, { "type": "O", "frame": 19, "at": 1701.797667 }, { "type": "O", "frame": 18, "at": 1701.797667 }, { "type": "C", "frame": 18, "at": 1708.4867920610352 }, { "type": "C", "frame": 19, "at": 1708.4867920610352 }, { "type": "C", "frame": 16, "at": 1708.4867929996337 }, { "type": "C", "frame": 15, "at": 1708.4867929996337 }, { "type": "C", "frame": 14, "at": 1708.4867929996337 }, { "type": "C", "frame": 13, "at": 1708.4867929996337 }, { "type": "C", "frame": 12, "at": 1708.4867929996337 }, { "type": "C", "frame": 11, "at": 1708.4867929996337 }, { "type": "C", "frame": 10, "at": 1708.4867929996337 }, { "type": "C", "frame": 9, "at": 1708.4867929996337 }, { "type": "C", "frame": 8, "at": 1708.4867929996337 }, { "type": "C", "frame": 20, "at": 1708.4867929996337 }, { "type": "O", "frame": 6, "at": 1708.4867929996337 }, { "type": "O", "frame": 7, "at": 1708.4867929996337 }, { "type": "O", "frame": 18, "at": 1708.4867929996337 }, { "type": "C", "frame": 18, "at": 1709.8635419923705 }, { "type": "O", "frame": 8, "at": 1709.863542 }, { "type": "O", "frame": 9, "at": 1709.863542 }, { "type": "O", "frame": 10, "at": 1709.863542 }, { "type": "O", "frame": 11, "at": 1709.863542 }, { "type": "O", "frame": 12, "at": 1709.863542 }, { "type": "O", "frame": 13, "at": 1709.863542 }, { "type": "O", "frame": 14, "at": 1709.863542 }, { "type": "O", "frame": 15, "at": 1709.863542 }, { "type": "O", "frame": 16, "at": 1709.863542 }, { "type": "O", "frame": 21, "at": 1709.863542 }, { "type": "O", "frame": 22, "at": 1709.863542 }, { "type": "O", "frame": 23, "at": 1709.863542 }, { "type": "O", "frame": 24, "at": 1709.863542 }, { "type": "O", "frame": 18, "at": 1709.863542 }, { "type": "C", "frame": 18, "at": 1716.5626663362427 }, { "type": "C", "frame": 24, "at": 1716.5626663362427 }, { "type": "O", "frame": 29, "at": 1716.562667 }, { "type": "O", "frame": 18, "at": 1716.562667 }, { "type": "C", "frame": 18, "at": 1717.9055000421447 }, { "type": "C", "frame": 29, "at": 1717.9055000421447 }, { "type": "C", "frame": 23, "at": 1717.9055000421447 }, { "type": "C", "frame": 22, "at": 1717.9055000421447 }, { "type": "C", "frame": 21, "at": 1717.9055000421447 }, { "type": "O", "frame": 17, "at": 1717.9055000421447 }, { "type": "O", "frame": 18, "at": 1717.9055000421447 }, { "type": "C", "frame": 18, "at": 1723.4802919082642 }, { "type": "C", "frame": 17, "at": 1723.4802919082642 }, { "type": "O", "frame": 19, "at": 1723.480292 }, { "type": "O", "frame": 18, "at": 1723.480292 }, { "type": "C", "frame": 18, "at": 1730.1664997713012 }, { "type": "C", "frame": 19, "at": 1730.1664997713012 }, { "type": "C", "frame": 16, "at": 1730.1664997713012 }, { "type": "C", "frame": 15, "at": 1730.1664997713012 }, { "type": "C", "frame": 14, "at": 1730.1664997713012 }, { "type": "C", "frame": 13, "at": 1730.1664997713012 }, { "type": "C", "frame": 12, "at": 1730.1664997713012 }, { "type": "C", "frame": 11, "at": 1730.1664997713012 }, { "type": "C", "frame": 10, "at": 1730.1664997713012 }, { "type": "C", "frame": 9, "at": 1730.1664997713012 }, { "type": "C", "frame": 8, "at": 1730.1664997713012 }, { "type": "C", "frame": 7, "at": 1730.1664997713012 }, { "type": "C", "frame": 6, "at": 1730.1664997713012 }, { "type": "O", "frame": 20, "at": 1730.1665 }, { "type": "O", "frame": 8, "at": 1730.1665 }, { "type": "O", "frame": 9, "at": 1730.1665 }, { "type": "O", "frame": 10, "at": 1730.1665 }, { "type": "O", "frame": 11, "at": 1730.1665 }, { "type": "O", "frame": 12, "at": 1730.1665 }, { "type": "O", "frame": 13, "at": 1730.1665 }, { "type": "O", "frame": 14, "at": 1730.1665 }, { "type": "O", "frame": 15, "at": 1730.1665 }, { "type": "O", "frame": 16, "at": 1730.1665 }, { "type": "O", "frame": 21, "at": 1730.1665 }, { "type": "O", "frame": 22, "at": 1730.1665 }, { "type": "O", "frame": 23, "at": 1730.1665 }, { "type": "O", "frame": 24, "at": 1730.1665 }, { "type": "O", "frame": 18, "at": 1730.1665 }, { "type": "C", "frame": 18, "at": 1739.5905007400513 }, { "type": "C", "frame": 24, "at": 1739.5905007400513 }, { "type": "C", "frame": 23, "at": 1739.5905007400513 }, { "type": "C", "frame": 22, "at": 1739.5905007400513 }, { "type": "C", "frame": 21, "at": 1739.5905007400513 }, { "type": "O", "frame": 17, "at": 1739.5905007400513 }, { "type": "O", "frame": 18, "at": 1739.5905007400513 }, { "type": "C", "frame": 18, "at": 1743.692792060852 }, { "type": "C", "frame": 17, "at": 1743.692792060852 }, { "type": "O", "frame": 19, "at": 1743.692792060852 }, { "type": "O", "frame": 18, "at": 1743.692792060852 }, { "type": "C", "frame": 18, "at": 1746.4360418931885 }, { "type": "C", "frame": 19, "at": 1746.4360418931885 }, { "type": "C", "frame": 16, "at": 1746.4360426940918 }, { "type": "C", "frame": 15, "at": 1746.4360426940918 }, { "type": "C", "frame": 14, "at": 1746.4360426940918 }, { "type": "C", "frame": 13, "at": 1746.4360426940918 }, { "type": "C", "frame": 12, "at": 1746.4360426940918 }, { "type": "C", "frame": 11, "at": 1746.4360426940918 }, { "type": "C", "frame": 10, "at": 1746.4360426940918 }, { "type": "C", "frame": 9, "at": 1746.4360426940918 }, { "type": "C", "frame": 8, "at": 1746.4360426940918 }, { "type": "C", "frame": 20, "at": 1746.4360426940918 }, { "type": "O", "frame": 6, "at": 1746.4360426940918 }, { "type": "O", "frame": 7, "at": 1746.4360426940918 }, { "type": "O", "frame": 8, "at": 1746.4360426940918 }, { "type": "O", "frame": 9, "at": 1746.4360426940918 }, { "type": "O", "frame": 10, "at": 1746.4360426940918 }, { "type": "O", "frame": 11, "at": 1746.4360426940918 }, { "type": "O", "frame": 12, "at": 1746.4360426940918 }, { "type": "O", "frame": 13, "at": 1746.4360426940918 }, { "type": "O", "frame": 14, "at": 1746.4360426940918 }, { "type": "O", "frame": 15, "at": 1746.4360426940918 }, { "type": "O", "frame": 16, "at": 1746.4360426940918 }, { "type": "O", "frame": 21, "at": 1746.4360426940918 }, { "type": "O", "frame": 22, "at": 1746.4360426940918 }, { "type": "O", "frame": 23, "at": 1746.4360426940918 }, { "type": "O", "frame": 24, "at": 1746.4360426940918 }, { "type": "O", "frame": 18, "at": 1746.4360426940918 }, { "type": "C", "frame": 18, "at": 1754.5507499467774 }, { "type": "C", "frame": 24, "at": 1754.5507499467774 }, { "type": "C", "frame": 23, "at": 1754.5507499467774 }, { "type": "C", "frame": 22, "at": 1754.5507499467774 }, { "type": "C", "frame": 21, "at": 1754.5507499467774 }, { "type": "O", "frame": 17, "at": 1754.55075 }, { "type": "O", "frame": 18, "at": 1754.55075 }, { "type": "C", "frame": 18, "at": 1760.0334169692994 }, { "type": "C", "frame": 17, "at": 1760.0334169692994 }, { "type": "O", "frame": 19, "at": 1760.033417 }, { "type": "O", "frame": 18, "at": 1760.033417 }, { "type": "C", "frame": 18, "at": 1766.7362086908265 }, { "type": "C", "frame": 19, "at": 1766.7362086908265 }, { "type": "C", "frame": 16, "at": 1766.736210991089 }, { "type": "C", "frame": 15, "at": 1766.736210991089 }, { "type": "C", "frame": 14, "at": 1766.736210991089 }, { "type": "C", "frame": 13, "at": 1766.736210991089 }, { "type": "C", "frame": 12, "at": 1766.736210991089 }, { "type": "C", "frame": 11, "at": 1766.736210991089 }, { "type": "C", "frame": 10, "at": 1766.736210991089 }, { "type": "C", "frame": 9, "at": 1766.736210991089 }, { "type": "C", "frame": 8, "at": 1766.736210991089 }, { "type": "C", "frame": 7, "at": 1766.736210991089 }, { "type": "C", "frame": 6, "at": 1766.736210991089 }, { "type": "O", "frame": 20, "at": 1766.736210991089 }, { "type": "O", "frame": 8, "at": 1766.736210991089 }, { "type": "O", "frame": 9, "at": 1766.736210991089 }, { "type": "O", "frame": 10, "at": 1766.736210991089 }, { "type": "O", "frame": 11, "at": 1766.736210991089 }, { "type": "O", "frame": 12, "at": 1766.736210991089 }, { "type": "O", "frame": 13, "at": 1766.736210991089 }, { "type": "O", "frame": 14, "at": 1766.736210991089 }, { "type": "O", "frame": 15, "at": 1766.736210991089 }, { "type": "O", "frame": 16, "at": 1766.736210991089 }, { "type": "O", "frame": 18, "at": 1766.736210991089 }, { "type": "C", "frame": 18, "at": 1768.0896249660339 }, { "type": "O", "frame": 21, "at": 1768.089625 }, { "type": "O", "frame": 22, "at": 1768.089625 }, { "type": "O", "frame": 23, "at": 1768.089625 }, { "type": "O", "frame": 24, "at": 1768.089625 }, { "type": "O", "frame": 18, "at": 1768.089625 }, { "type": "C", "frame": 18, "at": 1776.1534582366944 }, { "type": "C", "frame": 24, "at": 1776.1534582366944 }, { "type": "C", "frame": 23, "at": 1776.1534582366944 }, { "type": "C", "frame": 22, "at": 1776.1534582366944 }, { "type": "C", "frame": 21, "at": 1776.1534582366944 }, { "type": "O", "frame": 17, "at": 1776.153459 }, { "type": "O", "frame": 18, "at": 1776.153459 }, { "type": "C", "frame": 18, "at": 1780.3222917789308 }, { "type": "C", "frame": 17, "at": 1780.3222917789308 }, { "type": "O", "frame": 19, "at": 1780.322292 }, { "type": "O", "frame": 18, "at": 1780.322292 }, { "type": "C", "frame": 18, "at": 1783.0542499124451 }, { "type": "C", "frame": 19, "at": 1783.0542499124451 }, { "type": "C", "frame": 16, "at": 1783.0542499124451 }, { "type": "C", "frame": 15, "at": 1783.0542499124451 }, { "type": "C", "frame": 14, "at": 1783.0542499124451 }, { "type": "C", "frame": 13, "at": 1783.0542499124451 }, { "type": "C", "frame": 12, "at": 1783.0542499124451 }, { "type": "C", "frame": 11, "at": 1783.0542499124451 }, { "type": "C", "frame": 10, "at": 1783.0542499124451 }, { "type": "C", "frame": 9, "at": 1783.0542499124451 }, { "type": "C", "frame": 8, "at": 1783.0542499124451 }, { "type": "C", "frame": 20, "at": 1783.0542499124451 }, { "type": "O", "frame": 6, "at": 1783.05425 }, { "type": "O", "frame": 7, "at": 1783.05425 }, { "type": "O", "frame": 8, "at": 1783.05425 }, { "type": "O", "frame": 9, "at": 1783.05425 }, { "type": "O", "frame": 10, "at": 1783.05425 }, { "type": "O", "frame": 11, "at": 1783.05425 }, { "type": "O", "frame": 12, "at": 1783.05425 }, { "type": "O", "frame": 13, "at": 1783.05425 }, { "type": "O", "frame": 14, "at": 1783.05425 }, { "type": "O", "frame": 15, "at": 1783.05425 }, { "type": "O", "frame": 16, "at": 1783.05425 }, { "type": "O", "frame": 21, "at": 1783.05425 }, { "type": "O", "frame": 22, "at": 1783.05425 }, { "type": "O", "frame": 23, "at": 1783.05425 }, { "type": "O", "frame": 24, "at": 1783.05425 }, { "type": "O", "frame": 18, "at": 1783.05425 }, { "type": "C", "frame": 18, "at": 1789.7747504692077 }, { "type": "C", "frame": 24, "at": 1789.7747504692077 }, { "type": "O", "frame": 31, "at": 1789.7747504692077 }, { "type": "O", "frame": 18, "at": 1789.7747504692077 }, { "type": "C", "frame": 18, "at": 1791.1365419683457 }, { "type": "C", "frame": 31, "at": 1791.1365419683457 }, { "type": "C", "frame": 23, "at": 1791.1365425567626 }, { "type": "C", "frame": 22, "at": 1791.1365425567626 }, { "type": "C", "frame": 21, "at": 1791.1365425567626 }, { "type": "O", "frame": 17, "at": 1791.1365425567626 }, { "type": "O", "frame": 18, "at": 1791.1365425567626 }, { "type": "C", "frame": 18, "at": 1796.6417090074463 }, { "type": "C", "frame": 17, "at": 1796.6417090074463 }, { "type": "O", "frame": 19, "at": 1796.6417090074463 }, { "type": "O", "frame": 18, "at": 1796.6417090074463 }, { "type": "C", "frame": 18, "at": 1803.305334240326 }, { "type": "C", "frame": 19, "at": 1803.305334240326 }, { "type": "C", "frame": 16, "at": 1803.305335281372 }, { "type": "C", "frame": 15, "at": 1803.305335281372 }, { "type": "C", "frame": 14, "at": 1803.305335281372 }, { "type": "C", "frame": 13, "at": 1803.305335281372 }, { "type": "C", "frame": 12, "at": 1803.305335281372 }, { "type": "C", "frame": 11, "at": 1803.305335281372 }, { "type": "C", "frame": 10, "at": 1803.305335281372 }, { "type": "C", "frame": 9, "at": 1803.305335281372 }, { "type": "C", "frame": 8, "at": 1803.305335281372 }, { "type": "C", "frame": 7, "at": 1803.305335281372 }, { "type": "C", "frame": 6, "at": 1803.305335281372 }, { "type": "O", "frame": 20, "at": 1803.305335281372 }, { "type": "O", "frame": 8, "at": 1803.305335281372 }, { "type": "O", "frame": 9, "at": 1803.305335281372 }, { "type": "O", "frame": 10, "at": 1803.305335281372 }, { "type": "O", "frame": 11, "at": 1803.305335281372 }, { "type": "O", "frame": 12, "at": 1803.305335281372 }, { "type": "O", "frame": 13, "at": 1803.305335281372 }, { "type": "O", "frame": 14, "at": 1803.305335281372 }, { "type": "O", "frame": 15, "at": 1803.305335281372 }, { "type": "O", "frame": 16, "at": 1803.305335281372 }, { "type": "O", "frame": 21, "at": 1803.305335281372 }, { "type": "O", "frame": 22, "at": 1803.305335281372 }, { "type": "O", "frame": 23, "at": 1803.305335281372 }, { "type": "O", "frame": 24, "at": 1803.305335281372 }, { "type": "O", "frame": 18, "at": 1803.305335281372 }, { "type": "C", "frame": 18, "at": 1810.014083771118 }, { "type": "C", "frame": 24, "at": 1810.014083771118 }, { "type": "O", "frame": 38, "at": 1810.014084 }, { "type": "O", "frame": 18, "at": 1810.014084 }, { "type": "C", "frame": 18, "at": 1812.7145000881042 }, { "type": "C", "frame": 38, "at": 1812.7145000881042 }, { "type": "C", "frame": 23, "at": 1812.7145000881042 }, { "type": "C", "frame": 22, "at": 1812.7145000881042 }, { "type": "C", "frame": 21, "at": 1812.7145000881042 }, { "type": "O", "frame": 17, "at": 1812.7145000881042 }, { "type": "O", "frame": 18, "at": 1812.7145000881042 }, { "type": "C", "frame": 18, "at": 1816.9272919197083 }, { "type": "C", "frame": 17, "at": 1816.9272919197083 }, { "type": "O", "frame": 19, "at": 1816.927292 }, { "type": "O", "frame": 18, "at": 1816.927292 }, { "type": "C", "frame": 18, "at": 1824.9285842286988 }, { "type": "C", "frame": 19, "at": 1824.9285842286988 }, { "type": "C", "frame": 16, "at": 1824.9285842286988 }, { "type": "C", "frame": 15, "at": 1824.9285842286988 }, { "type": "C", "frame": 14, "at": 1824.9285842286988 }, { "type": "C", "frame": 13, "at": 1824.9285842286988 }, { "type": "C", "frame": 12, "at": 1824.9285842286988 }, { "type": "C", "frame": 11, "at": 1824.9285842286988 }, { "type": "C", "frame": 10, "at": 1824.9285842286988 }, { "type": "C", "frame": 9, "at": 1824.9285842286988 }, { "type": "C", "frame": 8, "at": 1824.9285842286988 }, { "type": "C", "frame": 20, "at": 1824.9285842286988 }, { "type": "O", "frame": 6, "at": 1824.9285842286988 }, { "type": "O", "frame": 7, "at": 1824.9285842286988 }, { "type": "O", "frame": 8, "at": 1824.9285842286988 }, { "type": "O", "frame": 9, "at": 1824.9285842286988 }, { "type": "O", "frame": 10, "at": 1824.9285842286988 }, { "type": "O", "frame": 11, "at": 1824.9285842286988 }, { "type": "O", "frame": 12, "at": 1824.9285842286988 }, { "type": "O", "frame": 13, "at": 1824.9285842286988 }, { "type": "O", "frame": 14, "at": 1824.9285842286988 }, { "type": "O", "frame": 15, "at": 1824.9285842286988 }, { "type": "O", "frame": 16, "at": 1824.9285842286988 }, { "type": "O", "frame": 21, "at": 1824.9285842286988 }, { "type": "O", "frame": 22, "at": 1824.9285842286988 }, { "type": "O", "frame": 23, "at": 1824.9285842286988 }, { "type": "O", "frame": 24, "at": 1824.9285842286988 }, { "type": "O", "frame": 18, "at": 1824.9285842286988 }, { "type": "C", "frame": 18, "at": 1833.013334175476 }, { "type": "C", "frame": 24, "at": 1833.013334175476 }, { "type": "C", "frame": 23, "at": 1833.013334175476 }, { "type": "C", "frame": 22, "at": 1833.013334175476 }, { "type": "C", "frame": 21, "at": 1833.013334175476 }, { "type": "O", "frame": 17, "at": 1833.013334175476 }, { "type": "O", "frame": 18, "at": 1833.013334175476 }, { "type": "C", "frame": 18, "at": 1838.552333557495 }, { "type": "C", "frame": 17, "at": 1838.552333557495 }, { "type": "O", "frame": 19, "at": 1838.552334 }, { "type": "O", "frame": 18, "at": 1838.552334 }, { "type": "C", "frame": 18, "at": 1839.883874942192 }, { "type": "C", "frame": 19, "at": 1839.883874942192 }, { "type": "C", "frame": 16, "at": 1839.883874942192 }, { "type": "C", "frame": 15, "at": 1839.883874942192 }, { "type": "C", "frame": 14, "at": 1839.883874942192 }, { "type": "C", "frame": 13, "at": 1839.883874942192 }, { "type": "C", "frame": 12, "at": 1839.883874942192 }, { "type": "C", "frame": 11, "at": 1839.883874942192 }, { "type": "C", "frame": 10, "at": 1839.883874942192 }, { "type": "C", "frame": 9, "at": 1839.883874942192 }, { "type": "C", "frame": 8, "at": 1839.883874942192 }, { "type": "C", "frame": 7, "at": 1839.883874942192 }, { "type": "C", "frame": 6, "at": 1839.883874942192 }, { "type": "O", "frame": 20, "at": 1839.883875 }, { "type": "O", "frame": 8, "at": 1839.883875 }, { "type": "O", "frame": 9, "at": 1839.883875 }, { "type": "O", "frame": 10, "at": 1839.883875 }, { "type": "O", "frame": 11, "at": 1839.883875 }, { "type": "O", "frame": 12, "at": 1839.883875 }, { "type": "O", "frame": 13, "at": 1839.883875 }, { "type": "O", "frame": 14, "at": 1839.883875 }, { "type": "O", "frame": 15, "at": 1839.883875 }, { "type": "O", "frame": 16, "at": 1839.883875 }, { "type": "O", "frame": 21, "at": 1839.883875 }, { "type": "O", "frame": 22, "at": 1839.883875 }, { "type": "O", "frame": 23, "at": 1839.883875 }, { "type": "O", "frame": 24, "at": 1839.883875 }, { "type": "O", "frame": 18, "at": 1839.883875 }, { "type": "C", "frame": 18, "at": 1847.961249458313 }, { "type": "C", "frame": 24, "at": 1847.961249458313 }, { "type": "C", "frame": 23, "at": 1847.961249458313 }, { "type": "C", "frame": 22, "at": 1847.961249458313 }, { "type": "C", "frame": 21, "at": 1847.961249458313 }, { "type": "O", "frame": 17, "at": 1847.96125 }, { "type": "O", "frame": 18, "at": 1847.96125 }, { "type": "C", "frame": 18, "at": 1853.568542175293 }, { "type": "C", "frame": 17, "at": 1853.568542175293 }, { "type": "O", "frame": 19, "at": 1853.568542175293 }, { "type": "O", "frame": 18, "at": 1853.568542175293 }, { "type": "C", "frame": 18, "at": 1860.2235846483154 }, { "type": "C", "frame": 19, "at": 1860.2235846483154 }, { "type": "C", "frame": 16, "at": 1860.2235852355957 }, { "type": "C", "frame": 15, "at": 1860.2235852355957 }, { "type": "C", "frame": 14, "at": 1860.2235852355957 }, { "type": "C", "frame": 13, "at": 1860.2235852355957 }, { "type": "C", "frame": 12, "at": 1860.2235852355957 }, { "type": "C", "frame": 11, "at": 1860.2235852355957 }, { "type": "C", "frame": 10, "at": 1860.2235852355957 }, { "type": "C", "frame": 9, "at": 1860.2235852355957 }, { "type": "C", "frame": 8, "at": 1860.2235852355957 }, { "type": "C", "frame": 20, "at": 1860.2235852355957 }, { "type": "O", "frame": 6, "at": 1860.2235852355957 }, { "type": "O", "frame": 7, "at": 1860.2235852355957 }, { "type": "O", "frame": 8, "at": 1860.2235852355957 }, { "type": "O", "frame": 9, "at": 1860.2235852355957 }, { "type": "O", "frame": 10, "at": 1860.2235852355957 }, { "type": "O", "frame": 11, "at": 1860.2235852355957 }, { "type": "O", "frame": 12, "at": 1860.2235852355957 }, { "type": "O", "frame": 13, "at": 1860.2235852355957 }, { "type": "O", "frame": 14, "at": 1860.2235852355957 }, { "type": "O", "frame": 15, "at": 1860.2235852355957 }, { "type": "O", "frame": 16, "at": 1860.2235852355957 }, { "type": "O", "frame": 21, "at": 1860.2235852355957 }, { "type": "O", "frame": 22, "at": 1860.2235852355957 }, { "type": "O", "frame": 23, "at": 1860.2235852355957 }, { "type": "O", "frame": 24, "at": 1860.2235852355957 }, { "type": "O", "frame": 18, "at": 1860.2235852355957 }, { "type": "C", "frame": 18, "at": 1869.6677501834718 }, { "type": "C", "frame": 24, "at": 1869.6677501834718 }, { "type": "C", "frame": 23, "at": 1869.6677501834718 }, { "type": "C", "frame": 22, "at": 1869.6677501834718 }, { "type": "C", "frame": 21, "at": 1869.6677501834718 }, { "type": "O", "frame": 17, "at": 1869.6677501834718 }, { "type": "O", "frame": 18, "at": 1869.6677501834718 }, { "type": "C", "frame": 18, "at": 1873.767708896637 }, { "type": "C", "frame": 17, "at": 1873.767708896637 }, { "type": "O", "frame": 19, "at": 1873.767709 }, { "type": "O", "frame": 18, "at": 1873.767709 }, { "type": "C", "frame": 18, "at": 1875.133542044052 }, { "type": "C", "frame": 19, "at": 1875.133542044052 }, { "type": "C", "frame": 16, "at": 1875.1335428394166 }, { "type": "C", "frame": 15, "at": 1875.1335428394166 }, { "type": "C", "frame": 14, "at": 1875.1335428394166 }, { "type": "C", "frame": 13, "at": 1875.1335428394166 }, { "type": "C", "frame": 12, "at": 1875.1335428394166 }, { "type": "C", "frame": 11, "at": 1875.1335428394166 }, { "type": "C", "frame": 10, "at": 1875.1335428394166 }, { "type": "C", "frame": 9, "at": 1875.1335428394166 }, { "type": "C", "frame": 8, "at": 1875.1335428394166 }, { "type": "C", "frame": 7, "at": 1875.1335428394166 }, { "type": "C", "frame": 6, "at": 1875.1335428394166 }, { "type": "O", "frame": 20, "at": 1875.1335428394166 }, { "type": "O", "frame": 18, "at": 1875.1335428394166 }, { "type": "C", "frame": 18, "at": 1876.481499968712 }, { "type": "O", "frame": 8, "at": 1876.4815 }, { "type": "O", "frame": 9, "at": 1876.4815 }, { "type": "O", "frame": 10, "at": 1876.4815 }, { "type": "O", "frame": 11, "at": 1876.4815 }, { "type": "O", "frame": 12, "at": 1876.4815 }, { "type": "O", "frame": 13, "at": 1876.4815 }, { "type": "O", "frame": 14, "at": 1876.4815 }, { "type": "O", "frame": 15, "at": 1876.4815 }, { "type": "O", "frame": 16, "at": 1876.4815 }, { "type": "O", "frame": 21, "at": 1876.4815 }, { "type": "O", "frame": 22, "at": 1876.4815 }, { "type": "O", "frame": 23, "at": 1876.4815 }, { "type": "O", "frame": 24, "at": 1876.4815 }, { "type": "O", "frame": 18, "at": 1876.4815 }, { "type": "C", "frame": 18, "at": 1884.5509999694825 }, { "type": "C", "frame": 24, "at": 1884.5509999694825 }, { "type": "C", "frame": 23, "at": 1884.5509999694825 }, { "type": "C", "frame": 22, "at": 1884.5509999694825 }, { "type": "C", "frame": 21, "at": 1884.5509999694825 }, { "type": "O", "frame": 17, "at": 1884.551 }, { "type": "O", "frame": 18, "at": 1884.551 }, { "type": "C", "frame": 18, "at": 1888.6713746795654 }, { "type": "C", "frame": 17, "at": 1888.6713746795654 }, { "type": "O", "frame": 19, "at": 1888.671375 }, { "type": "O", "frame": 18, "at": 1888.671375 }, { "type": "C", "frame": 18, "at": 1896.6655423278808 }, { "type": "C", "frame": 19, "at": 1896.6655423278808 }, { "type": "C", "frame": 16, "at": 1896.6655423278808 }, { "type": "C", "frame": 15, "at": 1896.6655423278808 }, { "type": "C", "frame": 14, "at": 1896.6655423278808 }, { "type": "C", "frame": 13, "at": 1896.6655423278808 }, { "type": "C", "frame": 12, "at": 1896.6655423278808 }, { "type": "C", "frame": 11, "at": 1896.6655423278808 }, { "type": "C", "frame": 10, "at": 1896.6655423278808 }, { "type": "C", "frame": 9, "at": 1896.6655423278808 }, { "type": "C", "frame": 8, "at": 1896.6655423278808 }, { "type": "C", "frame": 20, "at": 1896.6655423278808 }, { "type": "O", "frame": 6, "at": 1896.6655423278808 }, { "type": "O", "frame": 7, "at": 1896.6655423278808 }, { "type": "O", "frame": 8, "at": 1896.6655423278808 }, { "type": "O", "frame": 9, "at": 1896.6655423278808 }, { "type": "O", "frame": 10, "at": 1896.6655423278808 }, { "type": "O", "frame": 11, "at": 1896.6655423278808 }, { "type": "O", "frame": 12, "at": 1896.6655423278808 }, { "type": "O", "frame": 13, "at": 1896.6655423278808 }, { "type": "O", "frame": 14, "at": 1896.6655423278808 }, { "type": "O", "frame": 15, "at": 1896.6655423278808 }, { "type": "O", "frame": 16, "at": 1896.6655423278808 }, { "type": "O", "frame": 21, "at": 1896.6655423278808 }, { "type": "O", "frame": 22, "at": 1896.6655423278808 }, { "type": "O", "frame": 23, "at": 1896.6655423278808 }, { "type": "O", "frame": 24, "at": 1896.6655423278808 }, { "type": "O", "frame": 18, "at": 1896.6655423278808 }, { "type": "C", "frame": 18, "at": 1899.357541912262 }, { "type": "C", "frame": 24, "at": 1899.357541912262 }, { "type": "O", "frame": 31, "at": 1899.357542 }, { "type": "O", "frame": 18, "at": 1899.357542 }, { "type": "C", "frame": 18, "at": 1900.7027090408249 }, { "type": "C", "frame": 31, "at": 1900.7027090408249 }, { "type": "O", "frame": 24, "at": 1900.7027090408249 }, { "type": "O", "frame": 18, "at": 1900.7027090408249 }, { "type": "C", "frame": 18, "at": 1906.0865838931884 }, { "type": "C", "frame": 24, "at": 1906.0865838931884 }, { "type": "C", "frame": 23, "at": 1906.0865844423217 }, { "type": "C", "frame": 22, "at": 1906.0865844423217 }, { "type": "C", "frame": 21, "at": 1906.0865844423217 }, { "type": "O", "frame": 17, "at": 1906.0865844423217 }, { "type": "O", "frame": 18, "at": 1906.0865844423217 }, { "type": "C", "frame": 18, "at": 1910.2831248325194 }, { "type": "C", "frame": 17, "at": 1910.2831248325194 }, { "type": "O", "frame": 19, "at": 1910.283125 }, { "type": "O", "frame": 18, "at": 1910.283125 }, { "type": "C", "frame": 18, "at": 1911.615500049591 }, { "type": "C", "frame": 19, "at": 1911.615500049591 }, { "type": "C", "frame": 16, "at": 1911.6155008012695 }, { "type": "C", "frame": 15, "at": 1911.6155008012695 }, { "type": "C", "frame": 14, "at": 1911.6155008012695 }, { "type": "C", "frame": 13, "at": 1911.6155008012695 }, { "type": "C", "frame": 12, "at": 1911.6155008012695 }, { "type": "C", "frame": 11, "at": 1911.6155008012695 }, { "type": "C", "frame": 10, "at": 1911.6155008012695 }, { "type": "C", "frame": 9, "at": 1911.6155008012695 }, { "type": "C", "frame": 8, "at": 1911.6155008012695 }, { "type": "C", "frame": 7, "at": 1911.6155008012695 }, { "type": "C", "frame": 6, "at": 1911.6155008012695 }, { "type": "O", "frame": 20, "at": 1911.6155008012695 }, { "type": "O", "frame": 8, "at": 1911.6155008012695 }, { "type": "O", "frame": 9, "at": 1911.6155008012695 }, { "type": "O", "frame": 10, "at": 1911.6155008012695 }, { "type": "O", "frame": 11, "at": 1911.6155008012695 }, { "type": "O", "frame": 12, "at": 1911.6155008012695 }, { "type": "O", "frame": 13, "at": 1911.6155008012695 }, { "type": "O", "frame": 14, "at": 1911.6155008012695 }, { "type": "O", "frame": 15, "at": 1911.6155008012695 }, { "type": "O", "frame": 16, "at": 1911.6155008012695 }, { "type": "O", "frame": 21, "at": 1911.6155008012695 }, { "type": "O", "frame": 22, "at": 1911.6155008012695 }, { "type": "O", "frame": 23, "at": 1911.6155008012695 }, { "type": "O", "frame": 24, "at": 1911.6155008012695 }, { "type": "O", "frame": 18, "at": 1911.6155008012695 }, { "type": "C", "frame": 18, "at": 1921.0505833892823 }, { "type": "C", "frame": 24, "at": 1921.0505833892823 }, { "type": "C", "frame": 23, "at": 1921.0505833892823 }, { "type": "C", "frame": 22, "at": 1921.0505833892823 }, { "type": "C", "frame": 21, "at": 1921.0505833892823 }, { "type": "O", "frame": 17, "at": 1921.050584 }, { "type": "O", "frame": 18, "at": 1921.050584 }, { "type": "C", "frame": 18, "at": 1925.277625244507 }, { "type": "C", "frame": 17, "at": 1925.277625244507 }, { "type": "O", "frame": 19, "at": 1925.277625244507 }, { "type": "O", "frame": 18, "at": 1925.277625244507 }, { "type": "C", "frame": 18, "at": 1933.2902497406005 }, { "type": "C", "frame": 19, "at": 1933.2902497406005 }, { "type": "C", "frame": 16, "at": 1933.2902497406005 }, { "type": "C", "frame": 15, "at": 1933.2902497406005 }, { "type": "C", "frame": 14, "at": 1933.2902497406005 }, { "type": "C", "frame": 13, "at": 1933.2902497406005 }, { "type": "C", "frame": 12, "at": 1933.2902497406005 }, { "type": "C", "frame": 11, "at": 1933.2902497406005 }, { "type": "C", "frame": 10, "at": 1933.2902497406005 }, { "type": "C", "frame": 9, "at": 1933.2902497406005 }, { "type": "C", "frame": 8, "at": 1933.2902497406005 }, { "type": "C", "frame": 20, "at": 1933.2902497406005 }, { "type": "O", "frame": 6, "at": 1933.29025 }, { "type": "O", "frame": 7, "at": 1933.29025 }, { "type": "O", "frame": 8, "at": 1933.29025 }, { "type": "O", "frame": 9, "at": 1933.29025 }, { "type": "O", "frame": 10, "at": 1933.29025 }, { "type": "O", "frame": 11, "at": 1933.29025 }, { "type": "O", "frame": 12, "at": 1933.29025 }, { "type": "O", "frame": 13, "at": 1933.29025 }, { "type": "O", "frame": 14, "at": 1933.29025 }, { "type": "O", "frame": 15, "at": 1933.29025 }, { "type": "O", "frame": 16, "at": 1933.29025 }, { "type": "O", "frame": 21, "at": 1933.29025 }, { "type": "O", "frame": 22, "at": 1933.29025 }, { "type": "O", "frame": 23, "at": 1933.29025 }, { "type": "O", "frame": 24, "at": 1933.29025 }, { "type": "O", "frame": 18, "at": 1933.29025 }, { "type": "C", "frame": 18, "at": 1941.3287088241577 }, { "type": "C", "frame": 24, "at": 1941.3287088241577 }, { "type": "C", "frame": 23, "at": 1941.3287088241577 }, { "type": "C", "frame": 22, "at": 1941.3287088241577 }, { "type": "C", "frame": 21, "at": 1941.3287088241577 }, { "type": "O", "frame": 17, "at": 1941.328709 }, { "type": "O", "frame": 18, "at": 1941.328709 }, { "type": "C", "frame": 18, "at": 1947.0933750804747 }, { "type": "C", "frame": 17, "at": 1947.0933750804747 }, { "type": "O", "frame": 19, "at": 1947.0933750804747 }, { "type": "O", "frame": 18, "at": 1947.0933750804747 }, { "type": "C", "frame": 18, "at": 1953.811166557312 }, { "type": "C", "frame": 19, "at": 1953.811166557312 }, { "type": "C", "frame": 16, "at": 1953.811167892456 }, { "type": "C", "frame": 15, "at": 1953.811167892456 }, { "type": "C", "frame": 14, "at": 1953.811167892456 }, { "type": "C", "frame": 13, "at": 1953.811167892456 }, { "type": "C", "frame": 12, "at": 1953.811167892456 }, { "type": "C", "frame": 11, "at": 1953.811167892456 }, { "type": "C", "frame": 10, "at": 1953.811167892456 }, { "type": "C", "frame": 9, "at": 1953.811167892456 }, { "type": "C", "frame": 8, "at": 1953.811167892456 }, { "type": "C", "frame": 7, "at": 1953.811167892456 }, { "type": "C", "frame": 6, "at": 1953.811167892456 }, { "type": "O", "frame": 20, "at": 1953.811167892456 }, { "type": "O", "frame": 8, "at": 1953.811167892456 }, { "type": "O", "frame": 32, "at": 1953.811167892456 }, { "type": "O", "frame": 33, "at": 1953.811167892456 }, { "type": "O", "frame": 34, "at": 1953.811167892456 }, { "type": "O", "frame": 35, "at": 1953.811167892456 }, { "type": "O", "frame": 18, "at": 1953.811167892456 }, { "type": "C", "frame": 18, "at": 1955.1512919647141 }, { "type": "C", "frame": 35, "at": 1955.1512919647141 }, { "type": "C", "frame": 34, "at": 1955.1512919647141 }, { "type": "C", "frame": 33, "at": 1955.1512919647141 }, { "type": "C", "frame": 32, "at": 1955.1512919647141 }, { "type": "O", "frame": 9, "at": 1955.151292 }, { "type": "O", "frame": 10, "at": 1955.151292 }, { "type": "O", "frame": 11, "at": 1955.151292 }, { "type": "O", "frame": 12, "at": 1955.151292 }, { "type": "O", "frame": 13, "at": 1955.151292 }, { "type": "O", "frame": 14, "at": 1955.151292 }, { "type": "O", "frame": 15, "at": 1955.151292 }, { "type": "O", "frame": 16, "at": 1955.151292 }, { "type": "O", "frame": 21, "at": 1955.151292 }, { "type": "O", "frame": 22, "at": 1955.151292 }, { "type": "O", "frame": 23, "at": 1955.151292 }, { "type": "O", "frame": 24, "at": 1955.151292 }, { "type": "O", "frame": 18, "at": 1955.151292 }, { "type": "C", "frame": 18, "at": 1963.1996671296997 }, { "type": "C", "frame": 24, "at": 1963.1996671296997 }, { "type": "C", "frame": 23, "at": 1963.1996671296997 }, { "type": "C", "frame": 22, "at": 1963.1996671296997 }, { "type": "C", "frame": 21, "at": 1963.1996671296997 }, { "type": "O", "frame": 17, "at": 1963.1996671296997 }, { "type": "O", "frame": 18, "at": 1963.1996671296997 }, { "type": "C", "frame": 18, "at": 1968.5047922365113 }, { "type": "C", "frame": 17, "at": 1968.5047922365113 }, { "type": "O", "frame": 30, "at": 1968.5047922365113 }, { "type": "O", "frame": 18, "at": 1968.5047922365113 }, { "type": "C", "frame": 18, "at": 1969.8479169856948 }, { "type": "C", "frame": 30, "at": 1969.8479169856948 }, { "type": "O", "frame": 19, "at": 1969.847917 }, { "type": "O", "frame": 18, "at": 1969.847917 }, { "type": "C", "frame": 18, "at": 1971.1966250335618 }, { "type": "C", "frame": 19, "at": 1971.1966250335618 }, { "type": "C", "frame": 16, "at": 1971.1966258623047 }, { "type": "C", "frame": 15, "at": 1971.1966258623047 }, { "type": "C", "frame": 14, "at": 1971.1966258623047 }, { "type": "C", "frame": 13, "at": 1971.1966258623047 }, { "type": "C", "frame": 12, "at": 1971.1966258623047 }, { "type": "C", "frame": 11, "at": 1971.1966258623047 }, { "type": "C", "frame": 10, "at": 1971.1966258623047 }, { "type": "C", "frame": 9, "at": 1971.1966258623047 }, { "type": "C", "frame": 8, "at": 1971.1966258623047 }, { "type": "C", "frame": 20, "at": 1971.1966258623047 }, { "type": "O", "frame": 6, "at": 1971.1966258623047 }, { "type": "O", "frame": 7, "at": 1971.1966258623047 }, { "type": "O", "frame": 8, "at": 1971.1966258623047 }, { "type": "O", "frame": 9, "at": 1971.1966258623047 }, { "type": "O", "frame": 10, "at": 1971.1966258623047 }, { "type": "O", "frame": 11, "at": 1971.1966258623047 }, { "type": "O", "frame": 12, "at": 1971.1966258623047 }, { "type": "O", "frame": 13, "at": 1971.1966258623047 }, { "type": "O", "frame": 14, "at": 1971.1966258623047 }, { "type": "O", "frame": 15, "at": 1971.1966258623047 }, { "type": "O", "frame": 16, "at": 1971.1966258623047 }, { "type": "O", "frame": 21, "at": 1971.1966258623047 }, { "type": "O", "frame": 22, "at": 1971.1966258623047 }, { "type": "O", "frame": 23, "at": 1971.1966258623047 }, { "type": "O", "frame": 24, "at": 1971.1966258623047 }, { "type": "O", "frame": 18, "at": 1971.1966258623047 }, { "type": "C", "frame": 18, "at": 1979.270916229248 }, { "type": "C", "frame": 24, "at": 1979.270916229248 }, { "type": "C", "frame": 23, "at": 1979.270916229248 }, { "type": "C", "frame": 22, "at": 1979.270916229248 }, { "type": "C", "frame": 21, "at": 1979.270916229248 }, { "type": "O", "frame": 17, "at": 1979.270917 }, { "type": "O", "frame": 18, "at": 1979.270917 }, { "type": "C", "frame": 18, "at": 1984.8098340646668 }, { "type": "C", "frame": 17, "at": 1984.8098340646668 }, { "type": "O", "frame": 19, "at": 1984.8098340646668 }, { "type": "O", "frame": 18, "at": 1984.8098340646668 }, { "type": "C", "frame": 18, "at": 1991.5258345569457 }, { "type": "C", "frame": 19, "at": 1991.5258345569457 }, { "type": "C", "frame": 16, "at": 1991.5258345569457 }, { "type": "C", "frame": 15, "at": 1991.5258345569457 }, { "type": "C", "frame": 14, "at": 1991.5258345569457 }, { "type": "C", "frame": 13, "at": 1991.5258345569457 }, { "type": "C", "frame": 12, "at": 1991.5258345569457 }, { "type": "C", "frame": 11, "at": 1991.5258345569457 }, { "type": "C", "frame": 10, "at": 1991.5258345569457 }, { "type": "C", "frame": 9, "at": 1991.5258345569457 }, { "type": "C", "frame": 8, "at": 1991.5258345569457 }, { "type": "C", "frame": 7, "at": 1991.5258345569457 }, { "type": "C", "frame": 6, "at": 1991.5258345569457 }, { "type": "O", "frame": 20, "at": 1991.5258345569457 }, { "type": "O", "frame": 8, "at": 1991.5258345569457 }, { "type": "O", "frame": 9, "at": 1991.5258345569457 }, { "type": "O", "frame": 10, "at": 1991.5258345569457 }, { "type": "O", "frame": 11, "at": 1991.5258345569457 }, { "type": "O", "frame": 12, "at": 1991.5258345569457 }, { "type": "O", "frame": 13, "at": 1991.5258345569457 }, { "type": "O", "frame": 14, "at": 1991.5258345569457 }, { "type": "O", "frame": 15, "at": 1991.5258345569457 }, { "type": "O", "frame": 16, "at": 1991.5258345569457 }, { "type": "O", "frame": 21, "at": 1991.5258345569457 }, { "type": "O", "frame": 22, "at": 1991.5258345569457 }, { "type": "O", "frame": 23, "at": 1991.5258345569457 }, { "type": "O", "frame": 24, "at": 1991.5258345569457 }, { "type": "O", "frame": 18, "at": 1991.5258345569457 }, { "type": "C", "frame": 18, "at": 1992.8686670421448 }, { "type": "C", "frame": 24, "at": 1992.8686670421448 }, { "type": "O", "frame": 29, "at": 1992.8686670421448 }, { "type": "O", "frame": 18, "at": 1992.8686670421448 }, { "type": "C", "frame": 18, "at": 1994.2086670333786 }, { "type": "C", "frame": 29, "at": 1994.2086670333786 }, { "type": "O", "frame": 24, "at": 1994.2086670333786 }, { "type": "O", "frame": 18, "at": 1994.2086670333786 }, { "type": "C", "frame": 18, "at": 2000.9441248971864 }, { "type": "C", "frame": 24, "at": 2000.9441248971864 }, { "type": "C", "frame": 23, "at": 2000.944125091919 }, { "type": "C", "frame": 22, "at": 2000.944125091919 }, { "type": "C", "frame": 21, "at": 2000.944125091919 }, { "type": "O", "frame": 17, "at": 2000.944125091919 }, { "type": "O", "frame": 18, "at": 2000.944125091919 }, { "type": "C", "frame": 18, "at": 2005.0661247406006 }, { "type": "C", "frame": 17, "at": 2005.0661247406006 }, { "type": "O", "frame": 19, "at": 2005.066125 }, { "type": "O", "frame": 18, "at": 2005.066125 }, { "type": "C", "frame": 18, "at": 2006.4058750514985 }, { "type": "C", "frame": 19, "at": 2006.4058750514985 }, { "type": "C", "frame": 16, "at": 2006.4058760761109 }, { "type": "C", "frame": 15, "at": 2006.4058760761109 }, { "type": "C", "frame": 14, "at": 2006.4058760761109 }, { "type": "C", "frame": 13, "at": 2006.4058760761109 }, { "type": "C", "frame": 12, "at": 2006.4058760761109 }, { "type": "C", "frame": 11, "at": 2006.4058760761109 }, { "type": "C", "frame": 10, "at": 2006.4058760761109 }, { "type": "C", "frame": 9, "at": 2006.4058760761109 }, { "type": "C", "frame": 8, "at": 2006.4058760761109 }, { "type": "O", "frame": 18, "at": 2006.4058760761109 }, { "type": "C", "frame": 18, "at": 2007.7560839977264 }, { "type": "C", "frame": 20, "at": 2007.756085312256 }, { "type": "O", "frame": 6, "at": 2007.756085312256 }, { "type": "O", "frame": 7, "at": 2007.756085312256 }, { "type": "O", "frame": 8, "at": 2007.756085312256 }, { "type": "O", "frame": 9, "at": 2007.756085312256 }, { "type": "O", "frame": 10, "at": 2007.756085312256 }, { "type": "O", "frame": 11, "at": 2007.756085312256 }, { "type": "O", "frame": 12, "at": 2007.756085312256 }, { "type": "O", "frame": 13, "at": 2007.756085312256 }, { "type": "O", "frame": 14, "at": 2007.756085312256 }, { "type": "O", "frame": 15, "at": 2007.756085312256 }, { "type": "O", "frame": 16, "at": 2007.756085312256 }, { "type": "O", "frame": 21, "at": 2007.756085312256 }, { "type": "O", "frame": 22, "at": 2007.756085312256 }, { "type": "O", "frame": 23, "at": 2007.756085312256 }, { "type": "O", "frame": 24, "at": 2007.756085312256 }, { "type": "O", "frame": 18, "at": 2007.756085312256 }, { "type": "C", "frame": 18, "at": 2015.813375030884 }, { "type": "C", "frame": 24, "at": 2015.813375030884 }, { "type": "C", "frame": 23, "at": 2015.813375030884 }, { "type": "C", "frame": 22, "at": 2015.813375030884 }, { "type": "C", "frame": 21, "at": 2015.813375030884 }, { "type": "O", "frame": 17, "at": 2015.813375030884 }, { "type": "O", "frame": 18, "at": 2015.813375030884 }, { "type": "C", "frame": 18, "at": 2019.9377498664855 }, { "type": "C", "frame": 17, "at": 2019.9377498664855 }, { "type": "O", "frame": 19, "at": 2019.93775 }, { "type": "O", "frame": 18, "at": 2019.93775 }, { "type": "C", "frame": 18, "at": 2027.9405003967286 }, { "type": "C", "frame": 19, "at": 2027.9405003967286 }, { "type": "C", "frame": 16, "at": 2027.9405003967286 }, { "type": "C", "frame": 15, "at": 2027.9405003967286 }, { "type": "C", "frame": 14, "at": 2027.9405003967286 }, { "type": "C", "frame": 13, "at": 2027.9405003967286 }, { "type": "C", "frame": 12, "at": 2027.9405003967286 }, { "type": "C", "frame": 11, "at": 2027.9405003967286 }, { "type": "C", "frame": 10, "at": 2027.9405003967286 }, { "type": "C", "frame": 9, "at": 2027.9405003967286 }, { "type": "C", "frame": 8, "at": 2027.9405003967286 }, { "type": "C", "frame": 7, "at": 2027.9405003967286 }, { "type": "C", "frame": 6, "at": 2027.9405003967286 }, { "type": "O", "frame": 20, "at": 2027.9405003967286 }, { "type": "O", "frame": 8, "at": 2027.9405003967286 }, { "type": "O", "frame": 9, "at": 2027.9405003967286 }, { "type": "O", "frame": 10, "at": 2027.9405003967286 }, { "type": "O", "frame": 11, "at": 2027.9405003967286 }, { "type": "O", "frame": 12, "at": 2027.9405003967286 }, { "type": "O", "frame": 13, "at": 2027.9405003967286 }, { "type": "O", "frame": 14, "at": 2027.9405003967286 }, { "type": "O", "frame": 15, "at": 2027.9405003967286 }, { "type": "O", "frame": 16, "at": 2027.9405003967286 }, { "type": "O", "frame": 21, "at": 2027.9405003967286 }, { "type": "O", "frame": 22, "at": 2027.9405003967286 }, { "type": "O", "frame": 23, "at": 2027.9405003967286 }, { "type": "O", "frame": 24, "at": 2027.9405003967286 }, { "type": "O", "frame": 18, "at": 2027.9405003967286 }, { "type": "C", "frame": 18, "at": 2035.9934584884643 }, { "type": "C", "frame": 24, "at": 2035.9934584884643 }, { "type": "O", "frame": 38, "at": 2035.993459 }, { "type": "O", "frame": 18, "at": 2035.993459 }, { "type": "C", "frame": 18, "at": 2037.3452090162125 }, { "type": "C", "frame": 38, "at": 2037.3452090162125 }, { "type": "C", "frame": 23, "at": 2037.3452090162125 }, { "type": "C", "frame": 22, "at": 2037.3452090162125 }, { "type": "C", "frame": 21, "at": 2037.3452090162125 }, { "type": "O", "frame": 17, "at": 2037.3452090162125 }, { "type": "O", "frame": 18, "at": 2037.3452090162125 }, { "type": "C", "frame": 18, "at": 2041.488624927887 }, { "type": "C", "frame": 17, "at": 2041.488624927887 }, { "type": "O", "frame": 19, "at": 2041.488625 }, { "type": "O", "frame": 18, "at": 2041.488625 }, { "type": "C", "frame": 18, "at": 2044.1821670036315 }, { "type": "C", "frame": 19, "at": 2044.1821670036315 }, { "type": "C", "frame": 16, "at": 2044.1821670036315 }, { "type": "C", "frame": 15, "at": 2044.1821670036315 }, { "type": "C", "frame": 14, "at": 2044.1821670036315 }, { "type": "C", "frame": 13, "at": 2044.1821670036315 }, { "type": "C", "frame": 12, "at": 2044.1821670036315 }, { "type": "C", "frame": 11, "at": 2044.1821670036315 }, { "type": "C", "frame": 10, "at": 2044.1821670036315 }, { "type": "C", "frame": 9, "at": 2044.1821670036315 }, { "type": "C", "frame": 8, "at": 2044.1821670036315 }, { "type": "C", "frame": 20, "at": 2044.1821670036315 }, { "type": "O", "frame": 6, "at": 2044.1821670036315 }, { "type": "O", "frame": 7, "at": 2044.1821670036315 }, { "type": "O", "frame": 8, "at": 2044.1821670036315 }, { "type": "O", "frame": 9, "at": 2044.1821670036315 }, { "type": "O", "frame": 10, "at": 2044.1821670036315 }, { "type": "O", "frame": 11, "at": 2044.1821670036315 }, { "type": "O", "frame": 12, "at": 2044.1821670036315 }, { "type": "O", "frame": 13, "at": 2044.1821670036315 }, { "type": "O", "frame": 14, "at": 2044.1821670036315 }, { "type": "O", "frame": 15, "at": 2044.1821670036315 }, { "type": "O", "frame": 16, "at": 2044.1821670036315 }, { "type": "O", "frame": 21, "at": 2044.1821670036315 }, { "type": "O", "frame": 22, "at": 2044.1821670036315 }, { "type": "O", "frame": 23, "at": 2044.1821670036315 }, { "type": "O", "frame": 24, "at": 2044.1821670036315 }, { "type": "O", "frame": 18, "at": 2044.1821670036315 }, { "type": "C", "frame": 18, "at": 2052.2831248704833 }, { "type": "C", "frame": 24, "at": 2052.2831248704833 }, { "type": "C", "frame": 23, "at": 2052.2831248704833 }, { "type": "C", "frame": 22, "at": 2052.2831248704833 }, { "type": "C", "frame": 21, "at": 2052.2831248704833 }, { "type": "O", "frame": 17, "at": 2052.283125 }, { "type": "O", "frame": 18, "at": 2052.283125 }, { "type": "C", "frame": 18, "at": 2056.4175420570373 }, { "type": "C", "frame": 17, "at": 2056.4175420570373 }, { "type": "O", "frame": 19, "at": 2056.4175420570373 }, { "type": "O", "frame": 18, "at": 2056.4175420570373 }, { "type": "C", "frame": 18, "at": 2064.4309592439577 }, { "type": "C", "frame": 19, "at": 2064.4309592439577 }, { "type": "C", "frame": 16, "at": 2064.4309596483154 }, { "type": "C", "frame": 15, "at": 2064.4309596483154 }, { "type": "C", "frame": 14, "at": 2064.4309596483154 }, { "type": "C", "frame": 13, "at": 2064.4309596483154 }, { "type": "C", "frame": 12, "at": 2064.4309596483154 }, { "type": "C", "frame": 11, "at": 2064.4309596483154 }, { "type": "C", "frame": 10, "at": 2064.4309596483154 }, { "type": "C", "frame": 9, "at": 2064.4309596483154 }, { "type": "C", "frame": 8, "at": 2064.4309596483154 }, { "type": "C", "frame": 7, "at": 2064.4309596483154 }, { "type": "C", "frame": 6, "at": 2064.4309596483154 }, { "type": "O", "frame": 20, "at": 2064.4309596483154 }, { "type": "O", "frame": 8, "at": 2064.4309596483154 }, { "type": "O", "frame": 9, "at": 2064.4309596483154 }, { "type": "O", "frame": 10, "at": 2064.4309596483154 }, { "type": "O", "frame": 11, "at": 2064.4309596483154 }, { "type": "O", "frame": 12, "at": 2064.4309596483154 }, { "type": "O", "frame": 13, "at": 2064.4309596483154 }, { "type": "O", "frame": 14, "at": 2064.4309596483154 }, { "type": "O", "frame": 15, "at": 2064.4309596483154 }, { "type": "O", "frame": 16, "at": 2064.4309596483154 }, { "type": "O", "frame": 21, "at": 2064.4309596483154 }, { "type": "O", "frame": 22, "at": 2064.4309596483154 }, { "type": "O", "frame": 23, "at": 2064.4309596483154 }, { "type": "O", "frame": 24, "at": 2064.4309596483154 }, { "type": "O", "frame": 18, "at": 2064.4309596483154 }, { "type": "C", "frame": 18, "at": 2067.1303751605833 }, { "type": "C", "frame": 24, "at": 2067.1303751605833 }, { "type": "O", "frame": 31, "at": 2067.1303751605833 }, { "type": "O", "frame": 18, "at": 2067.1303751605833 }, { "type": "C", "frame": 18, "at": 2068.472333999634 }, { "type": "C", "frame": 31, "at": 2068.472333999634 }, { "type": "O", "frame": 24, "at": 2068.472334 }, { "type": "O", "frame": 18, "at": 2068.472334 }, { "type": "C", "frame": 18, "at": 2069.8151249612656 }, { "type": "C", "frame": 24, "at": 2069.8151249612656 }, { "type": "O", "frame": 28, "at": 2069.815125 }, { "type": "O", "frame": 18, "at": 2069.815125 }, { "type": "C", "frame": 18, "at": 2071.153375041008 }, { "type": "C", "frame": 28, "at": 2071.153375041008 }, { "type": "O", "frame": 24, "at": 2071.153375041008 }, { "type": "O", "frame": 18, "at": 2071.153375041008 }, { "type": "C", "frame": 18, "at": 2072.5096670093535 }, { "type": "C", "frame": 24, "at": 2072.5096670093535 }, { "type": "C", "frame": 23, "at": 2072.5096676486814 }, { "type": "C", "frame": 22, "at": 2072.5096676486814 }, { "type": "C", "frame": 21, "at": 2072.5096676486814 }, { "type": "O", "frame": 17, "at": 2072.5096676486814 }, { "type": "O", "frame": 18, "at": 2072.5096676486814 }, { "type": "C", "frame": 18, "at": 2077.9448753206175 }, { "type": "C", "frame": 17, "at": 2077.9448753206175 }, { "type": "O", "frame": 19, "at": 2077.9448753206175 }, { "type": "O", "frame": 18, "at": 2077.9448753206175 }, { "type": "C", "frame": 18, "at": 2079.281499979973 }, { "type": "C", "frame": 19, "at": 2079.281499979973 }, { "type": "C", "frame": 16, "at": 2079.2815010684812 }, { "type": "C", "frame": 15, "at": 2079.2815010684812 }, { "type": "C", "frame": 14, "at": 2079.2815010684812 }, { "type": "C", "frame": 13, "at": 2079.2815010684812 }, { "type": "C", "frame": 12, "at": 2079.2815010684812 }, { "type": "C", "frame": 11, "at": 2079.2815010684812 }, { "type": "C", "frame": 10, "at": 2079.2815010684812 }, { "type": "C", "frame": 9, "at": 2079.2815010684812 }, { "type": "C", "frame": 8, "at": 2079.2815010684812 }, { "type": "C", "frame": 20, "at": 2079.2815010684812 }, { "type": "O", "frame": 6, "at": 2079.2815010684812 }, { "type": "O", "frame": 7, "at": 2079.2815010684812 }, { "type": "O", "frame": 8, "at": 2079.2815010684812 }, { "type": "O", "frame": 9, "at": 2079.2815010684812 }, { "type": "O", "frame": 10, "at": 2079.2815010684812 }, { "type": "O", "frame": 11, "at": 2079.2815010684812 }, { "type": "O", "frame": 12, "at": 2079.2815010684812 }, { "type": "O", "frame": 13, "at": 2079.2815010684812 }, { "type": "O", "frame": 14, "at": 2079.2815010684812 }, { "type": "O", "frame": 15, "at": 2079.2815010684812 }, { "type": "O", "frame": 16, "at": 2079.2815010684812 }, { "type": "O", "frame": 21, "at": 2079.2815010684812 }, { "type": "O", "frame": 22, "at": 2079.2815010684812 }, { "type": "O", "frame": 23, "at": 2079.2815010684812 }, { "type": "O", "frame": 26, "at": 2079.2815010684812 }, { "type": "O", "frame": 18, "at": 2079.2815010684812 }, { "type": "C", "frame": 18, "at": 2080.6247500362397 }, { "type": "C", "frame": 26, "at": 2080.6247500362397 }, { "type": "O", "frame": 31, "at": 2080.6247500362397 }, { "type": "O", "frame": 18, "at": 2080.6247500362397 }, { "type": "C", "frame": 18, "at": 2081.9645420131683 }, { "type": "C", "frame": 31, "at": 2081.9645420131683 }, { "type": "O", "frame": 24, "at": 2081.9645420131683 }, { "type": "O", "frame": 18, "at": 2081.9645420131683 }, { "type": "C", "frame": 18, "at": 2088.694459049408 }, { "type": "C", "frame": 24, "at": 2088.694459049408 }, { "type": "C", "frame": 23, "at": 2088.694459049408 }, { "type": "C", "frame": 22, "at": 2088.694459049408 }, { "type": "C", "frame": 21, "at": 2088.694459049408 }, { "type": "O", "frame": 17, "at": 2088.694459049408 }, { "type": "O", "frame": 18, "at": 2088.694459049408 }, { "type": "C", "frame": 18, "at": 2092.7771249202574 }, { "type": "C", "frame": 17, "at": 2092.7771249202574 }, { "type": "O", "frame": 19, "at": 2092.777125 }, { "type": "O", "frame": 18, "at": 2092.777125 }, { "type": "C", "frame": 18, "at": 2100.815916656494 }, { "type": "C", "frame": 19, "at": 2100.815916656494 }, { "type": "C", "frame": 16, "at": 2100.815918106079 }, { "type": "C", "frame": 15, "at": 2100.815918106079 }, { "type": "C", "frame": 14, "at": 2100.815918106079 }, { "type": "C", "frame": 13, "at": 2100.815918106079 }, { "type": "C", "frame": 12, "at": 2100.815918106079 }, { "type": "C", "frame": 11, "at": 2100.815918106079 }, { "type": "C", "frame": 10, "at": 2100.815918106079 }, { "type": "C", "frame": 9, "at": 2100.815918106079 }, { "type": "C", "frame": 8, "at": 2100.815918106079 }, { "type": "C", "frame": 7, "at": 2100.815918106079 }, { "type": "C", "frame": 6, "at": 2100.815918106079 }, { "type": "O", "frame": 20, "at": 2100.815918106079 }, { "type": "O", "frame": 8, "at": 2100.815918106079 }, { "type": "O", "frame": 9, "at": 2100.815918106079 }, { "type": "O", "frame": 10, "at": 2100.815918106079 }, { "type": "O", "frame": 11, "at": 2100.815918106079 }, { "type": "O", "frame": 12, "at": 2100.815918106079 }, { "type": "O", "frame": 13, "at": 2100.815918106079 }, { "type": "O", "frame": 14, "at": 2100.815918106079 }, { "type": "O", "frame": 15, "at": 2100.815918106079 }, { "type": "O", "frame": 16, "at": 2100.815918106079 }, { "type": "O", "frame": 21, "at": 2100.815918106079 }, { "type": "O", "frame": 22, "at": 2100.815918106079 }, { "type": "O", "frame": 23, "at": 2100.815918106079 }, { "type": "O", "frame": 24, "at": 2100.815918106079 }, { "type": "O", "frame": 18, "at": 2100.815918106079 }, { "type": "C", "frame": 18, "at": 2108.8582095949096 }, { "type": "C", "frame": 24, "at": 2108.8582095949096 }, { "type": "C", "frame": 23, "at": 2108.8582095949096 }, { "type": "O", "frame": 42, "at": 2108.8582095949096 }, { "type": "O", "frame": 18, "at": 2108.8582095949096 }, { "type": "C", "frame": 18, "at": 2110.229542003044 }, { "type": "C", "frame": 42, "at": 2110.229542003044 }, { "type": "C", "frame": 22, "at": 2110.229542717163 }, { "type": "C", "frame": 21, "at": 2110.229542717163 }, { "type": "O", "frame": 17, "at": 2110.229542717163 }, { "type": "O", "frame": 18, "at": 2110.229542717163 }, { "type": "C", "frame": 18, "at": 2114.338917 }, { "type": "C", "frame": 17, "at": 2114.338917 }, { "type": "O", "frame": 19, "at": 2114.338917 }, { "type": "O", "frame": 18, "at": 2114.338917 }, { "type": "C", "frame": 18, "at": 2124.3452503511353 }, { "type": "C", "frame": 19, "at": 2124.3452503511353 }, { "type": "C", "frame": 16, "at": 2124.3452520219726 }, { "type": "C", "frame": 15, "at": 2124.3452520219726 }, { "type": "C", "frame": 14, "at": 2124.3452520219726 }, { "type": "C", "frame": 13, "at": 2124.3452520219726 }, { "type": "C", "frame": 12, "at": 2124.3452520219726 }, { "type": "C", "frame": 11, "at": 2124.3452520219726 }, { "type": "C", "frame": 10, "at": 2124.3452520219726 }, { "type": "C", "frame": 9, "at": 2124.3452520219726 }, { "type": "C", "frame": 8, "at": 2124.3452520219726 }, { "type": "C", "frame": 20, "at": 2124.3452520219726 }, { "type": "O", "frame": 6, "at": 2124.3452520219726 }, { "type": "O", "frame": 7, "at": 2124.3452520219726 }, { "type": "O", "frame": 8, "at": 2124.3452520219726 }, { "type": "O", "frame": 9, "at": 2124.3452520219726 }, { "type": "O", "frame": 10, "at": 2124.3452520219726 }, { "type": "O", "frame": 11, "at": 2124.3452520219726 }, { "type": "O", "frame": 12, "at": 2124.3452520219726 }, { "type": "O", "frame": 13, "at": 2124.3452520219726 }, { "type": "O", "frame": 14, "at": 2124.3452520219726 }, { "type": "O", "frame": 15, "at": 2124.3452520219726 }, { "type": "O", "frame": 16, "at": 2124.3452520219726 }, { "type": "O", "frame": 21, "at": 2124.3452520219726 }, { "type": "O", "frame": 22, "at": 2124.3452520219726 }, { "type": "O", "frame": 23, "at": 2124.3452520219726 }, { "type": "O", "frame": 24, "at": 2124.3452520219726 }, { "type": "O", "frame": 18, "at": 2124.3452520219726 }, { "type": "C", "frame": 18, "at": 2127.106624950409 }, { "type": "C", "frame": 24, "at": 2127.106624950409 }, { "type": "C", "frame": 23, "at": 2127.106624950409 }, { "type": "C", "frame": 22, "at": 2127.106624950409 }, { "type": "C", "frame": 21, "at": 2127.106624950409 }, { "type": "O", "frame": 17, "at": 2127.106625 }, { "type": "O", "frame": 18, "at": 2127.106625 }, { "type": "C", "frame": 18, "at": 2132.6933335456847 }, { "type": "C", "frame": 17, "at": 2132.6933335456847 }, { "type": "O", "frame": 19, "at": 2132.693334 }, { "type": "O", "frame": 18, "at": 2132.693334 }, { "type": "C", "frame": 18, "at": 2139.400416748413 }, { "type": "C", "frame": 19, "at": 2139.400416748413 }, { "type": "C", "frame": 16, "at": 2139.400417198181 }, { "type": "C", "frame": 15, "at": 2139.400417198181 }, { "type": "C", "frame": 14, "at": 2139.400417198181 }, { "type": "C", "frame": 13, "at": 2139.400417198181 }, { "type": "C", "frame": 12, "at": 2139.400417198181 }, { "type": "C", "frame": 11, "at": 2139.400417198181 }, { "type": "C", "frame": 10, "at": 2139.400417198181 }, { "type": "C", "frame": 9, "at": 2139.400417198181 }, { "type": "C", "frame": 8, "at": 2139.400417198181 }, { "type": "C", "frame": 7, "at": 2139.400417198181 }, { "type": "C", "frame": 6, "at": 2139.400417198181 }, { "type": "O", "frame": 20, "at": 2139.400417198181 }, { "type": "O", "frame": 8, "at": 2139.400417198181 }, { "type": "O", "frame": 9, "at": 2139.400417198181 }, { "type": "O", "frame": 10, "at": 2139.400417198181 }, { "type": "O", "frame": 11, "at": 2139.400417198181 }, { "type": "O", "frame": 12, "at": 2139.400417198181 }, { "type": "O", "frame": 13, "at": 2139.400417198181 }, { "type": "O", "frame": 14, "at": 2139.400417198181 }, { "type": "O", "frame": 15, "at": 2139.400417198181 }, { "type": "O", "frame": 16, "at": 2139.400417198181 }, { "type": "O", "frame": 21, "at": 2139.400417198181 }, { "type": "O", "frame": 22, "at": 2139.400417198181 }, { "type": "O", "frame": 23, "at": 2139.400417198181 }, { "type": "O", "frame": 24, "at": 2139.400417198181 }, { "type": "O", "frame": 18, "at": 2139.400417198181 }, { "type": "C", "frame": 18, "at": 2147.477333694641 }, { "type": "C", "frame": 24, "at": 2147.477333694641 }, { "type": "C", "frame": 23, "at": 2147.477333694641 }, { "type": "C", "frame": 22, "at": 2147.477333694641 }, { "type": "C", "frame": 21, "at": 2147.477333694641 }, { "type": "O", "frame": 17, "at": 2147.477334 }, { "type": "O", "frame": 18, "at": 2147.477334 }, { "type": "C", "frame": 18, "at": 2153.0279173625795 }, { "type": "C", "frame": 17, "at": 2153.0279173625795 }, { "type": "O", "frame": 19, "at": 2153.0279173625795 }, { "type": "O", "frame": 18, "at": 2153.0279173625795 }, { "type": "C", "frame": 18, "at": 2161.052042099182 }, { "type": "C", "frame": 19, "at": 2161.052042099182 }, { "type": "C", "frame": 16, "at": 2161.052042099182 }, { "type": "C", "frame": 15, "at": 2161.052042099182 }, { "type": "C", "frame": 14, "at": 2161.052042099182 }, { "type": "C", "frame": 13, "at": 2161.052042099182 }, { "type": "C", "frame": 12, "at": 2161.052042099182 }, { "type": "C", "frame": 11, "at": 2161.052042099182 }, { "type": "C", "frame": 10, "at": 2161.052042099182 }, { "type": "C", "frame": 9, "at": 2161.052042099182 }, { "type": "C", "frame": 8, "at": 2161.052042099182 }, { "type": "C", "frame": 20, "at": 2161.052042099182 }, { "type": "O", "frame": 6, "at": 2161.052042099182 }, { "type": "O", "frame": 7, "at": 2161.052042099182 }, { "type": "O", "frame": 8, "at": 2161.052042099182 }, { "type": "O", "frame": 9, "at": 2161.052042099182 }, { "type": "O", "frame": 10, "at": 2161.052042099182 }, { "type": "O", "frame": 11, "at": 2161.052042099182 }, { "type": "O", "frame": 12, "at": 2161.052042099182 }, { "type": "O", "frame": 13, "at": 2161.052042099182 }, { "type": "O", "frame": 14, "at": 2161.052042099182 }, { "type": "O", "frame": 15, "at": 2161.052042099182 }, { "type": "O", "frame": 16, "at": 2161.052042099182 }, { "type": "O", "frame": 21, "at": 2161.052042099182 }, { "type": "O", "frame": 22, "at": 2161.052042099182 }, { "type": "O", "frame": 23, "at": 2161.052042099182 }, { "type": "O", "frame": 38, "at": 2161.052042099182 }, { "type": "O", "frame": 18, "at": 2161.052042099182 }, { "type": "C", "frame": 18, "at": 2162.393416993324 }, { "type": "C", "frame": 38, "at": 2162.393416993324 }, { "type": "O", "frame": 24, "at": 2162.393417 }, { "type": "O", "frame": 18, "at": 2162.393417 }, { "type": "C", "frame": 18, "at": 2169.1227918855593 }, { "type": "C", "frame": 24, "at": 2169.1227918855593 }, { "type": "C", "frame": 23, "at": 2169.122792236511 }, { "type": "C", "frame": 22, "at": 2169.122792236511 }, { "type": "C", "frame": 21, "at": 2169.122792236511 }, { "type": "O", "frame": 17, "at": 2169.122792236511 }, { "type": "O", "frame": 18, "at": 2169.122792236511 }, { "type": "C", "frame": 18, "at": 2174.6512920801088 }, { "type": "C", "frame": 17, "at": 2174.6512920801088 }, { "type": "O", "frame": 19, "at": 2174.6512920801088 }, { "type": "O", "frame": 18, "at": 2174.6512920801088 }, { "type": "C", "frame": 18, "at": 2175.980374965851 }, { "type": "C", "frame": 19, "at": 2175.980374965851 }, { "type": "C", "frame": 16, "at": 2175.9803752824705 }, { "type": "C", "frame": 15, "at": 2175.9803752824705 }, { "type": "C", "frame": 14, "at": 2175.9803752824705 }, { "type": "C", "frame": 13, "at": 2175.9803752824705 }, { "type": "C", "frame": 12, "at": 2175.9803752824705 }, { "type": "C", "frame": 11, "at": 2175.9803752824705 }, { "type": "C", "frame": 10, "at": 2175.9803752824705 }, { "type": "C", "frame": 9, "at": 2175.9803752824705 }, { "type": "C", "frame": 8, "at": 2175.9803752824705 }, { "type": "C", "frame": 7, "at": 2175.9803752824705 }, { "type": "C", "frame": 6, "at": 2175.9803752824705 }, { "type": "O", "frame": 20, "at": 2175.9803752824705 }, { "type": "O", "frame": 8, "at": 2175.9803752824705 }, { "type": "O", "frame": 9, "at": 2175.9803752824705 }, { "type": "O", "frame": 10, "at": 2175.9803752824705 }, { "type": "O", "frame": 11, "at": 2175.9803752824705 }, { "type": "O", "frame": 12, "at": 2175.9803752824705 }, { "type": "O", "frame": 13, "at": 2175.9803752824705 }, { "type": "O", "frame": 14, "at": 2175.9803752824705 }, { "type": "O", "frame": 15, "at": 2175.9803752824705 }, { "type": "O", "frame": 16, "at": 2175.9803752824705 }, { "type": "O", "frame": 21, "at": 2175.9803752824705 }, { "type": "O", "frame": 22, "at": 2175.9803752824705 }, { "type": "O", "frame": 23, "at": 2175.9803752824705 }, { "type": "O", "frame": 24, "at": 2175.9803752824705 }, { "type": "O", "frame": 18, "at": 2175.9803752824705 }, { "type": "C", "frame": 18, "at": 2181.347209163666 }, { "type": "C", "frame": 24, "at": 2181.347209163666 }, { "type": "O", "frame": 25, "at": 2181.347209163666 }, { "type": "O", "frame": 18, "at": 2181.347209163666 }, { "type": "C", "frame": 18, "at": 2182.686666988739 }, { "type": "C", "frame": 25, "at": 2182.686666988739 }, { "type": "O", "frame": 24, "at": 2182.686667 }, { "type": "O", "frame": 18, "at": 2182.686667 }, { "type": "C", "frame": 18, "at": 2185.380291973297 }, { "type": "C", "frame": 24, "at": 2185.380291973297 }, { "type": "C", "frame": 23, "at": 2185.380292602539 }, { "type": "C", "frame": 22, "at": 2185.380292602539 }, { "type": "C", "frame": 21, "at": 2185.380292602539 }, { "type": "O", "frame": 17, "at": 2185.380292602539 }, { "type": "O", "frame": 18, "at": 2185.380292602539 }, { "type": "C", "frame": 18, "at": 2189.4948750154417 }, { "type": "C", "frame": 17, "at": 2189.4948750154417 }, { "type": "O", "frame": 19, "at": 2189.4948750154417 }, { "type": "O", "frame": 18, "at": 2189.4948750154417 }, { "type": "C", "frame": 18, "at": 2197.5017919998168 }, { "type": "C", "frame": 19, "at": 2197.5017919998168 }, { "type": "C", "frame": 16, "at": 2197.5017945251466 }, { "type": "C", "frame": 15, "at": 2197.5017945251466 }, { "type": "C", "frame": 14, "at": 2197.5017945251466 }, { "type": "C", "frame": 13, "at": 2197.5017945251466 }, { "type": "C", "frame": 12, "at": 2197.5017945251466 }, { "type": "C", "frame": 11, "at": 2197.5017945251466 }, { "type": "C", "frame": 10, "at": 2197.5017945251466 }, { "type": "C", "frame": 9, "at": 2197.5017945251466 }, { "type": "C", "frame": 8, "at": 2197.5017945251466 }, { "type": "C", "frame": 20, "at": 2197.5017945251466 }, { "type": "O", "frame": 6, "at": 2197.5017945251466 }, { "type": "O", "frame": 7, "at": 2197.5017945251466 }, { "type": "O", "frame": 8, "at": 2197.5017945251466 }, { "type": "O", "frame": 9, "at": 2197.5017945251466 }, { "type": "O", "frame": 10, "at": 2197.5017945251466 }, { "type": "O", "frame": 11, "at": 2197.5017945251466 }, { "type": "O", "frame": 12, "at": 2197.5017945251466 }, { "type": "O", "frame": 13, "at": 2197.5017945251466 }, { "type": "O", "frame": 14, "at": 2197.5017945251466 }, { "type": "O", "frame": 15, "at": 2197.5017945251466 }, { "type": "O", "frame": 16, "at": 2197.5017945251466 }, { "type": "O", "frame": 21, "at": 2197.5017945251466 }, { "type": "O", "frame": 22, "at": 2197.5017945251466 }, { "type": "O", "frame": 23, "at": 2197.5017945251466 }, { "type": "O", "frame": 24, "at": 2197.5017945251466 }, { "type": "O", "frame": 18, "at": 2197.5017945251466 }, { "type": "C", "frame": 18, "at": 2205.5871248704834 }, { "type": "C", "frame": 24, "at": 2205.5871248704834 }, { "type": "C", "frame": 23, "at": 2205.5871248704834 }, { "type": "C", "frame": 22, "at": 2205.5871248704834 }, { "type": "C", "frame": 21, "at": 2205.5871248704834 }, { "type": "O", "frame": 17, "at": 2205.587125 }, { "type": "O", "frame": 18, "at": 2205.587125 }, { "type": "C", "frame": 18, "at": 2211.1149165000916 }, { "type": "C", "frame": 17, "at": 2211.1149165000916 }, { "type": "O", "frame": 19, "at": 2211.114917 }, { "type": "O", "frame": 18, "at": 2211.114917 }, { "type": "C", "frame": 18, "at": 2212.457249959175 }, { "type": "C", "frame": 19, "at": 2212.457249959175 }, { "type": "C", "frame": 16, "at": 2212.4572506410523 }, { "type": "C", "frame": 15, "at": 2212.4572506410523 }, { "type": "C", "frame": 14, "at": 2212.4572506410523 }, { "type": "C", "frame": 13, "at": 2212.4572506410523 }, { "type": "C", "frame": 12, "at": 2212.4572506410523 }, { "type": "C", "frame": 11, "at": 2212.4572506410523 }, { "type": "C", "frame": 10, "at": 2212.4572506410523 }, { "type": "C", "frame": 9, "at": 2212.4572506410523 }, { "type": "C", "frame": 8, "at": 2212.4572506410523 }, { "type": "C", "frame": 7, "at": 2212.4572506410523 }, { "type": "C", "frame": 6, "at": 2212.4572506410523 }, { "type": "O", "frame": 20, "at": 2212.4572506410523 }, { "type": "O", "frame": 8, "at": 2212.4572506410523 }, { "type": "O", "frame": 9, "at": 2212.4572506410523 }, { "type": "O", "frame": 10, "at": 2212.4572506410523 }, { "type": "O", "frame": 11, "at": 2212.4572506410523 }, { "type": "O", "frame": 12, "at": 2212.4572506410523 }, { "type": "O", "frame": 13, "at": 2212.4572506410523 }, { "type": "O", "frame": 14, "at": 2212.4572506410523 }, { "type": "O", "frame": 15, "at": 2212.4572506410523 }, { "type": "O", "frame": 16, "at": 2212.4572506410523 }, { "type": "O", "frame": 21, "at": 2212.4572506410523 }, { "type": "O", "frame": 22, "at": 2212.4572506410523 }, { "type": "O", "frame": 23, "at": 2212.4572506410523 }, { "type": "O", "frame": 24, "at": 2212.4572506410523 }, { "type": "O", "frame": 18, "at": 2212.4572506410523 }, { "type": "C", "frame": 18, "at": 2220.5138343582153 }, { "type": "C", "frame": 24, "at": 2220.5138343582153 }, { "type": "C", "frame": 23, "at": 2220.5138343582153 }, { "type": "C", "frame": 22, "at": 2220.5138343582153 }, { "type": "C", "frame": 21, "at": 2220.5138343582153 }, { "type": "O", "frame": 17, "at": 2220.5138343582153 }, { "type": "O", "frame": 18, "at": 2220.5138343582153 }, { "type": "C", "frame": 18, "at": 2226.021791935333 }, { "type": "C", "frame": 17, "at": 2226.021791935333 }, { "type": "O", "frame": 19, "at": 2226.021792 }, { "type": "O", "frame": 18, "at": 2226.021792 }, { "type": "C", "frame": 18, "at": 2232.664833610718 }, { "type": "C", "frame": 19, "at": 2232.664833610718 }, { "type": "C", "frame": 16, "at": 2232.6648343811034 }, { "type": "C", "frame": 15, "at": 2232.6648343811034 }, { "type": "C", "frame": 14, "at": 2232.6648343811034 }, { "type": "C", "frame": 13, "at": 2232.6648343811034 }, { "type": "C", "frame": 12, "at": 2232.6648343811034 }, { "type": "C", "frame": 11, "at": 2232.6648343811034 }, { "type": "C", "frame": 10, "at": 2232.6648343811034 }, { "type": "C", "frame": 9, "at": 2232.6648343811034 }, { "type": "C", "frame": 8, "at": 2232.6648343811034 }, { "type": "C", "frame": 20, "at": 2232.6648343811034 }, { "type": "O", "frame": 6, "at": 2232.6648343811034 }, { "type": "O", "frame": 7, "at": 2232.6648343811034 }, { "type": "O", "frame": 8, "at": 2232.6648343811034 }, { "type": "O", "frame": 9, "at": 2232.6648343811034 }, { "type": "O", "frame": 10, "at": 2232.6648343811034 }, { "type": "O", "frame": 11, "at": 2232.6648343811034 }, { "type": "O", "frame": 12, "at": 2232.6648343811034 }, { "type": "O", "frame": 13, "at": 2232.6648343811034 }, { "type": "O", "frame": 14, "at": 2232.6648343811034 }, { "type": "O", "frame": 15, "at": 2232.6648343811034 }, { "type": "O", "frame": 16, "at": 2232.6648343811034 }, { "type": "O", "frame": 21, "at": 2232.6648343811034 }, { "type": "O", "frame": 22, "at": 2232.6648343811034 }, { "type": "O", "frame": 23, "at": 2232.6648343811034 }, { "type": "O", "frame": 24, "at": 2232.6648343811034 }, { "type": "O", "frame": 18, "at": 2232.6648343811034 }, { "type": "C", "frame": 18, "at": 2242.0819597019045 }, { "type": "C", "frame": 24, "at": 2242.0819597019045 }, { "type": "C", "frame": 23, "at": 2242.0819597019045 }, { "type": "C", "frame": 22, "at": 2242.0819597019045 }, { "type": "C", "frame": 21, "at": 2242.0819597019045 }, { "type": "O", "frame": 17, "at": 2242.0819597019045 }, { "type": "O", "frame": 18, "at": 2242.0819597019045 }, { "type": "C", "frame": 18, "at": 2246.192500343689 }, { "type": "C", "frame": 17, "at": 2246.192500343689 }, { "type": "O", "frame": 19, "at": 2246.192500343689 }, { "type": "O", "frame": 18, "at": 2246.192500343689 }, { "type": "C", "frame": 18, "at": 2252.92220867157 }, { "type": "C", "frame": 19, "at": 2252.92220867157 }, { "type": "C", "frame": 16, "at": 2252.9222097171632 }, { "type": "C", "frame": 15, "at": 2252.9222097171632 }, { "type": "C", "frame": 14, "at": 2252.9222097171632 }, { "type": "C", "frame": 13, "at": 2252.9222097171632 }, { "type": "C", "frame": 12, "at": 2252.9222097171632 }, { "type": "C", "frame": 11, "at": 2252.9222097171632 }, { "type": "C", "frame": 10, "at": 2252.9222097171632 }, { "type": "C", "frame": 9, "at": 2252.9222097171632 }, { "type": "C", "frame": 8, "at": 2252.9222097171632 }, { "type": "C", "frame": 7, "at": 2252.9222097171632 }, { "type": "C", "frame": 6, "at": 2252.9222097171632 }, { "type": "O", "frame": 20, "at": 2252.9222097171632 }, { "type": "O", "frame": 8, "at": 2252.9222097171632 }, { "type": "O", "frame": 9, "at": 2252.9222097171632 }, { "type": "O", "frame": 10, "at": 2252.9222097171632 }, { "type": "O", "frame": 11, "at": 2252.9222097171632 }, { "type": "O", "frame": 12, "at": 2252.9222097171632 }, { "type": "O", "frame": 13, "at": 2252.9222097171632 }, { "type": "O", "frame": 14, "at": 2252.9222097171632 }, { "type": "O", "frame": 15, "at": 2252.9222097171632 }, { "type": "O", "frame": 16, "at": 2252.9222097171632 }, { "type": "O", "frame": 21, "at": 2252.9222097171632 }, { "type": "O", "frame": 22, "at": 2252.9222097171632 }, { "type": "O", "frame": 23, "at": 2252.9222097171632 }, { "type": "O", "frame": 24, "at": 2252.9222097171632 }, { "type": "O", "frame": 18, "at": 2252.9222097171632 }, { "type": "C", "frame": 18, "at": 2254.2761250490034 }, { "type": "C", "frame": 24, "at": 2254.2761250490034 }, { "type": "O", "frame": 31, "at": 2254.2761250490034 }, { "type": "O", "frame": 18, "at": 2254.2761250490034 }, { "type": "C", "frame": 18, "at": 2255.6255840520857 }, { "type": "C", "frame": 31, "at": 2255.6255840520857 }, { "type": "O", "frame": 24, "at": 2255.6255840520857 }, { "type": "O", "frame": 18, "at": 2255.6255840520857 }, { "type": "C", "frame": 18, "at": 2258.306917065033 }, { "type": "C", "frame": 24, "at": 2258.306917065033 }, { "type": "O", "frame": 25, "at": 2258.306917065033 }, { "type": "O", "frame": 18, "at": 2258.306917065033 }, { "type": "C", "frame": 18, "at": 2259.6581249715728 }, { "type": "C", "frame": 25, "at": 2259.6581249715728 }, { "type": "O", "frame": 24, "at": 2259.658125 }, { "type": "O", "frame": 18, "at": 2259.658125 }, { "type": "C", "frame": 18, "at": 2261.022667007446 }, { "type": "C", "frame": 24, "at": 2261.022667007446 }, { "type": "C", "frame": 23, "at": 2261.0226671451414 }, { "type": "C", "frame": 22, "at": 2261.0226671451414 }, { "type": "C", "frame": 21, "at": 2261.0226671451414 }, { "type": "O", "frame": 17, "at": 2261.0226671451414 }, { "type": "O", "frame": 18, "at": 2261.0226671451414 }, { "type": "C", "frame": 18, "at": 2266.5985418054506 }, { "type": "C", "frame": 17, "at": 2266.5985418054506 }, { "type": "C", "frame": 16, "at": 2266.598542427429 }, { "type": "C", "frame": 15, "at": 2266.598542427429 }, { "type": "C", "frame": 14, "at": 2266.598542427429 }, { "type": "C", "frame": 13, "at": 2266.598542427429 }, { "type": "C", "frame": 12, "at": 2266.598542427429 }, { "type": "C", "frame": 11, "at": 2266.598542427429 }, { "type": "C", "frame": 10, "at": 2266.598542427429 }, { "type": "C", "frame": 9, "at": 2266.598542427429 }, { "type": "C", "frame": 8, "at": 2266.598542427429 }, { "type": "C", "frame": 20, "at": 2266.598542427429 }, { "type": "O", "frame": 6, "at": 2266.598542427429 }, { "type": "O", "frame": 7, "at": 2266.598542427429 }, { "type": "O", "frame": 8, "at": 2266.598542427429 }, { "type": "O", "frame": 9, "at": 2266.598542427429 }, { "type": "O", "frame": 10, "at": 2266.598542427429 }, { "type": "O", "frame": 11, "at": 2266.598542427429 }, { "type": "O", "frame": 12, "at": 2266.598542427429 }, { "type": "O", "frame": 13, "at": 2266.598542427429 }, { "type": "O", "frame": 14, "at": 2266.598542427429 }, { "type": "O", "frame": 15, "at": 2266.598542427429 }, { "type": "O", "frame": 16, "at": 2266.598542427429 }, { "type": "O", "frame": 21, "at": 2266.598542427429 }, { "type": "O", "frame": 22, "at": 2266.598542427429 }, { "type": "O", "frame": 23, "at": 2266.598542427429 }, { "type": "O", "frame": 41, "at": 2266.598542427429 }, { "type": "O", "frame": 18, "at": 2266.598542427429 }, { "type": "C", "frame": 18, "at": 2267.956041957085 }, { "type": "C", "frame": 41, "at": 2267.956041957085 }, { "type": "O", "frame": 25, "at": 2267.956042 }, { "type": "O", "frame": 18, "at": 2267.956042 }, { "type": "C", "frame": 18, "at": 2269.3054170095365 }, { "type": "C", "frame": 25, "at": 2269.3054170095365 }, { "type": "O", "frame": 24, "at": 2269.3054170095365 }, { "type": "O", "frame": 18, "at": 2269.3054170095365 }, { "type": "C", "frame": 18, "at": 2270.656292020027 }, { "type": "C", "frame": 24, "at": 2270.656292020027 }, { "type": "O", "frame": 25, "at": 2270.656292020027 }, { "type": "O", "frame": 18, "at": 2270.656292020027 }, { "type": "C", "frame": 18, "at": 2271.999416985695 }, { "type": "C", "frame": 25, "at": 2271.999416985695 }, { "type": "O", "frame": 24, "at": 2271.999417 }, { "type": "O", "frame": 18, "at": 2271.999417 }, { "type": "C", "frame": 18, "at": 2276.046792202179 }, { "type": "C", "frame": 24, "at": 2276.046792202179 }, { "type": "C", "frame": 23, "at": 2276.046792202179 }, { "type": "C", "frame": 22, "at": 2276.046792202179 }, { "type": "C", "frame": 21, "at": 2276.046792202179 }, { "type": "O", "frame": 17, "at": 2276.046792202179 }, { "type": "O", "frame": 18, "at": 2276.046792202179 }, { "type": "C", "frame": 18, "at": 2281.619000404541 }, { "type": "C", "frame": 17, "at": 2281.619000404541 }, { "type": "O", "frame": 19, "at": 2281.619000404541 }, { "type": "O", "frame": 18, "at": 2281.619000404541 }, { "type": "C", "frame": 18, "at": 2288.2949171485902 }, { "type": "C", "frame": 19, "at": 2288.2949171485902 }, { "type": "C", "frame": 16, "at": 2288.2949171485902 }, { "type": "C", "frame": 15, "at": 2288.2949171485902 }, { "type": "C", "frame": 14, "at": 2288.2949171485902 }, { "type": "C", "frame": 13, "at": 2288.2949171485902 }, { "type": "C", "frame": 12, "at": 2288.2949171485902 }, { "type": "C", "frame": 11, "at": 2288.2949171485902 }, { "type": "C", "frame": 10, "at": 2288.2949171485902 }, { "type": "C", "frame": 9, "at": 2288.2949171485902 }, { "type": "C", "frame": 8, "at": 2288.2949171485902 }, { "type": "C", "frame": 7, "at": 2288.2949171485902 }, { "type": "C", "frame": 6, "at": 2288.2949171485902 }, { "type": "O", "frame": 20, "at": 2288.2949171485902 }, { "type": "O", "frame": 8, "at": 2288.2949171485902 }, { "type": "O", "frame": 9, "at": 2288.2949171485902 }, { "type": "O", "frame": 10, "at": 2288.2949171485902 }, { "type": "O", "frame": 11, "at": 2288.2949171485902 }, { "type": "O", "frame": 12, "at": 2288.2949171485902 }, { "type": "O", "frame": 13, "at": 2288.2949171485902 }, { "type": "O", "frame": 14, "at": 2288.2949171485902 }, { "type": "O", "frame": 15, "at": 2288.2949171485902 }, { "type": "O", "frame": 16, "at": 2288.2949171485902 }, { "type": "O", "frame": 21, "at": 2288.2949171485902 }, { "type": "O", "frame": 22, "at": 2288.2949171485902 }, { "type": "O", "frame": 23, "at": 2288.2949171485902 }, { "type": "O", "frame": 24, "at": 2288.2949171485902 }, { "type": "O", "frame": 18, "at": 2288.2949171485902 }, { "type": "C", "frame": 18, "at": 2297.711874855225 }, { "type": "C", "frame": 24, "at": 2297.711874855225 }, { "type": "C", "frame": 23, "at": 2297.711874855225 }, { "type": "C", "frame": 22, "at": 2297.711874855225 }, { "type": "C", "frame": 21, "at": 2297.711874855225 }, { "type": "O", "frame": 17, "at": 2297.711875 }, { "type": "O", "frame": 18, "at": 2297.711875 }, { "type": "C", "frame": 18, "at": 2301.8554168128967 }, { "type": "C", "frame": 17, "at": 2301.8554168128967 }, { "type": "O", "frame": 19, "at": 2301.855417 }, { "type": "O", "frame": 18, "at": 2301.855417 }, { "type": "C", "frame": 18, "at": 2303.210000024979 }, { "type": "C", "frame": 19, "at": 2303.210000024979 }, { "type": "C", "frame": 16, "at": 2303.210000024979 }, { "type": "C", "frame": 15, "at": 2303.210000024979 }, { "type": "C", "frame": 14, "at": 2303.210000024979 }, { "type": "C", "frame": 13, "at": 2303.210000024979 }, { "type": "C", "frame": 12, "at": 2303.210000024979 }, { "type": "C", "frame": 11, "at": 2303.210000024979 }, { "type": "C", "frame": 10, "at": 2303.210000024979 }, { "type": "C", "frame": 9, "at": 2303.210000024979 }, { "type": "C", "frame": 8, "at": 2303.210000024979 }, { "type": "C", "frame": 20, "at": 2303.210000024979 }, { "type": "O", "frame": 6, "at": 2303.210000024979 }, { "type": "O", "frame": 7, "at": 2303.210000024979 }, { "type": "O", "frame": 8, "at": 2303.210000024979 }, { "type": "O", "frame": 9, "at": 2303.210000024979 }, { "type": "O", "frame": 10, "at": 2303.210000024979 }, { "type": "O", "frame": 11, "at": 2303.210000024979 }, { "type": "O", "frame": 12, "at": 2303.210000024979 }, { "type": "O", "frame": 13, "at": 2303.210000024979 }, { "type": "O", "frame": 14, "at": 2303.210000024979 }, { "type": "O", "frame": 15, "at": 2303.210000024979 }, { "type": "O", "frame": 16, "at": 2303.210000024979 }, { "type": "O", "frame": 21, "at": 2303.210000024979 }, { "type": "O", "frame": 22, "at": 2303.210000024979 }, { "type": "O", "frame": 23, "at": 2303.210000024979 }, { "type": "O", "frame": 41, "at": 2303.210000024979 }, { "type": "O", "frame": 18, "at": 2303.210000024979 }, { "type": "C", "frame": 18, "at": 2304.5534590101242 }, { "type": "C", "frame": 41, "at": 2304.5534590101242 }, { "type": "O", "frame": 24, "at": 2304.5534590101242 }, { "type": "O", "frame": 18, "at": 2304.5534590101242 }, { "type": "C", "frame": 18, "at": 2312.6549165958254 }, { "type": "C", "frame": 24, "at": 2312.6549165958254 }, { "type": "C", "frame": 23, "at": 2312.6549167251587 }, { "type": "C", "frame": 22, "at": 2312.6549167251587 }, { "type": "C", "frame": 21, "at": 2312.6549167251587 }, { "type": "O", "frame": 17, "at": 2312.654917 }, { "type": "O", "frame": 18, "at": 2312.654917 }, { "type": "C", "frame": 18, "at": 2318.1182920915526 }, { "type": "C", "frame": 17, "at": 2318.1182920915526 }, { "type": "O", "frame": 19, "at": 2318.1182920915526 }, { "type": "O", "frame": 18, "at": 2318.1182920915526 }, { "type": "C", "frame": 18, "at": 2324.802959110443 }, { "type": "C", "frame": 19, "at": 2324.802959110443 }, { "type": "C", "frame": 16, "at": 2324.802960357666 }, { "type": "C", "frame": 15, "at": 2324.802960357666 }, { "type": "C", "frame": 14, "at": 2324.802960357666 }, { "type": "C", "frame": 13, "at": 2324.802960357666 }, { "type": "C", "frame": 12, "at": 2324.802960357666 }, { "type": "C", "frame": 11, "at": 2324.802960357666 }, { "type": "C", "frame": 10, "at": 2324.802960357666 }, { "type": "C", "frame": 9, "at": 2324.802960357666 }, { "type": "C", "frame": 8, "at": 2324.802960357666 }, { "type": "C", "frame": 7, "at": 2324.802960357666 }, { "type": "C", "frame": 6, "at": 2324.802960357666 }, { "type": "O", "frame": 20, "at": 2324.802960357666 }, { "type": "O", "frame": 8, "at": 2324.802960357666 }, { "type": "O", "frame": 9, "at": 2324.802960357666 }, { "type": "O", "frame": 10, "at": 2324.802960357666 }, { "type": "O", "frame": 11, "at": 2324.802960357666 }, { "type": "O", "frame": 12, "at": 2324.802960357666 }, { "type": "O", "frame": 13, "at": 2324.802960357666 }, { "type": "O", "frame": 14, "at": 2324.802960357666 }, { "type": "O", "frame": 15, "at": 2324.802960357666 }, { "type": "O", "frame": 16, "at": 2324.802960357666 }, { "type": "O", "frame": 21, "at": 2324.802960357666 }, { "type": "O", "frame": 22, "at": 2324.802960357666 }, { "type": "O", "frame": 23, "at": 2324.802960357666 }, { "type": "O", "frame": 24, "at": 2324.802960357666 }, { "type": "O", "frame": 18, "at": 2324.802960357666 }, { "type": "C", "frame": 18, "at": 2334.2349171985475 }, { "type": "C", "frame": 24, "at": 2334.2349171985475 }, { "type": "C", "frame": 23, "at": 2334.2349171985475 }, { "type": "C", "frame": 22, "at": 2334.2349171985475 }, { "type": "C", "frame": 21, "at": 2334.2349171985475 }, { "type": "O", "frame": 17, "at": 2334.2349171985475 }, { "type": "O", "frame": 18, "at": 2334.2349171985475 }, { "type": "C", "frame": 18, "at": 2338.343875244324 }, { "type": "C", "frame": 17, "at": 2338.343875244324 }, { "type": "O", "frame": 19, "at": 2338.343875244324 }, { "type": "O", "frame": 18, "at": 2338.343875244324 }, { "type": "C", "frame": 18, "at": 2343.692625114441 }, { "type": "C", "frame": 19, "at": 2343.692625114441 }, { "type": "C", "frame": 16, "at": 2343.692625114441 }, { "type": "C", "frame": 15, "at": 2343.692625114441 }, { "type": "C", "frame": 14, "at": 2343.692625114441 }, { "type": "C", "frame": 13, "at": 2343.692625114441 }, { "type": "C", "frame": 12, "at": 2343.692625114441 }, { "type": "C", "frame": 11, "at": 2343.692625114441 }, { "type": "C", "frame": 10, "at": 2343.692625114441 }, { "type": "C", "frame": 9, "at": 2343.692625114441 }, { "type": "C", "frame": 8, "at": 2343.692625114441 }, { "type": "O", "frame": 18, "at": 2343.692625114441 }, { "type": "C", "frame": 18, "at": 2345.0297920246126 }, { "type": "C", "frame": 20, "at": 2345.029792343506 }, { "type": "O", "frame": 6, "at": 2345.029792343506 }, { "type": "O", "frame": 7, "at": 2345.029792343506 }, { "type": "O", "frame": 8, "at": 2345.029792343506 }, { "type": "O", "frame": 9, "at": 2345.029792343506 }, { "type": "O", "frame": 10, "at": 2345.029792343506 }, { "type": "O", "frame": 11, "at": 2345.029792343506 }, { "type": "O", "frame": 12, "at": 2345.029792343506 }, { "type": "O", "frame": 13, "at": 2345.029792343506 }, { "type": "O", "frame": 14, "at": 2345.029792343506 }, { "type": "O", "frame": 15, "at": 2345.029792343506 }, { "type": "O", "frame": 16, "at": 2345.029792343506 }, { "type": "O", "frame": 21, "at": 2345.029792343506 }, { "type": "O", "frame": 22, "at": 2345.029792343506 }, { "type": "O", "frame": 23, "at": 2345.029792343506 }, { "type": "O", "frame": 24, "at": 2345.029792343506 }, { "type": "O", "frame": 18, "at": 2345.029792343506 }, { "type": "C", "frame": 18, "at": 2353.122834373657 }, { "type": "C", "frame": 24, "at": 2353.122834373657 }, { "type": "C", "frame": 23, "at": 2353.122834373657 }, { "type": "C", "frame": 22, "at": 2353.122834373657 }, { "type": "C", "frame": 21, "at": 2353.122834373657 }, { "type": "O", "frame": 17, "at": 2353.122834373657 }, { "type": "O", "frame": 18, "at": 2353.122834373657 }, { "type": "C", "frame": 18, "at": 2358.603584083923 }, { "type": "C", "frame": 17, "at": 2358.603584083923 }, { "type": "C", "frame": 16, "at": 2358.6035844575804 }, { "type": "C", "frame": 15, "at": 2358.6035844575804 }, { "type": "C", "frame": 14, "at": 2358.6035844575804 }, { "type": "C", "frame": 13, "at": 2358.6035844575804 }, { "type": "C", "frame": 12, "at": 2358.6035844575804 }, { "type": "C", "frame": 11, "at": 2358.6035844575804 }, { "type": "C", "frame": 10, "at": 2358.6035844575804 }, { "type": "C", "frame": 9, "at": 2358.6035844575804 }, { "type": "C", "frame": 8, "at": 2358.6035844575804 }, { "type": "C", "frame": 7, "at": 2358.6035844575804 }, { "type": "C", "frame": 6, "at": 2358.6035844575804 }, { "type": "O", "frame": 20, "at": 2358.6035844575804 }, { "type": "O", "frame": 8, "at": 2358.6035844575804 }, { "type": "O", "frame": 9, "at": 2358.6035844575804 }, { "type": "O", "frame": 10, "at": 2358.6035844575804 }, { "type": "O", "frame": 11, "at": 2358.6035844575804 }, { "type": "O", "frame": 12, "at": 2358.6035844575804 }, { "type": "O", "frame": 13, "at": 2358.6035844575804 }, { "type": "O", "frame": 14, "at": 2358.6035844575804 }, { "type": "O", "frame": 15, "at": 2358.6035844575804 }, { "type": "O", "frame": 16, "at": 2358.6035844575804 }, { "type": "O", "frame": 21, "at": 2358.6035844575804 }, { "type": "O", "frame": 22, "at": 2358.6035844575804 }, { "type": "O", "frame": 23, "at": 2358.6035844575804 }, { "type": "O", "frame": 24, "at": 2358.6035844575804 }, { "type": "O", "frame": 18, "at": 2358.6035844575804 }, { "type": "C", "frame": 18, "at": 2366.7188746417846 }, { "type": "C", "frame": 24, "at": 2366.7188746417846 }, { "type": "O", "frame": 26, "at": 2366.718875 }, { "type": "O", "frame": 18, "at": 2366.718875 }, { "type": "C", "frame": 18, "at": 2368.065875002861 }, { "type": "C", "frame": 26, "at": 2368.065875002861 }, { "type": "C", "frame": 23, "at": 2368.065875002861 }, { "type": "C", "frame": 22, "at": 2368.065875002861 }, { "type": "C", "frame": 21, "at": 2368.065875002861 }, { "type": "O", "frame": 17, "at": 2368.065875002861 }, { "type": "O", "frame": 18, "at": 2368.065875002861 }, { "type": "C", "frame": 18, "at": 2372.1916250648496 }, { "type": "C", "frame": 17, "at": 2372.1916250648496 }, { "type": "O", "frame": 19, "at": 2372.1916250648496 }, { "type": "O", "frame": 18, "at": 2372.1916250648496 }, { "type": "C", "frame": 18, "at": 2380.1863340148925 }, { "type": "C", "frame": 19, "at": 2380.1863340148925 }, { "type": "C", "frame": 16, "at": 2380.186336227783 }, { "type": "C", "frame": 15, "at": 2380.186336227783 }, { "type": "C", "frame": 14, "at": 2380.186336227783 }, { "type": "C", "frame": 13, "at": 2380.186336227783 }, { "type": "C", "frame": 12, "at": 2380.186336227783 }, { "type": "C", "frame": 11, "at": 2380.186336227783 }, { "type": "C", "frame": 10, "at": 2380.186336227783 }, { "type": "C", "frame": 9, "at": 2380.186336227783 }, { "type": "C", "frame": 8, "at": 2380.186336227783 }, { "type": "C", "frame": 20, "at": 2380.186336227783 }, { "type": "O", "frame": 6, "at": 2380.186336227783 }, { "type": "O", "frame": 7, "at": 2380.186336227783 }, { "type": "O", "frame": 8, "at": 2380.186336227783 }, { "type": "O", "frame": 9, "at": 2380.186336227783 }, { "type": "O", "frame": 10, "at": 2380.186336227783 }, { "type": "O", "frame": 11, "at": 2380.186336227783 }, { "type": "O", "frame": 12, "at": 2380.186336227783 }, { "type": "O", "frame": 13, "at": 2380.186336227783 }, { "type": "O", "frame": 14, "at": 2380.186336227783 }, { "type": "O", "frame": 15, "at": 2380.186336227783 }, { "type": "O", "frame": 16, "at": 2380.186336227783 }, { "type": "O", "frame": 21, "at": 2380.186336227783 }, { "type": "O", "frame": 22, "at": 2380.186336227783 }, { "type": "O", "frame": 23, "at": 2380.186336227783 }, { "type": "O", "frame": 24, "at": 2380.186336227783 }, { "type": "O", "frame": 18, "at": 2380.186336227783 }, { "type": "C", "frame": 18, "at": 2384.2112916568603 }, { "type": "C", "frame": 24, "at": 2384.2112916568603 }, { "type": "O", "frame": 28, "at": 2384.211292 }, { "type": "O", "frame": 18, "at": 2384.211292 }, { "type": "C", "frame": 18, "at": 2385.551375003044 }, { "type": "C", "frame": 28, "at": 2385.551375003044 }, { "type": "O", "frame": 24, "at": 2385.551375003044 }, { "type": "O", "frame": 18, "at": 2385.551375003044 }, { "type": "C", "frame": 18, "at": 2386.891709057808 }, { "type": "C", "frame": 24, "at": 2386.891709057808 }, { "type": "O", "frame": 25, "at": 2386.891709057808 }, { "type": "O", "frame": 18, "at": 2386.891709057808 }, { "type": "C", "frame": 18, "at": 2388.237083941826 }, { "type": "C", "frame": 25, "at": 2388.237083941826 }, { "type": "C", "frame": 23, "at": 2388.237083941826 }, { "type": "C", "frame": 22, "at": 2388.237083941826 }, { "type": "C", "frame": 21, "at": 2388.237083941826 }, { "type": "O", "frame": 17, "at": 2388.237084 }, { "type": "O", "frame": 18, "at": 2388.237084 }, { "type": "C", "frame": 18, "at": 2393.7148748325194 }, { "type": "C", "frame": 17, "at": 2393.7148748325194 }, { "type": "O", "frame": 19, "at": 2393.714875 }, { "type": "O", "frame": 18, "at": 2393.714875 }, { "type": "C", "frame": 18, "at": 2395.052500026703 }, { "type": "C", "frame": 19, "at": 2395.052500026703 }, { "type": "C", "frame": 16, "at": 2395.052500026703 }, { "type": "C", "frame": 15, "at": 2395.052500026703 }, { "type": "C", "frame": 14, "at": 2395.052500026703 }, { "type": "C", "frame": 13, "at": 2395.052500026703 }, { "type": "C", "frame": 12, "at": 2395.052500026703 }, { "type": "C", "frame": 11, "at": 2395.052500026703 }, { "type": "C", "frame": 10, "at": 2395.052500026703 }, { "type": "C", "frame": 9, "at": 2395.052500026703 }, { "type": "C", "frame": 8, "at": 2395.052500026703 }, { "type": "C", "frame": 7, "at": 2395.052500026703 }, { "type": "C", "frame": 6, "at": 2395.052500026703 }, { "type": "O", "frame": 20, "at": 2395.052500026703 }, { "type": "O", "frame": 8, "at": 2395.052500026703 }, { "type": "O", "frame": 9, "at": 2395.052500026703 }, { "type": "O", "frame": 10, "at": 2395.052500026703 }, { "type": "O", "frame": 11, "at": 2395.052500026703 }, { "type": "O", "frame": 12, "at": 2395.052500026703 }, { "type": "O", "frame": 13, "at": 2395.052500026703 }, { "type": "O", "frame": 14, "at": 2395.052500026703 }, { "type": "O", "frame": 15, "at": 2395.052500026703 }, { "type": "O", "frame": 16, "at": 2395.052500026703 }, { "type": "O", "frame": 21, "at": 2395.052500026703 }, { "type": "O", "frame": 22, "at": 2395.052500026703 }, { "type": "O", "frame": 23, "at": 2395.052500026703 }, { "type": "O", "frame": 24, "at": 2395.052500026703 }, { "type": "O", "frame": 18, "at": 2395.052500026703 }, { "type": "C", "frame": 18, "at": 2404.444792022705 }, { "type": "C", "frame": 24, "at": 2404.444792022705 }, { "type": "C", "frame": 23, "at": 2404.444792022705 }, { "type": "C", "frame": 22, "at": 2404.444792022705 }, { "type": "C", "frame": 21, "at": 2404.444792022705 }, { "type": "O", "frame": 17, "at": 2404.444792022705 }, { "type": "O", "frame": 18, "at": 2404.444792022705 }, { "type": "C", "frame": 18, "at": 2408.5559589540403 }, { "type": "C", "frame": 17, "at": 2408.5559589540403 }, { "type": "O", "frame": 19, "at": 2408.555959 }, { "type": "O", "frame": 18, "at": 2408.555959 }, { "type": "C", "frame": 18, "at": 2416.6204588550413 }, { "type": "C", "frame": 19, "at": 2416.6204588550413 }, { "type": "C", "frame": 16, "at": 2416.6204607391355 }, { "type": "C", "frame": 15, "at": 2416.6204607391355 }, { "type": "C", "frame": 14, "at": 2416.6204607391355 }, { "type": "C", "frame": 13, "at": 2416.6204607391355 }, { "type": "C", "frame": 12, "at": 2416.6204607391355 }, { "type": "C", "frame": 11, "at": 2416.6204607391355 }, { "type": "C", "frame": 10, "at": 2416.6204607391355 }, { "type": "C", "frame": 9, "at": 2416.6204607391355 }, { "type": "C", "frame": 8, "at": 2416.6204607391355 }, { "type": "C", "frame": 20, "at": 2416.6204607391355 }, { "type": "O", "frame": 6, "at": 2416.6204607391355 }, { "type": "O", "frame": 7, "at": 2416.6204607391355 }, { "type": "O", "frame": 8, "at": 2416.6204607391355 }, { "type": "O", "frame": 9, "at": 2416.6204607391355 }, { "type": "O", "frame": 10, "at": 2416.6204607391355 }, { "type": "O", "frame": 11, "at": 2416.6204607391355 }, { "type": "O", "frame": 12, "at": 2416.6204607391355 }, { "type": "O", "frame": 13, "at": 2416.6204607391355 }, { "type": "O", "frame": 14, "at": 2416.6204607391355 }, { "type": "O", "frame": 15, "at": 2416.6204607391355 }, { "type": "O", "frame": 16, "at": 2416.6204607391355 }, { "type": "O", "frame": 21, "at": 2416.6204607391355 }, { "type": "O", "frame": 22, "at": 2416.6204607391355 }, { "type": "O", "frame": 23, "at": 2416.6204607391355 }, { "type": "O", "frame": 28, "at": 2416.6204607391355 }, { "type": "O", "frame": 18, "at": 2416.6204607391355 }, { "type": "C", "frame": 18, "at": 2417.9654169477312 }, { "type": "C", "frame": 28, "at": 2417.9654169477312 }, { "type": "O", "frame": 24, "at": 2417.965417 }, { "type": "O", "frame": 18, "at": 2417.965417 }, { "type": "C", "frame": 18, "at": 2424.7040835344237 }, { "type": "C", "frame": 24, "at": 2424.7040835344237 }, { "type": "C", "frame": 23, "at": 2424.704083839783 }, { "type": "C", "frame": 22, "at": 2424.704083839783 }, { "type": "C", "frame": 21, "at": 2424.704083839783 }, { "type": "O", "frame": 17, "at": 2424.704084 }, { "type": "O", "frame": 18, "at": 2424.704084 }, { "type": "C", "frame": 18, "at": 2430.1918340534057 }, { "type": "C", "frame": 17, "at": 2430.1918340534057 }, { "type": "O", "frame": 19, "at": 2430.1918340534057 }, { "type": "O", "frame": 18, "at": 2430.1918340534057 }, { "type": "C", "frame": 18, "at": 2431.5318750413744 }, { "type": "C", "frame": 19, "at": 2431.5318750413744 }, { "type": "C", "frame": 16, "at": 2431.531875053772 }, { "type": "C", "frame": 15, "at": 2431.531875053772 }, { "type": "C", "frame": 14, "at": 2431.531875053772 }, { "type": "C", "frame": 13, "at": 2431.531875053772 }, { "type": "C", "frame": 12, "at": 2431.531875053772 }, { "type": "C", "frame": 11, "at": 2431.531875053772 }, { "type": "C", "frame": 10, "at": 2431.531875053772 }, { "type": "C", "frame": 9, "at": 2431.531875053772 }, { "type": "C", "frame": 8, "at": 2431.531875053772 }, { "type": "C", "frame": 7, "at": 2431.531875053772 }, { "type": "C", "frame": 6, "at": 2431.531875053772 }, { "type": "O", "frame": 20, "at": 2431.531875053772 }, { "type": "O", "frame": 8, "at": 2431.531875053772 }, { "type": "O", "frame": 9, "at": 2431.531875053772 }, { "type": "O", "frame": 10, "at": 2431.531875053772 }, { "type": "O", "frame": 11, "at": 2431.531875053772 }, { "type": "O", "frame": 12, "at": 2431.531875053772 }, { "type": "O", "frame": 13, "at": 2431.531875053772 }, { "type": "O", "frame": 14, "at": 2431.531875053772 }, { "type": "O", "frame": 15, "at": 2431.531875053772 }, { "type": "O", "frame": 16, "at": 2431.531875053772 }, { "type": "O", "frame": 21, "at": 2431.531875053772 }, { "type": "O", "frame": 22, "at": 2431.531875053772 }, { "type": "O", "frame": 23, "at": 2431.531875053772 }, { "type": "O", "frame": 24, "at": 2431.531875053772 }, { "type": "O", "frame": 18, "at": 2431.531875053772 }, { "type": "C", "frame": 18, "at": 2440.9568351364137 }, { "type": "C", "frame": 24, "at": 2440.9568351364137 }, { "type": "C", "frame": 23, "at": 2440.9568351364137 }, { "type": "C", "frame": 22, "at": 2440.9568351364137 }, { "type": "C", "frame": 21, "at": 2440.9568351364137 }, { "type": "O", "frame": 17, "at": 2440.9568351364137 }, { "type": "O", "frame": 18, "at": 2440.9568351364137 }, { "type": "C", "frame": 18, "at": 2445.085583847412 }, { "type": "C", "frame": 17, "at": 2445.085583847412 }, { "type": "O", "frame": 19, "at": 2445.085584 }, { "type": "O", "frame": 18, "at": 2445.085584 }, { "type": "C", "frame": 18, "at": 2451.7700842174377 }, { "type": "C", "frame": 19, "at": 2451.7700842174377 }, { "type": "C", "frame": 16, "at": 2451.7700842174377 }, { "type": "C", "frame": 15, "at": 2451.7700842174377 }, { "type": "C", "frame": 14, "at": 2451.7700842174377 }, { "type": "C", "frame": 13, "at": 2451.7700842174377 }, { "type": "C", "frame": 12, "at": 2451.7700842174377 }, { "type": "C", "frame": 11, "at": 2451.7700842174377 }, { "type": "C", "frame": 10, "at": 2451.7700842174377 }, { "type": "C", "frame": 9, "at": 2451.7700842174377 }, { "type": "C", "frame": 8, "at": 2451.7700842174377 }, { "type": "C", "frame": 20, "at": 2451.7700842174377 }, { "type": "O", "frame": 6, "at": 2451.7700842174377 }, { "type": "O", "frame": 27, "at": 2451.7700842174377 }, { "type": "O", "frame": 18, "at": 2451.7700842174377 }, { "type": "C", "frame": 18, "at": 2453.120041942963 }, { "type": "C", "frame": 27, "at": 2453.120041942963 }, { "type": "O", "frame": 7, "at": 2453.120042 }, { "type": "O", "frame": 8, "at": 2453.120042 }, { "type": "O", "frame": 9, "at": 2453.120042 }, { "type": "O", "frame": 10, "at": 2453.120042 }, { "type": "O", "frame": 11, "at": 2453.120042 }, { "type": "O", "frame": 12, "at": 2453.120042 }, { "type": "O", "frame": 13, "at": 2453.120042 }, { "type": "O", "frame": 14, "at": 2453.120042 }, { "type": "O", "frame": 15, "at": 2453.120042 }, { "type": "O", "frame": 16, "at": 2453.120042 }, { "type": "O", "frame": 21, "at": 2453.120042 }, { "type": "O", "frame": 22, "at": 2453.120042 }, { "type": "O", "frame": 23, "at": 2453.120042 }, { "type": "O", "frame": 24, "at": 2453.120042 }, { "type": "O", "frame": 18, "at": 2453.120042 }, { "type": "C", "frame": 18, "at": 2461.201042328064 }, { "type": "C", "frame": 24, "at": 2461.201042328064 }, { "type": "C", "frame": 23, "at": 2461.201042328064 }, { "type": "C", "frame": 22, "at": 2461.201042328064 }, { "type": "C", "frame": 21, "at": 2461.201042328064 }, { "type": "O", "frame": 17, "at": 2461.201042328064 }, { "type": "O", "frame": 18, "at": 2461.201042328064 }, { "type": "C", "frame": 18, "at": 2465.33083421344 }, { "type": "C", "frame": 17, "at": 2465.33083421344 }, { "type": "O", "frame": 19, "at": 2465.33083421344 }, { "type": "O", "frame": 18, "at": 2465.33083421344 }, { "type": "C", "frame": 18, "at": 2473.3444591449584 }, { "type": "C", "frame": 19, "at": 2473.3444591449584 }, { "type": "C", "frame": 16, "at": 2473.3444591449584 }, { "type": "C", "frame": 15, "at": 2473.3444591449584 }, { "type": "C", "frame": 14, "at": 2473.3444591449584 }, { "type": "C", "frame": 13, "at": 2473.3444591449584 }, { "type": "C", "frame": 12, "at": 2473.3444591449584 }, { "type": "C", "frame": 11, "at": 2473.3444591449584 }, { "type": "C", "frame": 10, "at": 2473.3444591449584 }, { "type": "C", "frame": 9, "at": 2473.3444591449584 }, { "type": "C", "frame": 8, "at": 2473.3444591449584 }, { "type": "C", "frame": 7, "at": 2473.3444591449584 }, { "type": "C", "frame": 6, "at": 2473.344459152588 }, { "type": "O", "frame": 20, "at": 2473.344459152588 }, { "type": "O", "frame": 8, "at": 2473.344459152588 }, { "type": "O", "frame": 9, "at": 2473.344459152588 }, { "type": "O", "frame": 10, "at": 2473.344459152588 }, { "type": "O", "frame": 11, "at": 2473.344459152588 }, { "type": "O", "frame": 12, "at": 2473.344459152588 }, { "type": "O", "frame": 13, "at": 2473.344459152588 }, { "type": "O", "frame": 14, "at": 2473.344459152588 }, { "type": "O", "frame": 15, "at": 2473.344459152588 }, { "type": "O", "frame": 16, "at": 2473.344459152588 }, { "type": "O", "frame": 21, "at": 2473.344459152588 }, { "type": "O", "frame": 22, "at": 2473.344459152588 }, { "type": "O", "frame": 23, "at": 2473.344459152588 }, { "type": "O", "frame": 24, "at": 2473.344459152588 }, { "type": "O", "frame": 18, "at": 2473.344459152588 }, { "type": "C", "frame": 18, "at": 2482.750209274658 }, { "type": "C", "frame": 24, "at": 2482.750209274658 }, { "type": "C", "frame": 23, "at": 2482.750209274658 }, { "type": "C", "frame": 22, "at": 2482.750209274658 }, { "type": "C", "frame": 21, "at": 2482.750209274658 }, { "type": "O", "frame": 17, "at": 2482.750209274658 }, { "type": "O", "frame": 18, "at": 2482.750209274658 }, { "type": "C", "frame": 18, "at": 2486.875209 }, { "type": "C", "frame": 17, "at": 2486.875209 }, { "type": "O", "frame": 19, "at": 2486.875209 }, { "type": "O", "frame": 18, "at": 2486.875209 }, { "type": "C", "frame": 18, "at": 2488.216208960899 }, { "type": "C", "frame": 19, "at": 2488.216208960899 }, { "type": "C", "frame": 16, "at": 2488.216209831604 }, { "type": "C", "frame": 15, "at": 2488.216209831604 }, { "type": "C", "frame": 14, "at": 2488.216209831604 }, { "type": "C", "frame": 13, "at": 2488.216209831604 }, { "type": "C", "frame": 12, "at": 2488.216209831604 }, { "type": "C", "frame": 11, "at": 2488.216209831604 }, { "type": "C", "frame": 10, "at": 2488.216209831604 }, { "type": "C", "frame": 9, "at": 2488.216209831604 }, { "type": "C", "frame": 8, "at": 2488.216209831604 }, { "type": "C", "frame": 20, "at": 2488.216209831604 }, { "type": "O", "frame": 6, "at": 2488.216209831604 }, { "type": "O", "frame": 7, "at": 2488.216209831604 }, { "type": "O", "frame": 8, "at": 2488.216209831604 }, { "type": "O", "frame": 9, "at": 2488.216209831604 }, { "type": "O", "frame": 10, "at": 2488.216209831604 }, { "type": "O", "frame": 11, "at": 2488.216209831604 }, { "type": "O", "frame": 12, "at": 2488.216209831604 }, { "type": "O", "frame": 13, "at": 2488.216209831604 }, { "type": "O", "frame": 14, "at": 2488.216209831604 }, { "type": "O", "frame": 15, "at": 2488.216209831604 }, { "type": "O", "frame": 16, "at": 2488.216209831604 }, { "type": "O", "frame": 21, "at": 2488.216209831604 }, { "type": "O", "frame": 22, "at": 2488.216209831604 }, { "type": "O", "frame": 23, "at": 2488.216209831604 }, { "type": "O", "frame": 24, "at": 2488.216209831604 }, { "type": "O", "frame": 18, "at": 2488.216209831604 }, { "type": "C", "frame": 18, "at": 2497.6359172519533 }, { "type": "C", "frame": 24, "at": 2497.6359172519533 }, { "type": "C", "frame": 23, "at": 2497.6359172519533 }, { "type": "C", "frame": 22, "at": 2497.6359172519533 }, { "type": "C", "frame": 21, "at": 2497.6359172519533 }, { "type": "O", "frame": 17, "at": 2497.6359172519533 }, { "type": "O", "frame": 18, "at": 2497.6359172519533 }, { "type": "C", "frame": 18, "at": 2501.748459152405 }, { "type": "C", "frame": 17, "at": 2501.748459152405 }, { "type": "O", "frame": 19, "at": 2501.748459152405 }, { "type": "O", "frame": 18, "at": 2501.748459152405 }, { "type": "C", "frame": 18, "at": 2509.825124878296 }, { "type": "C", "frame": 19, "at": 2509.825124878296 }, { "type": "C", "frame": 16, "at": 2509.825124878296 }, { "type": "C", "frame": 15, "at": 2509.825124878296 }, { "type": "C", "frame": 14, "at": 2509.825124878296 }, { "type": "C", "frame": 13, "at": 2509.825124878296 }, { "type": "C", "frame": 12, "at": 2509.825124878296 }, { "type": "C", "frame": 11, "at": 2509.825124878296 }, { "type": "C", "frame": 10, "at": 2509.825124878296 }, { "type": "C", "frame": 9, "at": 2509.825124878296 }, { "type": "C", "frame": 8, "at": 2509.825124878296 }, { "type": "C", "frame": 7, "at": 2509.825124878296 }, { "type": "C", "frame": 6, "at": 2509.825124878296 }, { "type": "O", "frame": 20, "at": 2509.825125 }, { "type": "O", "frame": 8, "at": 2509.825125 }, { "type": "O", "frame": 9, "at": 2509.825125 }, { "type": "O", "frame": 10, "at": 2509.825125 }, { "type": "O", "frame": 11, "at": 2509.825125 }, { "type": "O", "frame": 12, "at": 2509.825125 }, { "type": "O", "frame": 13, "at": 2509.825125 }, { "type": "O", "frame": 14, "at": 2509.825125 }, { "type": "O", "frame": 15, "at": 2509.825125 }, { "type": "O", "frame": 16, "at": 2509.825125 }, { "type": "O", "frame": 21, "at": 2509.825125 }, { "type": "O", "frame": 22, "at": 2509.825125 }, { "type": "O", "frame": 23, "at": 2509.825125 }, { "type": "O", "frame": 24, "at": 2509.825125 }, { "type": "O", "frame": 18, "at": 2509.825125 }, { "type": "C", "frame": 18, "at": 2517.872624656677 }, { "type": "C", "frame": 24, "at": 2517.872624656677 }, { "type": "C", "frame": 23, "at": 2517.872624656677 }, { "type": "C", "frame": 22, "at": 2517.872624656677 }, { "type": "C", "frame": 21, "at": 2517.872624656677 }, { "type": "O", "frame": 17, "at": 2517.872625 }, { "type": "O", "frame": 18, "at": 2517.872625 }, { "type": "C", "frame": 18, "at": 2523.4315000839233 }, { "type": "C", "frame": 17, "at": 2523.4315000839233 }, { "type": "O", "frame": 19, "at": 2523.4315000839233 }, { "type": "O", "frame": 18, "at": 2523.4315000839233 }, { "type": "C", "frame": 18, "at": 2527.430625003815 }, { "type": "C", "frame": 19, "at": 2527.430625003815 }, { "type": "C", "frame": 16, "at": 2527.430625003815 }, { "type": "C", "frame": 15, "at": 2527.430625003815 }, { "type": "C", "frame": 14, "at": 2527.430625003815 }, { "type": "C", "frame": 13, "at": 2527.430625003815 }, { "type": "C", "frame": 12, "at": 2527.430625003815 }, { "type": "C", "frame": 11, "at": 2527.430625003815 }, { "type": "C", "frame": 10, "at": 2527.430625003815 }, { "type": "C", "frame": 9, "at": 2527.430625003815 }, { "type": "C", "frame": 8, "at": 2527.430625003815 }, { "type": "C", "frame": 20, "at": 2527.430625003815 }, { "type": "O", "frame": 6, "at": 2527.430625003815 }, { "type": "O", "frame": 7, "at": 2527.430625003815 }, { "type": "O", "frame": 8, "at": 2527.430625003815 }, { "type": "O", "frame": 9, "at": 2527.430625003815 }, { "type": "O", "frame": 10, "at": 2527.430625003815 }, { "type": "O", "frame": 11, "at": 2527.430625003815 }, { "type": "O", "frame": 12, "at": 2527.430625003815 }, { "type": "O", "frame": 13, "at": 2527.430625003815 }, { "type": "O", "frame": 14, "at": 2527.430625003815 }, { "type": "O", "frame": 15, "at": 2527.430625003815 }, { "type": "O", "frame": 16, "at": 2527.430625003815 }, { "type": "O", "frame": 21, "at": 2527.430625003815 }, { "type": "O", "frame": 22, "at": 2527.430625003815 }, { "type": "O", "frame": 23, "at": 2527.430625003815 }, { "type": "O", "frame": 24, "at": 2527.430625003815 }, { "type": "O", "frame": 18, "at": 2527.430625003815 }, { "type": "C", "frame": 18, "at": 2528.779583969116 }, { "type": "C", "frame": 24, "at": 2528.779583969116 }, { "type": "O", "frame": 26, "at": 2528.779584 }, { "type": "O", "frame": 18, "at": 2528.779584 }, { "type": "C", "frame": 18, "at": 2530.1195419524993 }, { "type": "C", "frame": 26, "at": 2530.1195419524993 }, { "type": "O", "frame": 24, "at": 2530.119542 }, { "type": "O", "frame": 18, "at": 2530.119542 }, { "type": "C", "frame": 18, "at": 2536.8477090570373 }, { "type": "C", "frame": 24, "at": 2536.8477090570373 }, { "type": "C", "frame": 23, "at": 2536.8477096939087 }, { "type": "C", "frame": 22, "at": 2536.8477096939087 }, { "type": "C", "frame": 21, "at": 2536.8477096939087 }, { "type": "O", "frame": 17, "at": 2536.8477096939087 }, { "type": "O", "frame": 18, "at": 2536.8477096939087 }, { "type": "C", "frame": 18, "at": 2540.9785841106263 }, { "type": "C", "frame": 17, "at": 2540.9785841106263 }, { "type": "O", "frame": 19, "at": 2540.9785841106263 }, { "type": "O", "frame": 18, "at": 2540.9785841106263 }, { "type": "C", "frame": 18, "at": 2548.98000020636 }, { "type": "C", "frame": 19, "at": 2548.98000020636 }, { "type": "C", "frame": 16, "at": 2548.9800005340576 }, { "type": "C", "frame": 15, "at": 2548.9800005340576 }, { "type": "C", "frame": 14, "at": 2548.9800005340576 }, { "type": "C", "frame": 13, "at": 2548.9800005340576 }, { "type": "C", "frame": 12, "at": 2548.9800005340576 }, { "type": "C", "frame": 11, "at": 2548.9800005340576 }, { "type": "C", "frame": 10, "at": 2548.9800005340576 }, { "type": "C", "frame": 9, "at": 2548.9800005340576 }, { "type": "C", "frame": 8, "at": 2548.9800005340576 }, { "type": "C", "frame": 7, "at": 2548.9800005340576 }, { "type": "C", "frame": 6, "at": 2548.9800005340576 }, { "type": "O", "frame": 20, "at": 2548.9800005340576 }, { "type": "O", "frame": 8, "at": 2548.9800005340576 }, { "type": "O", "frame": 9, "at": 2548.9800005340576 }, { "type": "O", "frame": 10, "at": 2548.9800005340576 }, { "type": "O", "frame": 11, "at": 2548.9800005340576 }, { "type": "O", "frame": 12, "at": 2548.9800005340576 }, { "type": "O", "frame": 13, "at": 2548.9800005340576 }, { "type": "O", "frame": 14, "at": 2548.9800005340576 }, { "type": "O", "frame": 15, "at": 2548.9800005340576 }, { "type": "O", "frame": 16, "at": 2548.9800005340576 }, { "type": "O", "frame": 21, "at": 2548.9800005340576 }, { "type": "O", "frame": 22, "at": 2548.9800005340576 }, { "type": "O", "frame": 23, "at": 2548.9800005340576 }, { "type": "O", "frame": 24, "at": 2548.9800005340576 }, { "type": "O", "frame": 18, "at": 2548.9800005340576 }, { "type": "C", "frame": 18, "at": 2557.042000274658 }, { "type": "C", "frame": 24, "at": 2557.042000274658 }, { "type": "C", "frame": 23, "at": 2557.042000274658 }, { "type": "C", "frame": 22, "at": 2557.042000274658 }, { "type": "C", "frame": 21, "at": 2557.042000274658 }, { "type": "O", "frame": 17, "at": 2557.042000274658 }, { "type": "O", "frame": 18, "at": 2557.042000274658 }, { "type": "C", "frame": 18, "at": 2562.5342919273376 }, { "type": "C", "frame": 17, "at": 2562.5342919273376 }, { "type": "O", "frame": 19, "at": 2562.534292 }, { "type": "O", "frame": 18, "at": 2562.534292 }, { "type": "C", "frame": 18, "at": 2569.204458969299 }, { "type": "C", "frame": 19, "at": 2569.204458969299 }, { "type": "C", "frame": 16, "at": 2569.2044606018067 }, { "type": "C", "frame": 15, "at": 2569.2044606018067 }, { "type": "C", "frame": 14, "at": 2569.2044606018067 }, { "type": "C", "frame": 13, "at": 2569.2044606018067 }, { "type": "C", "frame": 12, "at": 2569.2044606018067 }, { "type": "C", "frame": 11, "at": 2569.2044606018067 }, { "type": "C", "frame": 10, "at": 2569.2044606018067 }, { "type": "C", "frame": 9, "at": 2569.2044606018067 }, { "type": "C", "frame": 8, "at": 2569.2044606018067 }, { "type": "C", "frame": 20, "at": 2569.2044606018067 }, { "type": "O", "frame": 6, "at": 2569.2044606018067 }, { "type": "O", "frame": 7, "at": 2569.2044606018067 }, { "type": "O", "frame": 8, "at": 2569.2044606018067 }, { "type": "O", "frame": 9, "at": 2569.2044606018067 }, { "type": "O", "frame": 10, "at": 2569.2044606018067 }, { "type": "O", "frame": 11, "at": 2569.2044606018067 }, { "type": "O", "frame": 12, "at": 2569.2044606018067 }, { "type": "O", "frame": 13, "at": 2569.2044606018067 }, { "type": "O", "frame": 14, "at": 2569.2044606018067 }, { "type": "O", "frame": 15, "at": 2569.2044606018067 }, { "type": "O", "frame": 16, "at": 2569.2044606018067 }, { "type": "O", "frame": 21, "at": 2569.2044606018067 }, { "type": "O", "frame": 22, "at": 2569.2044606018067 }, { "type": "O", "frame": 23, "at": 2569.2044606018067 }, { "type": "O", "frame": 24, "at": 2569.2044606018067 }, { "type": "O", "frame": 18, "at": 2569.2044606018067 }, { "type": "C", "frame": 18, "at": 2578.620875168213 }, { "type": "C", "frame": 24, "at": 2578.620875168213 }, { "type": "C", "frame": 23, "at": 2578.620875168213 }, { "type": "C", "frame": 22, "at": 2578.620875168213 }, { "type": "C", "frame": 21, "at": 2578.620875168213 }, { "type": "O", "frame": 17, "at": 2578.620875168213 }, { "type": "O", "frame": 18, "at": 2578.620875168213 }, { "type": "C", "frame": 18, "at": 2582.6819173088074 }, { "type": "C", "frame": 17, "at": 2582.6819173088074 }, { "type": "O", "frame": 19, "at": 2582.6819173088074 }, { "type": "O", "frame": 18, "at": 2582.6819173088074 }, { "type": "C", "frame": 18, "at": 2584.027334022705 }, { "type": "C", "frame": 19, "at": 2584.027334022705 }, { "type": "C", "frame": 16, "at": 2584.0273349765625 }, { "type": "C", "frame": 15, "at": 2584.0273349765625 }, { "type": "C", "frame": 14, "at": 2584.0273349765625 }, { "type": "C", "frame": 13, "at": 2584.0273349765625 }, { "type": "C", "frame": 12, "at": 2584.0273349765625 }, { "type": "C", "frame": 11, "at": 2584.0273349765625 }, { "type": "C", "frame": 10, "at": 2584.0273349765625 }, { "type": "C", "frame": 9, "at": 2584.0273349765625 }, { "type": "C", "frame": 8, "at": 2584.0273349765625 }, { "type": "C", "frame": 7, "at": 2584.0273349765625 }, { "type": "C", "frame": 6, "at": 2584.0273349765625 }, { "type": "O", "frame": 20, "at": 2584.0273349765625 }, { "type": "O", "frame": 8, "at": 2584.0273349765625 }, { "type": "O", "frame": 9, "at": 2584.0273349765625 }, { "type": "O", "frame": 10, "at": 2584.0273349765625 }, { "type": "O", "frame": 11, "at": 2584.0273349765625 }, { "type": "O", "frame": 12, "at": 2584.0273349765625 }, { "type": "O", "frame": 13, "at": 2584.0273349765625 }, { "type": "O", "frame": 14, "at": 2584.0273349765625 }, { "type": "O", "frame": 15, "at": 2584.0273349765625 }, { "type": "O", "frame": 16, "at": 2584.0273349765625 }, { "type": "O", "frame": 21, "at": 2584.0273349765625 }, { "type": "O", "frame": 22, "at": 2584.0273349765625 }, { "type": "O", "frame": 23, "at": 2584.0273349765625 }, { "type": "O", "frame": 24, "at": 2584.0273349765625 }, { "type": "O", "frame": 18, "at": 2584.0273349765625 }, { "type": "C", "frame": 18, "at": 2589.39683368338 }, { "type": "C", "frame": 24, "at": 2589.39683368338 }, { "type": "O", "frame": 28, "at": 2589.396834 }, { "type": "O", "frame": 18, "at": 2589.396834 }, { "type": "C", "frame": 18, "at": 2590.7383750518648 }, { "type": "C", "frame": 28, "at": 2590.7383750518648 }, { "type": "O", "frame": 24, "at": 2590.7383750518648 }, { "type": "O", "frame": 18, "at": 2590.7383750518648 }, { "type": "C", "frame": 18, "at": 2592.1018749990462 }, { "type": "C", "frame": 24, "at": 2592.1018749990462 }, { "type": "C", "frame": 23, "at": 2592.1018749990462 }, { "type": "C", "frame": 22, "at": 2592.1018749990462 }, { "type": "C", "frame": 21, "at": 2592.1018749990462 }, { "type": "O", "frame": 17, "at": 2592.101875 }, { "type": "O", "frame": 18, "at": 2592.101875 }, { "type": "C", "frame": 18, "at": 2597.553584270477 }, { "type": "C", "frame": 17, "at": 2597.553584270477 }, { "type": "O", "frame": 19, "at": 2597.553584270477 }, { "type": "O", "frame": 18, "at": 2597.553584270477 }, { "type": "C", "frame": 18, "at": 2604.2300003970945 }, { "type": "C", "frame": 19, "at": 2604.2300003970945 }, { "type": "C", "frame": 16, "at": 2604.2300003970945 }, { "type": "C", "frame": 15, "at": 2604.2300003970945 }, { "type": "C", "frame": 14, "at": 2604.2300003970945 }, { "type": "C", "frame": 13, "at": 2604.2300003970945 }, { "type": "C", "frame": 12, "at": 2604.2300003970945 }, { "type": "C", "frame": 11, "at": 2604.2300003970945 }, { "type": "C", "frame": 10, "at": 2604.2300003970945 }, { "type": "C", "frame": 9, "at": 2604.2300003970945 }, { "type": "C", "frame": 8, "at": 2604.2300003970945 }, { "type": "C", "frame": 20, "at": 2604.2300003970945 }, { "type": "O", "frame": 6, "at": 2604.2300003970945 }, { "type": "O", "frame": 7, "at": 2604.2300003970945 }, { "type": "O", "frame": 8, "at": 2604.2300003970945 }, { "type": "O", "frame": 9, "at": 2604.2300003970945 }, { "type": "O", "frame": 10, "at": 2604.2300003970945 }, { "type": "O", "frame": 11, "at": 2604.2300003970945 }, { "type": "O", "frame": 12, "at": 2604.2300003970945 }, { "type": "O", "frame": 13, "at": 2604.2300003970945 }, { "type": "O", "frame": 14, "at": 2604.2300003970945 }, { "type": "O", "frame": 15, "at": 2604.2300003970945 }, { "type": "O", "frame": 16, "at": 2604.2300003970945 }, { "type": "O", "frame": 21, "at": 2604.2300003970945 }, { "type": "O", "frame": 22, "at": 2604.2300003970945 }, { "type": "O", "frame": 23, "at": 2604.2300003970945 }, { "type": "O", "frame": 24, "at": 2604.2300003970945 }, { "type": "O", "frame": 18, "at": 2604.2300003970945 }, { "type": "C", "frame": 18, "at": 2613.659666519165 }, { "type": "C", "frame": 24, "at": 2613.659666519165 }, { "type": "C", "frame": 23, "at": 2613.659666519165 }, { "type": "C", "frame": 22, "at": 2613.659666519165 }, { "type": "C", "frame": 21, "at": 2613.659666519165 }, { "type": "O", "frame": 17, "at": 2613.659667 }, { "type": "O", "frame": 18, "at": 2613.659667 }, { "type": "C", "frame": 18, "at": 2619.4303340761107 }, { "type": "C", "frame": 17, "at": 2619.4303340761107 }, { "type": "O", "frame": 19, "at": 2619.4303340761107 }, { "type": "O", "frame": 18, "at": 2619.4303340761107 }, { "type": "C", "frame": 18, "at": 2620.821249989876 }, { "type": "C", "frame": 19, "at": 2620.821249989876 }, { "type": "C", "frame": 16, "at": 2620.821249989876 }, { "type": "C", "frame": 15, "at": 2620.821249989876 }, { "type": "C", "frame": 14, "at": 2620.821249989876 }, { "type": "C", "frame": 13, "at": 2620.821249989876 }, { "type": "C", "frame": 12, "at": 2620.821249989876 }, { "type": "C", "frame": 11, "at": 2620.821249989876 }, { "type": "C", "frame": 10, "at": 2620.821249989876 }, { "type": "C", "frame": 9, "at": 2620.821249989876 }, { "type": "C", "frame": 8, "at": 2620.821249989876 }, { "type": "C", "frame": 7, "at": 2620.821249989876 }, { "type": "C", "frame": 6, "at": 2620.821249989876 }, { "type": "O", "frame": 20, "at": 2620.82125 }, { "type": "O", "frame": 8, "at": 2620.82125 }, { "type": "O", "frame": 9, "at": 2620.82125 }, { "type": "O", "frame": 10, "at": 2620.82125 }, { "type": "O", "frame": 11, "at": 2620.82125 }, { "type": "O", "frame": 12, "at": 2620.82125 }, { "type": "O", "frame": 13, "at": 2620.82125 }, { "type": "O", "frame": 14, "at": 2620.82125 }, { "type": "O", "frame": 15, "at": 2620.82125 }, { "type": "O", "frame": 16, "at": 2620.82125 }, { "type": "O", "frame": 21, "at": 2620.82125 }, { "type": "O", "frame": 22, "at": 2620.82125 }, { "type": "O", "frame": 23, "at": 2620.82125 }, { "type": "O", "frame": 24, "at": 2620.82125 }, { "type": "O", "frame": 18, "at": 2620.82125 }, { "type": "C", "frame": 18, "at": 2624.849208869934 }, { "type": "C", "frame": 24, "at": 2624.849208869934 }, { "type": "O", "frame": 29, "at": 2624.849209 }, { "type": "O", "frame": 18, "at": 2624.849209 }, { "type": "C", "frame": 18, "at": 2626.1891249908294 }, { "type": "C", "frame": 29, "at": 2626.1891249908294 }, { "type": "O", "frame": 24, "at": 2626.189125 }, { "type": "O", "frame": 18, "at": 2626.189125 }, { "type": "C", "frame": 18, "at": 2630.2171668395995 }, { "type": "C", "frame": 24, "at": 2630.2171668395995 }, { "type": "C", "frame": 23, "at": 2630.2171669387817 }, { "type": "C", "frame": 22, "at": 2630.2171669387817 }, { "type": "C", "frame": 21, "at": 2630.2171669387817 }, { "type": "O", "frame": 17, "at": 2630.217167 }, { "type": "O", "frame": 18, "at": 2630.217167 }, { "type": "C", "frame": 18, "at": 2634.338334182922 }, { "type": "C", "frame": 17, "at": 2634.338334182922 }, { "type": "O", "frame": 19, "at": 2634.338334182922 }, { "type": "O", "frame": 18, "at": 2634.338334182922 }, { "type": "C", "frame": 18, "at": 2641.048541939148 }, { "type": "C", "frame": 19, "at": 2641.048541939148 }, { "type": "C", "frame": 16, "at": 2641.0485430145263 }, { "type": "C", "frame": 15, "at": 2641.0485430145263 }, { "type": "C", "frame": 14, "at": 2641.0485430145263 }, { "type": "C", "frame": 13, "at": 2641.0485430145263 }, { "type": "C", "frame": 12, "at": 2641.0485430145263 }, { "type": "C", "frame": 11, "at": 2641.0485430145263 }, { "type": "C", "frame": 10, "at": 2641.0485430145263 }, { "type": "C", "frame": 9, "at": 2641.0485430145263 }, { "type": "C", "frame": 8, "at": 2641.0485430145263 }, { "type": "O", "frame": 18, "at": 2641.0485430145263 }, { "type": "C", "frame": 18, "at": 2642.399208999817 }, { "type": "C", "frame": 20, "at": 2642.3992109680175 }, { "type": "O", "frame": 6, "at": 2642.3992109680175 }, { "type": "O", "frame": 7, "at": 2642.3992109680175 }, { "type": "O", "frame": 8, "at": 2642.3992109680175 }, { "type": "O", "frame": 9, "at": 2642.3992109680175 }, { "type": "O", "frame": 10, "at": 2642.3992109680175 }, { "type": "O", "frame": 11, "at": 2642.3992109680175 }, { "type": "O", "frame": 12, "at": 2642.3992109680175 }, { "type": "O", "frame": 13, "at": 2642.3992109680175 }, { "type": "O", "frame": 14, "at": 2642.3992109680175 }, { "type": "O", "frame": 15, "at": 2642.3992109680175 }, { "type": "O", "frame": 16, "at": 2642.3992109680175 }, { "type": "O", "frame": 21, "at": 2642.3992109680175 }, { "type": "O", "frame": 22, "at": 2642.3992109680175 }, { "type": "O", "frame": 23, "at": 2642.3992109680175 }, { "type": "O", "frame": 24, "at": 2642.3992109680175 }, { "type": "O", "frame": 18, "at": 2642.3992109680175 }, { "type": "C", "frame": 18, "at": 2650.4615840686647 }, { "type": "C", "frame": 24, "at": 2650.4615840686647 }, { "type": "C", "frame": 23, "at": 2650.4615840686647 }, { "type": "C", "frame": 22, "at": 2650.4615840686647 }, { "type": "C", "frame": 21, "at": 2650.4615840686647 }, { "type": "O", "frame": 17, "at": 2650.4615840686647 }, { "type": "O", "frame": 18, "at": 2650.4615840686647 }, { "type": "C", "frame": 18, "at": 2655.951667217621 }, { "type": "C", "frame": 17, "at": 2655.951667217621 }, { "type": "O", "frame": 19, "at": 2655.951667217621 }, { "type": "O", "frame": 18, "at": 2655.951667217621 }, { "type": "C", "frame": 18, "at": 2662.6571246873777 }, { "type": "C", "frame": 19, "at": 2662.6571246873777 }, { "type": "C", "frame": 16, "at": 2662.6571246873777 }, { "type": "C", "frame": 15, "at": 2662.6571246873777 }, { "type": "C", "frame": 14, "at": 2662.6571246873777 }, { "type": "C", "frame": 13, "at": 2662.6571246873777 }, { "type": "C", "frame": 12, "at": 2662.6571246873777 }, { "type": "C", "frame": 11, "at": 2662.6571246873777 }, { "type": "C", "frame": 10, "at": 2662.6571246873777 }, { "type": "C", "frame": 9, "at": 2662.6571246873777 }, { "type": "C", "frame": 8, "at": 2662.6571246873777 }, { "type": "C", "frame": 7, "at": 2662.6571246873777 }, { "type": "C", "frame": 6, "at": 2662.6571246873777 }, { "type": "O", "frame": 43, "at": 2662.657125 }, { "type": "O", "frame": 44, "at": 2662.657125 }, { "type": "O", "frame": 45, "at": 2662.657125 }, { "type": "O", "frame": 18, "at": 2662.657125 }, { "type": "C", "frame": 18, "at": 2664.0104999580385 }, { "type": "C", "frame": 45, "at": 2664.0104999580385 }, { "type": "C", "frame": 44, "at": 2664.0104999580385 }, { "type": "C", "frame": 43, "at": 2664.0104999580385 }, { "type": "O", "frame": 20, "at": 2664.0105 }, { "type": "O", "frame": 8, "at": 2664.0105 }, { "type": "O", "frame": 9, "at": 2664.0105 }, { "type": "O", "frame": 10, "at": 2664.0105 }, { "type": "O", "frame": 11, "at": 2664.0105 }, { "type": "O", "frame": 12, "at": 2664.0105 }, { "type": "O", "frame": 13, "at": 2664.0105 }, { "type": "O", "frame": 14, "at": 2664.0105 }, { "type": "O", "frame": 15, "at": 2664.0105 }, { "type": "O", "frame": 16, "at": 2664.0105 }, { "type": "O", "frame": 21, "at": 2664.0105 }, { "type": "O", "frame": 22, "at": 2664.0105 }, { "type": "O", "frame": 23, "at": 2664.0105 }, { "type": "O", "frame": 24, "at": 2664.0105 }, { "type": "O", "frame": 18, "at": 2664.0105 }, { "type": "C", "frame": 18, "at": 2672.111999557495 }, { "type": "C", "frame": 24, "at": 2672.111999557495 }, { "type": "C", "frame": 23, "at": 2672.111999557495 }, { "type": "C", "frame": 22, "at": 2672.111999557495 }, { "type": "C", "frame": 21, "at": 2672.111999557495 }, { "type": "O", "frame": 17, "at": 2672.112 }, { "type": "O", "frame": 18, "at": 2672.112 }, { "type": "C", "frame": 18, "at": 2677.670500289917 }, { "type": "C", "frame": 17, "at": 2677.670500289917 }, { "type": "O", "frame": 19, "at": 2677.670500289917 }, { "type": "O", "frame": 18, "at": 2677.670500289917 }, { "type": "C", "frame": 18, "at": 2679.0596249895098 }, { "type": "C", "frame": 19, "at": 2679.0596249895098 }, { "type": "C", "frame": 16, "at": 2679.0596249895098 }, { "type": "C", "frame": 15, "at": 2679.0596249895098 }, { "type": "C", "frame": 14, "at": 2679.0596249895098 }, { "type": "C", "frame": 13, "at": 2679.0596249895098 }, { "type": "C", "frame": 12, "at": 2679.0596249895098 }, { "type": "C", "frame": 11, "at": 2679.0596249895098 }, { "type": "C", "frame": 10, "at": 2679.0596249895098 }, { "type": "C", "frame": 9, "at": 2679.0596249895098 }, { "type": "C", "frame": 8, "at": 2679.0596249895098 }, { "type": "C", "frame": 20, "at": 2679.0596249895098 }, { "type": "O", "frame": 6, "at": 2679.059625 }, { "type": "O", "frame": 7, "at": 2679.059625 }, { "type": "O", "frame": 8, "at": 2679.059625 }, { "type": "O", "frame": 9, "at": 2679.059625 }, { "type": "O", "frame": 10, "at": 2679.059625 }, { "type": "O", "frame": 11, "at": 2679.059625 }, { "type": "O", "frame": 12, "at": 2679.059625 }, { "type": "O", "frame": 13, "at": 2679.059625 }, { "type": "O", "frame": 14, "at": 2679.059625 }, { "type": "O", "frame": 15, "at": 2679.059625 }, { "type": "O", "frame": 16, "at": 2679.059625 }, { "type": "O", "frame": 21, "at": 2679.059625 }, { "type": "O", "frame": 22, "at": 2679.059625 }, { "type": "O", "frame": 23, "at": 2679.059625 }, { "type": "O", "frame": 28, "at": 2679.059625 }, { "type": "O", "frame": 18, "at": 2679.059625 }, { "type": "C", "frame": 18, "at": 2680.413542002678 }, { "type": "C", "frame": 28, "at": 2680.413542002678 }, { "type": "O", "frame": 24, "at": 2680.413542002678 }, { "type": "O", "frame": 18, "at": 2680.413542002678 }, { "type": "C", "frame": 18, "at": 2684.4325000917356 }, { "type": "C", "frame": 24, "at": 2684.4325000917356 }, { "type": "O", "frame": 31, "at": 2684.4325000917356 }, { "type": "O", "frame": 18, "at": 2684.4325000917356 }, { "type": "C", "frame": 18, "at": 2687.1407090377807 }, { "type": "C", "frame": 31, "at": 2687.1407090377807 }, { "type": "C", "frame": 23, "at": 2687.1407092514037 }, { "type": "C", "frame": 22, "at": 2687.1407092514037 }, { "type": "C", "frame": 21, "at": 2687.1407092514037 }, { "type": "O", "frame": 17, "at": 2687.1407092514037 }, { "type": "O", "frame": 18, "at": 2687.1407092514037 }, { "type": "C", "frame": 18, "at": 2692.6028753093565 }, { "type": "C", "frame": 17, "at": 2692.6028753093565 }, { "type": "O", "frame": 19, "at": 2692.6028753093565 }, { "type": "O", "frame": 18, "at": 2692.6028753093565 }, { "type": "C", "frame": 18, "at": 2699.261749988556 }, { "type": "C", "frame": 19, "at": 2699.261749988556 }, { "type": "C", "frame": 16, "at": 2699.261749988556 }, { "type": "C", "frame": 15, "at": 2699.261749988556 }, { "type": "C", "frame": 14, "at": 2699.261749988556 }, { "type": "C", "frame": 13, "at": 2699.261749988556 }, { "type": "C", "frame": 12, "at": 2699.261749988556 }, { "type": "C", "frame": 11, "at": 2699.261749988556 }, { "type": "C", "frame": 10, "at": 2699.261749988556 }, { "type": "C", "frame": 9, "at": 2699.261749988556 }, { "type": "C", "frame": 8, "at": 2699.261749988556 }, { "type": "C", "frame": 7, "at": 2699.261749988556 }, { "type": "C", "frame": 6, "at": 2699.261749988556 }, { "type": "O", "frame": 20, "at": 2699.26175 }, { "type": "O", "frame": 8, "at": 2699.26175 }, { "type": "O", "frame": 9, "at": 2699.26175 }, { "type": "O", "frame": 10, "at": 2699.26175 }, { "type": "O", "frame": 11, "at": 2699.26175 }, { "type": "O", "frame": 12, "at": 2699.26175 }, { "type": "O", "frame": 13, "at": 2699.26175 }, { "type": "O", "frame": 14, "at": 2699.26175 }, { "type": "O", "frame": 15, "at": 2699.26175 }, { "type": "O", "frame": 16, "at": 2699.26175 }, { "type": "O", "frame": 21, "at": 2699.26175 }, { "type": "O", "frame": 22, "at": 2699.26175 }, { "type": "O", "frame": 23, "at": 2699.26175 }, { "type": "O", "frame": 24, "at": 2699.26175 }, { "type": "O", "frame": 18, "at": 2699.26175 }, { "type": "C", "frame": 18, "at": 2708.6818750076295 }, { "type": "C", "frame": 24, "at": 2708.6818750076295 }, { "type": "C", "frame": 23, "at": 2708.6818750076295 }, { "type": "C", "frame": 22, "at": 2708.6818750076295 }, { "type": "C", "frame": 21, "at": 2708.6818750076295 }, { "type": "O", "frame": 17, "at": 2708.6818750076295 }, { "type": "O", "frame": 18, "at": 2708.6818750076295 }, { "type": "C", "frame": 18, "at": 2712.7765839195254 }, { "type": "C", "frame": 17, "at": 2712.7765839195254 }, { "type": "O", "frame": 19, "at": 2712.776584 }, { "type": "O", "frame": 18, "at": 2712.776584 }, { "type": "C", "frame": 18, "at": 2714.118375033745 }, { "type": "C", "frame": 19, "at": 2714.118375033745 }, { "type": "C", "frame": 16, "at": 2714.118375033745 }, { "type": "C", "frame": 15, "at": 2714.118375033745 }, { "type": "C", "frame": 14, "at": 2714.118375033745 }, { "type": "C", "frame": 13, "at": 2714.118375033745 }, { "type": "C", "frame": 12, "at": 2714.118375033745 }, { "type": "C", "frame": 11, "at": 2714.118375033745 }, { "type": "C", "frame": 10, "at": 2714.118375033745 }, { "type": "C", "frame": 9, "at": 2714.118375033745 }, { "type": "C", "frame": 8, "at": 2714.118375033745 }, { "type": "C", "frame": 20, "at": 2714.118375033745 }, { "type": "O", "frame": 6, "at": 2714.118375033745 }, { "type": "O", "frame": 7, "at": 2714.118375033745 }, { "type": "O", "frame": 18, "at": 2714.118375033745 }, { "type": "C", "frame": 18, "at": 2715.4892919626236 }, { "type": "O", "frame": 8, "at": 2715.489292 }, { "type": "O", "frame": 9, "at": 2715.489292 }, { "type": "O", "frame": 10, "at": 2715.489292 }, { "type": "O", "frame": 11, "at": 2715.489292 }, { "type": "O", "frame": 12, "at": 2715.489292 }, { "type": "O", "frame": 13, "at": 2715.489292 }, { "type": "O", "frame": 14, "at": 2715.489292 }, { "type": "O", "frame": 15, "at": 2715.489292 }, { "type": "O", "frame": 16, "at": 2715.489292 }, { "type": "O", "frame": 21, "at": 2715.489292 }, { "type": "O", "frame": 22, "at": 2715.489292 }, { "type": "O", "frame": 23, "at": 2715.489292 }, { "type": "O", "frame": 24, "at": 2715.489292 }, { "type": "O", "frame": 18, "at": 2715.489292 }, { "type": "C", "frame": 18, "at": 2723.576208923523 }, { "type": "C", "frame": 24, "at": 2723.576208923523 }, { "type": "C", "frame": 23, "at": 2723.576208923523 }, { "type": "C", "frame": 22, "at": 2723.576208923523 }, { "type": "C", "frame": 21, "at": 2723.576208923523 }, { "type": "O", "frame": 17, "at": 2723.576209 }, { "type": "O", "frame": 18, "at": 2723.576209 }, { "type": "C", "frame": 18, "at": 2727.6811246188963 }, { "type": "C", "frame": 17, "at": 2727.6811246188963 }, { "type": "O", "frame": 19, "at": 2727.681125 }, { "type": "O", "frame": 18, "at": 2727.681125 }, { "type": "C", "frame": 18, "at": 2735.684708908081 }, { "type": "C", "frame": 19, "at": 2735.684708908081 }, { "type": "C", "frame": 16, "at": 2735.684709404175 }, { "type": "C", "frame": 15, "at": 2735.684709404175 }, { "type": "C", "frame": 14, "at": 2735.684709404175 }, { "type": "C", "frame": 13, "at": 2735.684709404175 }, { "type": "C", "frame": 12, "at": 2735.684709404175 }, { "type": "C", "frame": 11, "at": 2735.684709404175 }, { "type": "C", "frame": 10, "at": 2735.684709404175 }, { "type": "C", "frame": 9, "at": 2735.684709404175 }, { "type": "C", "frame": 8, "at": 2735.684709404175 }, { "type": "C", "frame": 7, "at": 2735.6847106781006 }, { "type": "C", "frame": 6, "at": 2735.6847106781006 }, { "type": "O", "frame": 20, "at": 2735.6847106781006 }, { "type": "O", "frame": 8, "at": 2735.6847106781006 }, { "type": "O", "frame": 9, "at": 2735.6847106781006 }, { "type": "O", "frame": 10, "at": 2735.6847106781006 }, { "type": "O", "frame": 11, "at": 2735.6847106781006 }, { "type": "O", "frame": 12, "at": 2735.6847106781006 }, { "type": "O", "frame": 13, "at": 2735.6847106781006 }, { "type": "O", "frame": 14, "at": 2735.6847106781006 }, { "type": "O", "frame": 15, "at": 2735.6847106781006 }, { "type": "O", "frame": 16, "at": 2735.6847106781006 }, { "type": "O", "frame": 21, "at": 2735.6847106781006 }, { "type": "O", "frame": 22, "at": 2735.6847106781006 }, { "type": "O", "frame": 23, "at": 2735.6847106781006 }, { "type": "O", "frame": 24, "at": 2735.6847106781006 }, { "type": "O", "frame": 18, "at": 2735.6847106781006 }, { "type": "C", "frame": 18, "at": 2745.098750519165 }, { "type": "C", "frame": 24, "at": 2745.098750519165 }, { "type": "C", "frame": 23, "at": 2745.098750519165 }, { "type": "C", "frame": 22, "at": 2745.098750519165 }, { "type": "C", "frame": 21, "at": 2745.098750519165 }, { "type": "O", "frame": 17, "at": 2745.098750519165 }, { "type": "O", "frame": 18, "at": 2745.098750519165 }, { "type": "C", "frame": 18, "at": 2749.2808340835572 }, { "type": "C", "frame": 17, "at": 2749.2808340835572 }, { "type": "O", "frame": 19, "at": 2749.2808340835572 }, { "type": "O", "frame": 18, "at": 2749.2808340835572 }, { "type": "C", "frame": 18, "at": 2755.956249992737 }, { "type": "C", "frame": 19, "at": 2755.956249992737 }, { "type": "C", "frame": 16, "at": 2755.956250595459 }, { "type": "C", "frame": 15, "at": 2755.956250595459 }, { "type": "C", "frame": 14, "at": 2755.956250595459 }, { "type": "C", "frame": 13, "at": 2755.956250595459 }, { "type": "C", "frame": 12, "at": 2755.956250595459 }, { "type": "C", "frame": 11, "at": 2755.956250595459 }, { "type": "C", "frame": 10, "at": 2755.956250595459 }, { "type": "C", "frame": 9, "at": 2755.956250595459 }, { "type": "C", "frame": 8, "at": 2755.956250595459 }, { "type": "C", "frame": 20, "at": 2755.956250595459 }, { "type": "O", "frame": 6, "at": 2755.956250595459 }, { "type": "O", "frame": 7, "at": 2755.956250595459 }, { "type": "O", "frame": 8, "at": 2755.956250595459 }, { "type": "O", "frame": 9, "at": 2755.956250595459 }, { "type": "O", "frame": 10, "at": 2755.956250595459 }, { "type": "O", "frame": 11, "at": 2755.956250595459 }, { "type": "O", "frame": 12, "at": 2755.956250595459 }, { "type": "O", "frame": 13, "at": 2755.956250595459 }, { "type": "O", "frame": 14, "at": 2755.956250595459 }, { "type": "O", "frame": 15, "at": 2755.956250595459 }, { "type": "O", "frame": 16, "at": 2755.956250595459 }, { "type": "O", "frame": 21, "at": 2755.956250595459 }, { "type": "O", "frame": 22, "at": 2755.956250595459 }, { "type": "O", "frame": 23, "at": 2755.956250595459 }, { "type": "O", "frame": 24, "at": 2755.956250595459 }, { "type": "O", "frame": 18, "at": 2755.956250595459 }, { "type": "C", "frame": 18, "at": 2765.3767087936403 }, { "type": "C", "frame": 24, "at": 2765.3767087936403 }, { "type": "C", "frame": 23, "at": 2765.3767087936403 }, { "type": "C", "frame": 22, "at": 2765.3767087936403 }, { "type": "C", "frame": 21, "at": 2765.3767087936403 }, { "type": "O", "frame": 17, "at": 2765.376709 }, { "type": "O", "frame": 18, "at": 2765.376709 }, { "type": "C", "frame": 18, "at": 2769.5723753131715 }, { "type": "C", "frame": 17, "at": 2769.5723753131715 }, { "type": "O", "frame": 19, "at": 2769.5723753131715 }, { "type": "O", "frame": 18, "at": 2769.5723753131715 }, { "type": "C", "frame": 18, "at": 2772.327375114441 }, { "type": "C", "frame": 19, "at": 2772.327375114441 }, { "type": "C", "frame": 16, "at": 2772.327375114441 }, { "type": "C", "frame": 15, "at": 2772.327375114441 }, { "type": "C", "frame": 14, "at": 2772.327375114441 }, { "type": "C", "frame": 13, "at": 2772.327375114441 }, { "type": "C", "frame": 12, "at": 2772.327375114441 }, { "type": "C", "frame": 11, "at": 2772.327375114441 }, { "type": "C", "frame": 10, "at": 2772.327375114441 }, { "type": "C", "frame": 9, "at": 2772.327375114441 }, { "type": "C", "frame": 8, "at": 2772.327375114441 }, { "type": "C", "frame": 7, "at": 2772.327375114441 }, { "type": "C", "frame": 6, "at": 2772.327375114441 }, { "type": "O", "frame": 20, "at": 2772.327375114441 }, { "type": "O", "frame": 8, "at": 2772.327375114441 }, { "type": "O", "frame": 9, "at": 2772.327375114441 }, { "type": "O", "frame": 10, "at": 2772.327375114441 }, { "type": "O", "frame": 11, "at": 2772.327375114441 }, { "type": "O", "frame": 12, "at": 2772.327375114441 }, { "type": "O", "frame": 13, "at": 2772.327375114441 }, { "type": "O", "frame": 14, "at": 2772.327375114441 }, { "type": "O", "frame": 15, "at": 2772.327375114441 }, { "type": "O", "frame": 16, "at": 2772.327375114441 }, { "type": "O", "frame": 21, "at": 2772.327375114441 }, { "type": "O", "frame": 22, "at": 2772.327375114441 }, { "type": "O", "frame": 23, "at": 2772.327375114441 }, { "type": "O", "frame": 24, "at": 2772.327375114441 }, { "type": "O", "frame": 18, "at": 2772.327375114441 }, { "type": "C", "frame": 18, "at": 2780.3823753051756 }, { "type": "C", "frame": 24, "at": 2780.3823753051756 }, { "type": "C", "frame": 23, "at": 2780.3823753051756 }, { "type": "C", "frame": 22, "at": 2780.3823753051756 }, { "type": "C", "frame": 21, "at": 2780.3823753051756 }, { "type": "O", "frame": 17, "at": 2780.3823753051756 }, { "type": "O", "frame": 18, "at": 2780.3823753051756 }, { "type": "C", "frame": 18, "at": 2784.4990837554933 }, { "type": "C", "frame": 17, "at": 2784.4990837554933 }, { "type": "O", "frame": 19, "at": 2784.499084 }, { "type": "O", "frame": 18, "at": 2784.499084 }, { "type": "C", "frame": 18, "at": 2792.3960423511353 }, { "type": "C", "frame": 19, "at": 2792.3960423511353 }, { "type": "C", "frame": 16, "at": 2792.3960433654784 }, { "type": "C", "frame": 15, "at": 2792.3960433654784 }, { "type": "C", "frame": 14, "at": 2792.3960433654784 }, { "type": "C", "frame": 13, "at": 2792.3960433654784 }, { "type": "C", "frame": 12, "at": 2792.3960433654784 }, { "type": "C", "frame": 11, "at": 2792.3960433654784 }, { "type": "C", "frame": 10, "at": 2792.3960433654784 }, { "type": "C", "frame": 9, "at": 2792.3960433654784 }, { "type": "C", "frame": 8, "at": 2792.3960433654784 }, { "type": "C", "frame": 20, "at": 2792.3960433654784 }, { "type": "O", "frame": 6, "at": 2792.3960433654784 }, { "type": "O", "frame": 7, "at": 2792.3960433654784 }, { "type": "O", "frame": 8, "at": 2792.3960433654784 }, { "type": "O", "frame": 9, "at": 2792.3960433654784 }, { "type": "O", "frame": 10, "at": 2792.3960433654784 }, { "type": "O", "frame": 11, "at": 2792.3960433654784 }, { "type": "O", "frame": 12, "at": 2792.3960433654784 }, { "type": "O", "frame": 13, "at": 2792.3960433654784 }, { "type": "O", "frame": 14, "at": 2792.3960433654784 }, { "type": "O", "frame": 15, "at": 2792.3960433654784 }, { "type": "O", "frame": 46, "at": 2792.3960433654784 }, { "type": "O", "frame": 18, "at": 2792.3960433654784 }, { "type": "C", "frame": 18, "at": 2793.7304589855116 }, { "type": "C", "frame": 46, "at": 2793.7304589855116 }, { "type": "O", "frame": 16, "at": 2793.730459 }, { "type": "O", "frame": 21, "at": 2793.730459 }, { "type": "O", "frame": 22, "at": 2793.730459 }, { "type": "O", "frame": 23, "at": 2793.730459 }, { "type": "O", "frame": 24, "at": 2793.730459 }, { "type": "O", "frame": 18, "at": 2793.730459 }, { "type": "C", "frame": 18, "at": 2801.7901666416014 }, { "type": "C", "frame": 24, "at": 2801.7901666416014 }, { "type": "C", "frame": 23, "at": 2801.7901666416014 }, { "type": "C", "frame": 22, "at": 2801.7901666416014 }, { "type": "C", "frame": 21, "at": 2801.7901666416014 }, { "type": "O", "frame": 17, "at": 2801.790167 }, { "type": "O", "frame": 18, "at": 2801.790167 }, { "type": "C", "frame": 18, "at": 2807.3380414506837 }, { "type": "C", "frame": 17, "at": 2807.3380414506837 }, { "type": "O", "frame": 19, "at": 2807.338042 }, { "type": "O", "frame": 18, "at": 2807.338042 }, { "type": "C", "frame": 18, "at": 2808.680459001724 }, { "type": "C", "frame": 19, "at": 2808.680459001724 }, { "type": "C", "frame": 16, "at": 2808.680459001724 }, { "type": "C", "frame": 15, "at": 2808.680460106079 }, { "type": "C", "frame": 14, "at": 2808.680460106079 }, { "type": "C", "frame": 13, "at": 2808.680460106079 }, { "type": "C", "frame": 12, "at": 2808.680460106079 }, { "type": "C", "frame": 11, "at": 2808.680460106079 }, { "type": "C", "frame": 10, "at": 2808.680460106079 }, { "type": "C", "frame": 9, "at": 2808.680460106079 }, { "type": "C", "frame": 8, "at": 2808.680460106079 }, { "type": "C", "frame": 7, "at": 2808.680460106079 }, { "type": "C", "frame": 6, "at": 2808.680460106079 }, { "type": "O", "frame": 20, "at": 2808.680460106079 }, { "type": "O", "frame": 8, "at": 2808.680460106079 }, { "type": "O", "frame": 9, "at": 2808.680460106079 }, { "type": "O", "frame": 10, "at": 2808.680460106079 }, { "type": "O", "frame": 11, "at": 2808.680460106079 }, { "type": "O", "frame": 12, "at": 2808.680460106079 }, { "type": "O", "frame": 13, "at": 2808.680460106079 }, { "type": "O", "frame": 14, "at": 2808.680460106079 }, { "type": "O", "frame": 15, "at": 2808.680460106079 }, { "type": "O", "frame": 16, "at": 2808.680460106079 }, { "type": "O", "frame": 21, "at": 2808.680460106079 }, { "type": "O", "frame": 22, "at": 2808.680460106079 }, { "type": "O", "frame": 23, "at": 2808.680460106079 }, { "type": "O", "frame": 24, "at": 2808.680460106079 }, { "type": "O", "frame": 18, "at": 2808.680460106079 }, { "type": "C", "frame": 18, "at": 2812.7002086414186 }, { "type": "C", "frame": 24, "at": 2812.7002086414186 }, { "type": "O", "frame": 31, "at": 2812.700209 }, { "type": "O", "frame": 18, "at": 2812.700209 }, { "type": "C", "frame": 18, "at": 2814.0407500051347 }, { "type": "C", "frame": 31, "at": 2814.0407500051347 }, { "type": "O", "frame": 24, "at": 2814.0407500051347 }, { "type": "O", "frame": 18, "at": 2814.0407500051347 }, { "type": "C", "frame": 18, "at": 2816.7369589538575 }, { "type": "C", "frame": 24, "at": 2816.7369589538575 }, { "type": "C", "frame": 23, "at": 2816.7369589538575 }, { "type": "C", "frame": 22, "at": 2816.7369589538575 }, { "type": "C", "frame": 21, "at": 2816.7369589538575 }, { "type": "O", "frame": 17, "at": 2816.736959 }, { "type": "O", "frame": 18, "at": 2816.736959 }, { "type": "C", "frame": 18, "at": 2820.8492088512266 }, { "type": "C", "frame": 17, "at": 2820.8492088512266 }, { "type": "O", "frame": 19, "at": 2820.849209 }, { "type": "O", "frame": 18, "at": 2820.849209 }, { "type": "C", "frame": 18, "at": 2827.4952089084472 }, { "type": "C", "frame": 19, "at": 2827.4952089084472 }, { "type": "C", "frame": 16, "at": 2827.4952089084472 }, { "type": "C", "frame": 15, "at": 2827.4952089084472 }, { "type": "C", "frame": 14, "at": 2827.4952089084472 }, { "type": "C", "frame": 13, "at": 2827.4952089084472 }, { "type": "C", "frame": 12, "at": 2827.4952089084472 }, { "type": "C", "frame": 11, "at": 2827.4952089084472 }, { "type": "C", "frame": 10, "at": 2827.4952089084472 }, { "type": "C", "frame": 9, "at": 2827.4952089084472 }, { "type": "C", "frame": 8, "at": 2827.4952089084472 }, { "type": "C", "frame": 20, "at": 2827.4952089084472 }, { "type": "O", "frame": 6, "at": 2827.495209 }, { "type": "O", "frame": 7, "at": 2827.495209 }, { "type": "O", "frame": 8, "at": 2827.495209 }, { "type": "O", "frame": 9, "at": 2827.495209 }, { "type": "O", "frame": 10, "at": 2827.495209 }, { "type": "O", "frame": 11, "at": 2827.495209 }, { "type": "O", "frame": 12, "at": 2827.495209 }, { "type": "O", "frame": 13, "at": 2827.495209 }, { "type": "O", "frame": 14, "at": 2827.495209 }, { "type": "O", "frame": 15, "at": 2827.495209 }, { "type": "O", "frame": 16, "at": 2827.495209 }, { "type": "O", "frame": 21, "at": 2827.495209 }, { "type": "O", "frame": 22, "at": 2827.495209 }, { "type": "O", "frame": 23, "at": 2827.495209 }, { "type": "O", "frame": 24, "at": 2827.495209 }, { "type": "O", "frame": 18, "at": 2827.495209 }, { "type": "C", "frame": 18, "at": 2830.178959152588 }, { "type": "C", "frame": 24, "at": 2830.178959152588 }, { "type": "O", "frame": 38, "at": 2830.178959152588 }, { "type": "O", "frame": 18, "at": 2830.178959152588 }, { "type": "C", "frame": 18, "at": 2831.5262499927367 }, { "type": "C", "frame": 38, "at": 2831.5262499927367 }, { "type": "O", "frame": 24, "at": 2831.52625 }, { "type": "O", "frame": 18, "at": 2831.52625 }, { "type": "C", "frame": 18, "at": 2836.9035841178893 }, { "type": "C", "frame": 24, "at": 2836.9035841178893 }, { "type": "C", "frame": 23, "at": 2836.9035841178893 }, { "type": "C", "frame": 22, "at": 2836.9035841178893 }, { "type": "C", "frame": 21, "at": 2836.9035841178893 }, { "type": "O", "frame": 17, "at": 2836.9035841178893 }, { "type": "O", "frame": 18, "at": 2836.9035841178893 }, { "type": "C", "frame": 18, "at": 2840.990708824524 }, { "type": "C", "frame": 17, "at": 2840.990708824524 }, { "type": "O", "frame": 19, "at": 2840.990709 }, { "type": "O", "frame": 18, "at": 2840.990709 }, { "type": "C", "frame": 18, "at": 2843.672624998459 }, { "type": "C", "frame": 19, "at": 2843.672624998459 }, { "type": "C", "frame": 16, "at": 2843.672624998459 }, { "type": "C", "frame": 15, "at": 2843.672624998459 }, { "type": "C", "frame": 14, "at": 2843.672624998459 }, { "type": "C", "frame": 13, "at": 2843.672624998459 }, { "type": "C", "frame": 12, "at": 2843.672624998459 }, { "type": "C", "frame": 11, "at": 2843.672624998459 }, { "type": "C", "frame": 10, "at": 2843.672624998459 }, { "type": "C", "frame": 9, "at": 2843.672624998459 }, { "type": "C", "frame": 8, "at": 2843.672624998459 }, { "type": "C", "frame": 7, "at": 2843.672624998459 }, { "type": "C", "frame": 6, "at": 2843.672624998459 }, { "type": "O", "frame": 20, "at": 2843.672625 }, { "type": "O", "frame": 8, "at": 2843.672625 }, { "type": "O", "frame": 9, "at": 2843.672625 }, { "type": "O", "frame": 10, "at": 2843.672625 }, { "type": "O", "frame": 11, "at": 2843.672625 }, { "type": "O", "frame": 12, "at": 2843.672625 }, { "type": "O", "frame": 13, "at": 2843.672625 }, { "type": "O", "frame": 14, "at": 2843.672625 }, { "type": "O", "frame": 15, "at": 2843.672625 }, { "type": "O", "frame": 16, "at": 2843.672625 }, { "type": "O", "frame": 21, "at": 2843.672625 }, { "type": "O", "frame": 22, "at": 2843.672625 }, { "type": "O", "frame": 23, "at": 2843.672625 }, { "type": "O", "frame": 24, "at": 2843.672625 }, { "type": "O", "frame": 18, "at": 2843.672625 }, { "type": "C", "frame": 18, "at": 2851.7323746032716 }, { "type": "C", "frame": 24, "at": 2851.7323746032716 }, { "type": "C", "frame": 23, "at": 2851.7323746032716 }, { "type": "C", "frame": 22, "at": 2851.7323746032716 }, { "type": "C", "frame": 21, "at": 2851.7323746032716 }, { "type": "O", "frame": 17, "at": 2851.732375 }, { "type": "O", "frame": 18, "at": 2851.732375 }, { "type": "C", "frame": 18, "at": 2857.2292502861023 }, { "type": "C", "frame": 17, "at": 2857.2292502861023 }, { "type": "O", "frame": 19, "at": 2857.2292502861023 }, { "type": "O", "frame": 18, "at": 2857.2292502861023 }, { "type": "C", "frame": 18, "at": 2863.9379592399596 }, { "type": "C", "frame": 19, "at": 2863.9379592399596 }, { "type": "C", "frame": 16, "at": 2863.937960083008 }, { "type": "C", "frame": 15, "at": 2863.937960083008 }, { "type": "C", "frame": 14, "at": 2863.937960083008 }, { "type": "C", "frame": 13, "at": 2863.937960083008 }, { "type": "C", "frame": 12, "at": 2863.937960083008 }, { "type": "C", "frame": 11, "at": 2863.937960083008 }, { "type": "C", "frame": 10, "at": 2863.937960083008 }, { "type": "C", "frame": 9, "at": 2863.937960083008 }, { "type": "C", "frame": 8, "at": 2863.937960083008 }, { "type": "C", "frame": 20, "at": 2863.937960083008 }, { "type": "O", "frame": 6, "at": 2863.937960083008 }, { "type": "O", "frame": 27, "at": 2863.937960083008 }, { "type": "O", "frame": 18, "at": 2863.937960083008 }, { "type": "C", "frame": 18, "at": 2865.2903340305174 }, { "type": "C", "frame": 27, "at": 2865.2903340305174 }, { "type": "O", "frame": 7, "at": 2865.2903340305174 }, { "type": "O", "frame": 8, "at": 2865.2903340305174 }, { "type": "O", "frame": 9, "at": 2865.2903340305174 }, { "type": "O", "frame": 10, "at": 2865.2903340305174 }, { "type": "O", "frame": 11, "at": 2865.2903340305174 }, { "type": "O", "frame": 12, "at": 2865.2903340305174 }, { "type": "O", "frame": 13, "at": 2865.2903340305174 }, { "type": "O", "frame": 14, "at": 2865.2903340305174 }, { "type": "O", "frame": 15, "at": 2865.2903340305174 }, { "type": "O", "frame": 16, "at": 2865.2903340305174 }, { "type": "O", "frame": 21, "at": 2865.2903340305174 }, { "type": "O", "frame": 22, "at": 2865.2903340305174 }, { "type": "O", "frame": 23, "at": 2865.2903340305174 }, { "type": "O", "frame": 24, "at": 2865.2903340305174 }, { "type": "O", "frame": 18, "at": 2865.2903340305174 }, { "type": "C", "frame": 18, "at": 2873.364834083923 }, { "type": "C", "frame": 24, "at": 2873.364834083923 }, { "type": "C", "frame": 23, "at": 2873.364834083923 }, { "type": "C", "frame": 22, "at": 2873.364834083923 }, { "type": "C", "frame": 21, "at": 2873.364834083923 }, { "type": "O", "frame": 17, "at": 2873.364834083923 }, { "type": "O", "frame": 18, "at": 2873.364834083923 }, { "type": "C", "frame": 18, "at": 2877.4740840686645 }, { "type": "C", "frame": 17, "at": 2877.4740840686645 }, { "type": "O", "frame": 19, "at": 2877.4740840686645 }, { "type": "O", "frame": 18, "at": 2877.4740840686645 }, { "type": "C", "frame": 18, "at": 2880.1948751014556 }, { "type": "C", "frame": 19, "at": 2880.1948751014556 }, { "type": "C", "frame": 16, "at": 2880.1948751014556 }, { "type": "C", "frame": 15, "at": 2880.1948751014556 }, { "type": "C", "frame": 14, "at": 2880.1948751014556 }, { "type": "C", "frame": 13, "at": 2880.1948751014556 }, { "type": "C", "frame": 12, "at": 2880.1948751014556 }, { "type": "C", "frame": 11, "at": 2880.1948751014556 }, { "type": "C", "frame": 10, "at": 2880.1948751014556 }, { "type": "C", "frame": 9, "at": 2880.1948751014556 }, { "type": "C", "frame": 8, "at": 2880.1948751014556 }, { "type": "C", "frame": 7, "at": 2880.1948751014556 }, { "type": "C", "frame": 6, "at": 2880.1948751014556 }, { "type": "O", "frame": 20, "at": 2880.1948751014556 }, { "type": "O", "frame": 8, "at": 2880.1948751014556 }, { "type": "O", "frame": 9, "at": 2880.1948751014556 }, { "type": "O", "frame": 10, "at": 2880.1948751014556 }, { "type": "O", "frame": 11, "at": 2880.1948751014556 }, { "type": "O", "frame": 12, "at": 2880.1948751014556 }, { "type": "O", "frame": 13, "at": 2880.1948751014556 }, { "type": "O", "frame": 14, "at": 2880.1948751014556 }, { "type": "O", "frame": 15, "at": 2880.1948751014556 }, { "type": "O", "frame": 16, "at": 2880.1948751014556 }, { "type": "O", "frame": 21, "at": 2880.1948751014556 }, { "type": "O", "frame": 22, "at": 2880.1948751014556 }, { "type": "O", "frame": 23, "at": 2880.1948751014556 }, { "type": "O", "frame": 24, "at": 2880.1948751014556 }, { "type": "O", "frame": 18, "at": 2880.1948751014556 }, { "type": "C", "frame": 18, "at": 2889.597375152588 }, { "type": "C", "frame": 24, "at": 2889.597375152588 }, { "type": "C", "frame": 23, "at": 2889.597375152588 }, { "type": "C", "frame": 22, "at": 2889.597375152588 }, { "type": "C", "frame": 21, "at": 2889.597375152588 }, { "type": "O", "frame": 17, "at": 2889.597375152588 }, { "type": "O", "frame": 18, "at": 2889.597375152588 }, { "type": "C", "frame": 18, "at": 2893.720625007629 }, { "type": "C", "frame": 17, "at": 2893.720625007629 }, { "type": "O", "frame": 19, "at": 2893.720625007629 }, { "type": "O", "frame": 18, "at": 2893.720625007629 }, { "type": "C", "frame": 18, "at": 2901.7051249313354 }, { "type": "C", "frame": 19, "at": 2901.7051249313354 }, { "type": "C", "frame": 16, "at": 2901.7051269989015 }, { "type": "C", "frame": 15, "at": 2901.7051269989015 }, { "type": "C", "frame": 14, "at": 2901.7051269989015 }, { "type": "C", "frame": 13, "at": 2901.7051269989015 }, { "type": "C", "frame": 12, "at": 2901.7051269989015 }, { "type": "C", "frame": 11, "at": 2901.7051269989015 }, { "type": "C", "frame": 10, "at": 2901.7051269989015 }, { "type": "C", "frame": 9, "at": 2901.7051269989015 }, { "type": "C", "frame": 8, "at": 2901.7051269989015 }, { "type": "C", "frame": 20, "at": 2901.7051269989015 }, { "type": "O", "frame": 6, "at": 2901.7051269989015 }, { "type": "O", "frame": 7, "at": 2901.7051269989015 }, { "type": "O", "frame": 8, "at": 2901.7051269989015 }, { "type": "O", "frame": 9, "at": 2901.7051269989015 }, { "type": "O", "frame": 10, "at": 2901.7051269989015 }, { "type": "O", "frame": 11, "at": 2901.7051269989015 }, { "type": "O", "frame": 12, "at": 2901.7051269989015 }, { "type": "O", "frame": 13, "at": 2901.7051269989015 }, { "type": "O", "frame": 14, "at": 2901.7051269989015 }, { "type": "O", "frame": 15, "at": 2901.7051269989015 }, { "type": "O", "frame": 16, "at": 2901.7051269989015 }, { "type": "O", "frame": 21, "at": 2901.7051269989015 }, { "type": "O", "frame": 22, "at": 2901.7051269989015 }, { "type": "O", "frame": 23, "at": 2901.7051269989015 }, { "type": "O", "frame": 24, "at": 2901.7051269989015 }, { "type": "O", "frame": 18, "at": 2901.7051269989015 }, { "type": "C", "frame": 18, "at": 2909.77237525177 }, { "type": "C", "frame": 24, "at": 2909.77237525177 }, { "type": "C", "frame": 23, "at": 2909.77237525177 }, { "type": "C", "frame": 22, "at": 2909.77237525177 }, { "type": "C", "frame": 21, "at": 2909.77237525177 }, { "type": "O", "frame": 17, "at": 2909.77237525177 }, { "type": "O", "frame": 18, "at": 2909.77237525177 }, { "type": "C", "frame": 18, "at": 2915.246834171295 }, { "type": "C", "frame": 17, "at": 2915.246834171295 }, { "type": "O", "frame": 19, "at": 2915.246834171295 }, { "type": "O", "frame": 18, "at": 2915.246834171295 }, { "type": "C", "frame": 18, "at": 2916.5828339656678 }, { "type": "C", "frame": 19, "at": 2916.5828339656678 }, { "type": "C", "frame": 16, "at": 2916.5828339656678 }, { "type": "C", "frame": 15, "at": 2916.5828339656678 }, { "type": "C", "frame": 14, "at": 2916.5828339656678 }, { "type": "C", "frame": 13, "at": 2916.5828339656678 }, { "type": "C", "frame": 12, "at": 2916.5828339656678 }, { "type": "C", "frame": 11, "at": 2916.5828339656678 }, { "type": "C", "frame": 10, "at": 2916.5828339656678 }, { "type": "C", "frame": 9, "at": 2916.5828339656678 }, { "type": "C", "frame": 8, "at": 2916.5828339656678 }, { "type": "C", "frame": 7, "at": 2916.5828339656678 }, { "type": "C", "frame": 6, "at": 2916.5828339656678 }, { "type": "O", "frame": 20, "at": 2916.582834 }, { "type": "O", "frame": 8, "at": 2916.582834 }, { "type": "O", "frame": 9, "at": 2916.582834 }, { "type": "O", "frame": 10, "at": 2916.582834 }, { "type": "O", "frame": 11, "at": 2916.582834 }, { "type": "O", "frame": 12, "at": 2916.582834 }, { "type": "O", "frame": 13, "at": 2916.582834 }, { "type": "O", "frame": 14, "at": 2916.582834 }, { "type": "O", "frame": 15, "at": 2916.582834 }, { "type": "O", "frame": 16, "at": 2916.582834 }, { "type": "O", "frame": 21, "at": 2916.582834 }, { "type": "O", "frame": 22, "at": 2916.582834 }, { "type": "O", "frame": 23, "at": 2916.582834 }, { "type": "O", "frame": 24, "at": 2916.582834 }, { "type": "O", "frame": 18, "at": 2916.582834 }, { "type": "C", "frame": 18, "at": 2924.633917564758 }, { "type": "C", "frame": 24, "at": 2924.633917564758 }, { "type": "C", "frame": 23, "at": 2924.633917564758 }, { "type": "C", "frame": 22, "at": 2924.633917564758 }, { "type": "C", "frame": 21, "at": 2924.633917564758 }, { "type": "O", "frame": 17, "at": 2924.633917564758 }, { "type": "O", "frame": 18, "at": 2924.633917564758 }, { "type": "C", "frame": 18, "at": 2930.0916673204347 }, { "type": "C", "frame": 17, "at": 2930.0916673204347 }, { "type": "O", "frame": 19, "at": 2930.0916673204347 }, { "type": "O", "frame": 18, "at": 2930.0916673204347 }, { "type": "C", "frame": 18, "at": 2936.7461250459596 }, { "type": "C", "frame": 19, "at": 2936.7461250459596 }, { "type": "C", "frame": 16, "at": 2936.746127838501 }, { "type": "C", "frame": 15, "at": 2936.746127838501 }, { "type": "C", "frame": 14, "at": 2936.746127838501 }, { "type": "C", "frame": 13, "at": 2936.746127838501 }, { "type": "C", "frame": 12, "at": 2936.746127838501 }, { "type": "C", "frame": 11, "at": 2936.746127838501 }, { "type": "C", "frame": 10, "at": 2936.746127838501 }, { "type": "C", "frame": 9, "at": 2936.746127838501 }, { "type": "C", "frame": 8, "at": 2936.746127838501 }, { "type": "C", "frame": 20, "at": 2936.746127838501 }, { "type": "O", "frame": 6, "at": 2936.746127838501 }, { "type": "O", "frame": 7, "at": 2936.746127838501 }, { "type": "O", "frame": 8, "at": 2936.746127838501 }, { "type": "O", "frame": 9, "at": 2936.746127838501 }, { "type": "O", "frame": 10, "at": 2936.746127838501 }, { "type": "O", "frame": 11, "at": 2936.746127838501 }, { "type": "O", "frame": 12, "at": 2936.746127838501 }, { "type": "O", "frame": 13, "at": 2936.746127838501 }, { "type": "O", "frame": 14, "at": 2936.746127838501 }, { "type": "O", "frame": 15, "at": 2936.746127838501 }, { "type": "O", "frame": 16, "at": 2936.746127838501 }, { "type": "O", "frame": 21, "at": 2936.746127838501 }, { "type": "O", "frame": 22, "at": 2936.746127838501 }, { "type": "O", "frame": 23, "at": 2936.746127838501 }, { "type": "O", "frame": 24, "at": 2936.746127838501 }, { "type": "O", "frame": 18, "at": 2936.746127838501 }, { "type": "C", "frame": 18, "at": 2939.438625114441 }, { "type": "C", "frame": 24, "at": 2939.438625114441 }, { "type": "O", "frame": 25, "at": 2939.438625114441 }, { "type": "O", "frame": 18, "at": 2939.438625114441 }, { "type": "C", "frame": 18, "at": 2940.7863749485014 }, { "type": "C", "frame": 25, "at": 2940.7863749485014 }, { "type": "O", "frame": 24, "at": 2940.786375 }, { "type": "O", "frame": 18, "at": 2940.786375 }, { "type": "C", "frame": 18, "at": 2946.158083869934 }, { "type": "C", "frame": 24, "at": 2946.158083869934 }, { "type": "C", "frame": 23, "at": 2946.158083869934 }, { "type": "C", "frame": 22, "at": 2946.158083869934 }, { "type": "C", "frame": 21, "at": 2946.158083869934 }, { "type": "O", "frame": 17, "at": 2946.158084 }, { "type": "O", "frame": 18, "at": 2946.158084 }, { "type": "C", "frame": 18, "at": 2950.252499664673 }, { "type": "C", "frame": 17, "at": 2950.252499664673 }, { "type": "O", "frame": 19, "at": 2950.2525 }, { "type": "O", "frame": 18, "at": 2950.2525 }, { "type": "C", "frame": 18, "at": 2953.0036670589448 }, { "type": "C", "frame": 19, "at": 2953.0036670589448 }, { "type": "C", "frame": 16, "at": 2953.0036670589448 }, { "type": "C", "frame": 15, "at": 2953.0036670589448 }, { "type": "C", "frame": 14, "at": 2953.0036670589448 }, { "type": "C", "frame": 13, "at": 2953.0036670589448 }, { "type": "C", "frame": 12, "at": 2953.0036670589448 }, { "type": "C", "frame": 11, "at": 2953.0036670589448 }, { "type": "C", "frame": 10, "at": 2953.0036670589448 }, { "type": "C", "frame": 9, "at": 2953.0036670589448 }, { "type": "C", "frame": 8, "at": 2953.0036670589448 }, { "type": "C", "frame": 7, "at": 2953.0036670589448 }, { "type": "C", "frame": 6, "at": 2953.0036670589448 }, { "type": "O", "frame": 20, "at": 2953.0036670589448 }, { "type": "O", "frame": 8, "at": 2953.0036670589448 }, { "type": "O", "frame": 9, "at": 2953.0036670589448 }, { "type": "O", "frame": 10, "at": 2953.0036670589448 }, { "type": "O", "frame": 11, "at": 2953.0036670589448 }, { "type": "O", "frame": 12, "at": 2953.0036670589448 }, { "type": "O", "frame": 13, "at": 2953.0036670589448 }, { "type": "O", "frame": 14, "at": 2953.0036670589448 }, { "type": "O", "frame": 15, "at": 2953.0036670589448 }, { "type": "O", "frame": 16, "at": 2953.0036670589448 }, { "type": "O", "frame": 21, "at": 2953.0036670589448 }, { "type": "O", "frame": 22, "at": 2953.0036670589448 }, { "type": "O", "frame": 23, "at": 2953.0036670589448 }, { "type": "O", "frame": 24, "at": 2953.0036670589448 }, { "type": "O", "frame": 18, "at": 2953.0036670589448 }, { "type": "C", "frame": 18, "at": 2961.079417350952 }, { "type": "C", "frame": 24, "at": 2961.079417350952 }, { "type": "C", "frame": 23, "at": 2961.079417350952 }, { "type": "C", "frame": 22, "at": 2961.079417350952 }, { "type": "C", "frame": 21, "at": 2961.079417350952 }, { "type": "O", "frame": 17, "at": 2961.079417350952 }, { "type": "O", "frame": 18, "at": 2961.079417350952 }, { "type": "C", "frame": 18, "at": 2965.1718342401427 }, { "type": "C", "frame": 17, "at": 2965.1718342401427 }, { "type": "O", "frame": 19, "at": 2965.1718342401427 }, { "type": "O", "frame": 18, "at": 2965.1718342401427 }, { "type": "C", "frame": 18, "at": 2973.160542019257 }, { "type": "C", "frame": 19, "at": 2973.160542019257 }, { "type": "C", "frame": 16, "at": 2973.160542019257 }, { "type": "C", "frame": 15, "at": 2973.160542019257 }, { "type": "C", "frame": 14, "at": 2973.160542019257 }, { "type": "C", "frame": 13, "at": 2973.160542019257 }, { "type": "C", "frame": 12, "at": 2973.160542019257 }, { "type": "C", "frame": 11, "at": 2973.160542019257 }, { "type": "C", "frame": 10, "at": 2973.160542019257 }, { "type": "C", "frame": 9, "at": 2973.160542019257 }, { "type": "C", "frame": 8, "at": 2973.160542019257 }, { "type": "C", "frame": 20, "at": 2973.160542019257 }, { "type": "O", "frame": 6, "at": 2973.160542019257 }, { "type": "O", "frame": 7, "at": 2973.160542019257 }, { "type": "O", "frame": 8, "at": 2973.160542019257 }, { "type": "O", "frame": 9, "at": 2973.160542019257 }, { "type": "O", "frame": 10, "at": 2973.160542019257 }, { "type": "O", "frame": 11, "at": 2973.160542019257 }, { "type": "O", "frame": 12, "at": 2973.160542019257 }, { "type": "O", "frame": 13, "at": 2973.160542019257 }, { "type": "O", "frame": 14, "at": 2973.160542019257 }, { "type": "O", "frame": 15, "at": 2973.160542019257 }, { "type": "O", "frame": 16, "at": 2973.160542019257 }, { "type": "O", "frame": 21, "at": 2973.160542019257 }, { "type": "O", "frame": 22, "at": 2973.160542019257 }, { "type": "O", "frame": 23, "at": 2973.160542019257 }, { "type": "O", "frame": 29, "at": 2973.160542019257 }, { "type": "O", "frame": 18, "at": 2973.160542019257 }, { "type": "C", "frame": 18, "at": 2974.509166944687 }, { "type": "C", "frame": 29, "at": 2974.509166944687 }, { "type": "O", "frame": 24, "at": 2974.509167 }, { "type": "O", "frame": 18, "at": 2974.509167 }, { "type": "C", "frame": 18, "at": 2977.192833944504 }, { "type": "C", "frame": 24, "at": 2977.192833944504 }, { "type": "O", "frame": 25, "at": 2977.192834 }, { "type": "O", "frame": 18, "at": 2977.192834 }, { "type": "C", "frame": 18, "at": 2978.540834049591 }, { "type": "C", "frame": 25, "at": 2978.540834049591 }, { "type": "O", "frame": 24, "at": 2978.540834049591 }, { "type": "O", "frame": 18, "at": 2978.540834049591 }, { "type": "C", "frame": 18, "at": 2982.5663748287047 }, { "type": "C", "frame": 24, "at": 2982.5663748287047 }, { "type": "C", "frame": 23, "at": 2982.5663748287047 }, { "type": "C", "frame": 22, "at": 2982.5663748287047 }, { "type": "C", "frame": 21, "at": 2982.5663748287047 }, { "type": "O", "frame": 17, "at": 2982.566375 }, { "type": "O", "frame": 18, "at": 2982.566375 }, { "type": "C", "frame": 18, "at": 2986.652333957672 }, { "type": "C", "frame": 17, "at": 2986.652333957672 }, { "type": "O", "frame": 19, "at": 2986.652334 }, { "type": "O", "frame": 18, "at": 2986.652334 }, { "type": "C", "frame": 18, "at": 2994.695041443237 }, { "type": "C", "frame": 19, "at": 2994.695041443237 }, { "type": "C", "frame": 16, "at": 2994.695041443237 }, { "type": "C", "frame": 15, "at": 2994.695041443237 }, { "type": "C", "frame": 14, "at": 2994.695041443237 }, { "type": "C", "frame": 13, "at": 2994.695041443237 }, { "type": "C", "frame": 12, "at": 2994.695041443237 }, { "type": "C", "frame": 11, "at": 2994.695041443237 }, { "type": "C", "frame": 10, "at": 2994.695041443237 }, { "type": "C", "frame": 9, "at": 2994.695041443237 }, { "type": "C", "frame": 8, "at": 2994.695041443237 }, { "type": "C", "frame": 7, "at": 2994.695041443237 }, { "type": "C", "frame": 6, "at": 2994.695041443237 }, { "type": "O", "frame": 20, "at": 2994.695042 }, { "type": "O", "frame": 8, "at": 2994.695042 }, { "type": "O", "frame": 9, "at": 2994.695042 }, { "type": "O", "frame": 10, "at": 2994.695042 }, { "type": "O", "frame": 11, "at": 2994.695042 }, { "type": "O", "frame": 12, "at": 2994.695042 }, { "type": "O", "frame": 13, "at": 2994.695042 }, { "type": "O", "frame": 14, "at": 2994.695042 }, { "type": "O", "frame": 15, "at": 2994.695042 }, { "type": "O", "frame": 16, "at": 2994.695042 }, { "type": "O", "frame": 21, "at": 2994.695042 }, { "type": "O", "frame": 22, "at": 2994.695042 }, { "type": "O", "frame": 23, "at": 2994.695042 }, { "type": "O", "frame": 24, "at": 2994.695042 }, { "type": "O", "frame": 18, "at": 2994.695042 }, { "type": "C", "frame": 18, "at": 3002.7312911607664 }, { "type": "C", "frame": 24, "at": 3002.7312911607664 }, { "type": "C", "frame": 23, "at": 3002.7312911607664 }, { "type": "C", "frame": 22, "at": 3002.7312911607664 }, { "type": "C", "frame": 21, "at": 3002.7312911607664 }, { "type": "O", "frame": 17, "at": 3002.731292 }, { "type": "O", "frame": 18, "at": 3002.731292 }, { "type": "C", "frame": 18, "at": 3006.839959373657 }, { "type": "C", "frame": 17, "at": 3006.839959373657 }, { "type": "O", "frame": 19, "at": 3006.839959373657 }, { "type": "O", "frame": 18, "at": 3006.839959373657 }, { "type": "C", "frame": 18, "at": 3009.5142920955504 }, { "type": "C", "frame": 19, "at": 3009.5142920955504 }, { "type": "C", "frame": 16, "at": 3009.5142921068114 }, { "type": "C", "frame": 15, "at": 3009.5142921068114 }, { "type": "C", "frame": 14, "at": 3009.5142921068114 }, { "type": "C", "frame": 13, "at": 3009.5142921068114 }, { "type": "C", "frame": 12, "at": 3009.5142921068114 }, { "type": "C", "frame": 11, "at": 3009.5142921068114 }, { "type": "C", "frame": 10, "at": 3009.5142921068114 }, { "type": "C", "frame": 9, "at": 3009.5142921068114 }, { "type": "C", "frame": 8, "at": 3009.5142921068114 }, { "type": "C", "frame": 20, "at": 3009.5142921068114 }, { "type": "O", "frame": 6, "at": 3009.5142921068114 }, { "type": "O", "frame": 7, "at": 3009.5142921068114 }, { "type": "O", "frame": 8, "at": 3009.5142921068114 }, { "type": "O", "frame": 9, "at": 3009.5142921068114 }, { "type": "O", "frame": 10, "at": 3009.5142921068114 }, { "type": "O", "frame": 11, "at": 3009.5142921068114 }, { "type": "O", "frame": 12, "at": 3009.5142921068114 }, { "type": "O", "frame": 13, "at": 3009.5142921068114 }, { "type": "O", "frame": 14, "at": 3009.5142921068114 }, { "type": "O", "frame": 15, "at": 3009.5142921068114 }, { "type": "O", "frame": 16, "at": 3009.5142921068114 }, { "type": "O", "frame": 21, "at": 3009.5142921068114 }, { "type": "O", "frame": 22, "at": 3009.5142921068114 }, { "type": "O", "frame": 23, "at": 3009.5142921068114 }, { "type": "O", "frame": 24, "at": 3009.5142921068114 }, { "type": "O", "frame": 18, "at": 3009.5142921068114 }, { "type": "C", "frame": 18, "at": 3017.574625251953 }, { "type": "C", "frame": 24, "at": 3017.574625251953 }, { "type": "C", "frame": 23, "at": 3017.574625251953 }, { "type": "C", "frame": 22, "at": 3017.574625251953 }, { "type": "C", "frame": 21, "at": 3017.574625251953 }, { "type": "O", "frame": 17, "at": 3017.574625251953 }, { "type": "O", "frame": 18, "at": 3017.574625251953 }, { "type": "C", "frame": 18, "at": 3021.6640839424135 }, { "type": "C", "frame": 17, "at": 3021.6640839424135 }, { "type": "O", "frame": 19, "at": 3021.664084 }, { "type": "O", "frame": 18, "at": 3021.664084 }, { "type": "C", "frame": 18, "at": 3029.643667263397 }, { "type": "C", "frame": 19, "at": 3029.643667263397 }, { "type": "C", "frame": 16, "at": 3029.643667263397 }, { "type": "C", "frame": 15, "at": 3029.643667263397 }, { "type": "C", "frame": 14, "at": 3029.643667263397 }, { "type": "C", "frame": 13, "at": 3029.643667263397 }, { "type": "C", "frame": 12, "at": 3029.643667263397 }, { "type": "C", "frame": 11, "at": 3029.643667263397 }, { "type": "C", "frame": 10, "at": 3029.643667263397 }, { "type": "C", "frame": 9, "at": 3029.643667263397 }, { "type": "C", "frame": 8, "at": 3029.643667263397 }, { "type": "C", "frame": 7, "at": 3029.643667263397 }, { "type": "C", "frame": 6, "at": 3029.643667263397 }, { "type": "O", "frame": 20, "at": 3029.643667263397 }, { "type": "O", "frame": 8, "at": 3029.643667263397 }, { "type": "O", "frame": 9, "at": 3029.643667263397 }, { "type": "O", "frame": 10, "at": 3029.643667263397 }, { "type": "O", "frame": 11, "at": 3029.643667263397 }, { "type": "O", "frame": 12, "at": 3029.643667263397 }, { "type": "O", "frame": 13, "at": 3029.643667263397 }, { "type": "O", "frame": 14, "at": 3029.643667263397 }, { "type": "O", "frame": 15, "at": 3029.643667263397 }, { "type": "O", "frame": 16, "at": 3029.643667263397 }, { "type": "O", "frame": 21, "at": 3029.643667263397 }, { "type": "O", "frame": 22, "at": 3029.643667263397 }, { "type": "O", "frame": 23, "at": 3029.643667263397 }, { "type": "O", "frame": 24, "at": 3029.643667263397 }, { "type": "O", "frame": 18, "at": 3029.643667263397 }, { "type": "C", "frame": 18, "at": 3039.028499382202 }, { "type": "C", "frame": 24, "at": 3039.028499382202 }, { "type": "C", "frame": 23, "at": 3039.028499382202 }, { "type": "C", "frame": 22, "at": 3039.028499382202 }, { "type": "C", "frame": 21, "at": 3039.028499382202 }, { "type": "O", "frame": 17, "at": 3039.0285 }, { "type": "O", "frame": 18, "at": 3039.0285 }, { "type": "C", "frame": 18, "at": 3043.1315836105346 }, { "type": "C", "frame": 17, "at": 3043.1315836105346 }, { "type": "O", "frame": 19, "at": 3043.131584 }, { "type": "O", "frame": 18, "at": 3043.131584 }, { "type": "C", "frame": 18, "at": 3044.473084043869 }, { "type": "C", "frame": 19, "at": 3044.473084043869 }, { "type": "C", "frame": 16, "at": 3044.473084043869 }, { "type": "C", "frame": 15, "at": 3044.473084043869 }, { "type": "C", "frame": 14, "at": 3044.473084043869 }, { "type": "C", "frame": 13, "at": 3044.473084043869 }, { "type": "C", "frame": 12, "at": 3044.473084043869 }, { "type": "C", "frame": 11, "at": 3044.473084043869 }, { "type": "C", "frame": 10, "at": 3044.473084043869 }, { "type": "C", "frame": 9, "at": 3044.473084043869 }, { "type": "C", "frame": 8, "at": 3044.473084043869 }, { "type": "C", "frame": 20, "at": 3044.473084043869 }, { "type": "O", "frame": 6, "at": 3044.473084043869 }, { "type": "O", "frame": 27, "at": 3044.473084043869 }, { "type": "O", "frame": 18, "at": 3044.473084043869 }, { "type": "C", "frame": 18, "at": 3045.8382089408724 }, { "type": "C", "frame": 27, "at": 3045.8382089408724 }, { "type": "O", "frame": 7, "at": 3045.838209 }, { "type": "O", "frame": 8, "at": 3045.838209 }, { "type": "O", "frame": 9, "at": 3045.838209 }, { "type": "O", "frame": 10, "at": 3045.838209 }, { "type": "O", "frame": 11, "at": 3045.838209 }, { "type": "O", "frame": 12, "at": 3045.838209 }, { "type": "O", "frame": 13, "at": 3045.838209 }, { "type": "O", "frame": 14, "at": 3045.838209 }, { "type": "O", "frame": 15, "at": 3045.838209 }, { "type": "O", "frame": 16, "at": 3045.838209 }, { "type": "O", "frame": 21, "at": 3045.838209 }, { "type": "O", "frame": 22, "at": 3045.838209 }, { "type": "O", "frame": 23, "at": 3045.838209 }, { "type": "O", "frame": 24, "at": 3045.838209 }, { "type": "O", "frame": 18, "at": 3045.838209 }, { "type": "C", "frame": 18, "at": 3051.203667011627 }, { "type": "C", "frame": 24, "at": 3051.203667011627 }, { "type": "O", "frame": 31, "at": 3051.203667011627 }, { "type": "O", "frame": 18, "at": 3051.203667011627 }, { "type": "C", "frame": 18, "at": 3052.5506250411913 }, { "type": "C", "frame": 31, "at": 3052.5506250411913 }, { "type": "O", "frame": 24, "at": 3052.5506250411913 }, { "type": "O", "frame": 18, "at": 3052.5506250411913 }, { "type": "C", "frame": 18, "at": 3053.9134170150755 }, { "type": "C", "frame": 24, "at": 3053.9134170150755 }, { "type": "C", "frame": 23, "at": 3053.9134176639404 }, { "type": "C", "frame": 22, "at": 3053.9134176639404 }, { "type": "C", "frame": 21, "at": 3053.9134176639404 }, { "type": "O", "frame": 17, "at": 3053.9134176639404 }, { "type": "O", "frame": 18, "at": 3053.9134176639404 }, { "type": "C", "frame": 18, "at": 3058.0207921449587 }, { "type": "C", "frame": 17, "at": 3058.0207921449587 }, { "type": "O", "frame": 19, "at": 3058.0207921449587 }, { "type": "O", "frame": 18, "at": 3058.0207921449587 }, { "type": "C", "frame": 18, "at": 3066.006999962036 }, { "type": "C", "frame": 19, "at": 3066.006999962036 }, { "type": "C", "frame": 16, "at": 3066.0070017246094 }, { "type": "C", "frame": 15, "at": 3066.0070017246094 }, { "type": "C", "frame": 14, "at": 3066.0070017246094 }, { "type": "C", "frame": 13, "at": 3066.0070017246094 }, { "type": "C", "frame": 12, "at": 3066.0070017246094 }, { "type": "C", "frame": 11, "at": 3066.0070017246094 }, { "type": "C", "frame": 10, "at": 3066.0070017246094 }, { "type": "C", "frame": 9, "at": 3066.0070017246094 }, { "type": "C", "frame": 8, "at": 3066.0070017246094 }, { "type": "C", "frame": 7, "at": 3066.0070017246094 }, { "type": "C", "frame": 6, "at": 3066.0070017246094 }, { "type": "O", "frame": 20, "at": 3066.0070017246094 }, { "type": "O", "frame": 8, "at": 3066.0070017246094 }, { "type": "O", "frame": 9, "at": 3066.0070017246094 }, { "type": "O", "frame": 10, "at": 3066.0070017246094 }, { "type": "O", "frame": 11, "at": 3066.0070017246094 }, { "type": "O", "frame": 12, "at": 3066.0070017246094 }, { "type": "O", "frame": 13, "at": 3066.0070017246094 }, { "type": "O", "frame": 14, "at": 3066.0070017246094 }, { "type": "O", "frame": 15, "at": 3066.0070017246094 }, { "type": "O", "frame": 16, "at": 3066.0070017246094 }, { "type": "O", "frame": 21, "at": 3066.0070017246094 }, { "type": "O", "frame": 22, "at": 3066.0070017246094 }, { "type": "O", "frame": 23, "at": 3066.0070017246094 }, { "type": "O", "frame": 24, "at": 3066.0070017246094 }, { "type": "O", "frame": 18, "at": 3066.0070017246094 }, { "type": "C", "frame": 18, "at": 3074.0690002746583 }, { "type": "C", "frame": 24, "at": 3074.0690002746583 }, { "type": "C", "frame": 23, "at": 3074.0690002746583 }, { "type": "C", "frame": 22, "at": 3074.0690002746583 }, { "type": "C", "frame": 21, "at": 3074.0690002746583 }, { "type": "O", "frame": 17, "at": 3074.0690002746583 }, { "type": "O", "frame": 18, "at": 3074.0690002746583 }, { "type": "C", "frame": 18, "at": 3079.5253751220703 }, { "type": "C", "frame": 17, "at": 3079.5253751220703 }, { "type": "O", "frame": 19, "at": 3079.5253751220703 }, { "type": "O", "frame": 18, "at": 3079.5253751220703 }, { "type": "C", "frame": 18, "at": 3080.861708990097 }, { "type": "C", "frame": 19, "at": 3080.861708990097 }, { "type": "C", "frame": 16, "at": 3080.861708990097 }, { "type": "C", "frame": 15, "at": 3080.861708990097 }, { "type": "C", "frame": 14, "at": 3080.861708990097 }, { "type": "C", "frame": 13, "at": 3080.861708990097 }, { "type": "C", "frame": 12, "at": 3080.861708990097 }, { "type": "C", "frame": 11, "at": 3080.861708990097 }, { "type": "C", "frame": 10, "at": 3080.861708990097 }, { "type": "C", "frame": 9, "at": 3080.861708990097 }, { "type": "C", "frame": 8, "at": 3080.861708990097 }, { "type": "C", "frame": 20, "at": 3080.861708990097 }, { "type": "O", "frame": 6, "at": 3080.861709 }, { "type": "O", "frame": 7, "at": 3080.861709 }, { "type": "O", "frame": 8, "at": 3080.861709 }, { "type": "O", "frame": 9, "at": 3080.861709 }, { "type": "O", "frame": 10, "at": 3080.861709 }, { "type": "O", "frame": 11, "at": 3080.861709 }, { "type": "O", "frame": 12, "at": 3080.861709 }, { "type": "O", "frame": 13, "at": 3080.861709 }, { "type": "O", "frame": 14, "at": 3080.861709 }, { "type": "O", "frame": 15, "at": 3080.861709 }, { "type": "O", "frame": 16, "at": 3080.861709 }, { "type": "O", "frame": 21, "at": 3080.861709 }, { "type": "O", "frame": 22, "at": 3080.861709 }, { "type": "O", "frame": 23, "at": 3080.861709 }, { "type": "O", "frame": 24, "at": 3080.861709 }, { "type": "O", "frame": 18, "at": 3080.861709 }, { "type": "C", "frame": 18, "at": 3083.5557919753874 }, { "type": "C", "frame": 24, "at": 3083.5557919753874 }, { "type": "O", "frame": 31, "at": 3083.555792 }, { "type": "O", "frame": 18, "at": 3083.555792 }, { "type": "C", "frame": 18, "at": 3084.8980419895097 }, { "type": "C", "frame": 31, "at": 3084.8980419895097 }, { "type": "O", "frame": 24, "at": 3084.898042 }, { "type": "O", "frame": 18, "at": 3084.898042 }, { "type": "C", "frame": 18, "at": 3090.2951672441404 }, { "type": "C", "frame": 24, "at": 3090.2951672441404 }, { "type": "C", "frame": 23, "at": 3090.295167328247 }, { "type": "C", "frame": 22, "at": 3090.295167328247 }, { "type": "C", "frame": 21, "at": 3090.295167328247 }, { "type": "O", "frame": 17, "at": 3090.295167328247 }, { "type": "O", "frame": 18, "at": 3090.295167328247 }, { "type": "C", "frame": 18, "at": 3094.3725843736574 }, { "type": "C", "frame": 17, "at": 3094.3725843736574 }, { "type": "O", "frame": 19, "at": 3094.3725843736574 }, { "type": "O", "frame": 18, "at": 3094.3725843736574 }, { "type": "C", "frame": 18, "at": 3102.3291670230715 }, { "type": "C", "frame": 19, "at": 3102.3291670230715 }, { "type": "C", "frame": 16, "at": 3102.3291670230715 }, { "type": "C", "frame": 15, "at": 3102.3291670230715 }, { "type": "C", "frame": 14, "at": 3102.3291670230715 }, { "type": "C", "frame": 13, "at": 3102.3291670230715 }, { "type": "C", "frame": 12, "at": 3102.3291670230715 }, { "type": "C", "frame": 11, "at": 3102.3291670230715 }, { "type": "C", "frame": 10, "at": 3102.3291670230715 }, { "type": "C", "frame": 9, "at": 3102.3291670230715 }, { "type": "C", "frame": 8, "at": 3102.3291670230715 }, { "type": "C", "frame": 7, "at": 3102.3291670230715 }, { "type": "C", "frame": 6, "at": 3102.3291670230715 }, { "type": "O", "frame": 20, "at": 3102.3291670230715 }, { "type": "O", "frame": 8, "at": 3102.3291670230715 }, { "type": "O", "frame": 9, "at": 3102.3291670230715 }, { "type": "O", "frame": 10, "at": 3102.3291670230715 }, { "type": "O", "frame": 11, "at": 3102.3291670230715 }, { "type": "O", "frame": 12, "at": 3102.3291670230715 }, { "type": "O", "frame": 13, "at": 3102.3291670230715 }, { "type": "O", "frame": 14, "at": 3102.3291670230715 }, { "type": "O", "frame": 15, "at": 3102.3291670230715 }, { "type": "O", "frame": 16, "at": 3102.3291670230715 }, { "type": "O", "frame": 21, "at": 3102.3291670230715 }, { "type": "O", "frame": 22, "at": 3102.3291670230715 }, { "type": "O", "frame": 23, "at": 3102.3291670230715 }, { "type": "O", "frame": 24, "at": 3102.3291670230715 }, { "type": "O", "frame": 18, "at": 3102.3291670230715 }, { "type": "C", "frame": 18, "at": 3105.0092919980925 }, { "type": "C", "frame": 24, "at": 3105.0092919980925 }, { "type": "O", "frame": 25, "at": 3105.009292 }, { "type": "O", "frame": 18, "at": 3105.009292 }, { "type": "C", "frame": 18, "at": 3106.3468340570375 }, { "type": "C", "frame": 25, "at": 3106.3468340570375 }, { "type": "O", "frame": 24, "at": 3106.3468340570375 }, { "type": "O", "frame": 18, "at": 3106.3468340570375 }, { "type": "C", "frame": 18, "at": 3110.383708771118 }, { "type": "C", "frame": 24, "at": 3110.383708771118 }, { "type": "C", "frame": 23, "at": 3110.383709541504 }, { "type": "C", "frame": 22, "at": 3110.383709541504 }, { "type": "C", "frame": 21, "at": 3110.383709541504 }, { "type": "O", "frame": 17, "at": 3110.383709541504 }, { "type": "O", "frame": 18, "at": 3110.383709541504 }, { "type": "C", "frame": 18, "at": 3115.8334169849245 }, { "type": "C", "frame": 17, "at": 3115.8334169849245 }, { "type": "O", "frame": 19, "at": 3115.833417 }, { "type": "O", "frame": 18, "at": 3115.833417 }, { "type": "C", "frame": 18, "at": 3117.1753750459593 }, { "type": "C", "frame": 19, "at": 3117.1753750459593 }, { "type": "C", "frame": 16, "at": 3117.1753755723876 }, { "type": "C", "frame": 15, "at": 3117.1753755723876 }, { "type": "C", "frame": 14, "at": 3117.1753755723876 }, { "type": "C", "frame": 13, "at": 3117.1753755723876 }, { "type": "C", "frame": 12, "at": 3117.1753755723876 }, { "type": "C", "frame": 11, "at": 3117.1753755723876 }, { "type": "C", "frame": 10, "at": 3117.1753755723876 }, { "type": "C", "frame": 9, "at": 3117.1753755723876 }, { "type": "C", "frame": 8, "at": 3117.1753755723876 }, { "type": "C", "frame": 20, "at": 3117.1753755723876 }, { "type": "O", "frame": 6, "at": 3117.1753755723876 }, { "type": "O", "frame": 7, "at": 3117.1753755723876 }, { "type": "O", "frame": 8, "at": 3117.1753755723876 }, { "type": "O", "frame": 9, "at": 3117.1753755723876 }, { "type": "O", "frame": 10, "at": 3117.1753755723876 }, { "type": "O", "frame": 11, "at": 3117.1753755723876 }, { "type": "O", "frame": 12, "at": 3117.1753755723876 }, { "type": "O", "frame": 13, "at": 3117.1753755723876 }, { "type": "O", "frame": 14, "at": 3117.1753755723876 }, { "type": "O", "frame": 15, "at": 3117.1753755723876 }, { "type": "O", "frame": 16, "at": 3117.1753755723876 }, { "type": "O", "frame": 21, "at": 3117.1753755723876 }, { "type": "O", "frame": 22, "at": 3117.1753755723876 }, { "type": "O", "frame": 23, "at": 3117.1753755723876 }, { "type": "O", "frame": 24, "at": 3117.1753755723876 }, { "type": "O", "frame": 18, "at": 3117.1753755723876 }, { "type": "C", "frame": 18, "at": 3121.2046251449583 }, { "type": "C", "frame": 24, "at": 3121.2046251449583 }, { "type": "O", "frame": 28, "at": 3121.2046251449583 }, { "type": "O", "frame": 18, "at": 3121.2046251449583 }, { "type": "C", "frame": 18, "at": 3122.5580840005873 }, { "type": "C", "frame": 28, "at": 3122.5580840005873 }, { "type": "O", "frame": 24, "at": 3122.5580840005873 }, { "type": "O", "frame": 18, "at": 3122.5580840005873 }, { "type": "C", "frame": 18, "at": 3127.024624813446 }, { "type": "C", "frame": 24, "at": 3127.024624813446 }, { "type": "C", "frame": 23, "at": 3127.0246248397825 }, { "type": "C", "frame": 22, "at": 3127.0246248397825 }, { "type": "C", "frame": 21, "at": 3127.0246248397825 }, { "type": "O", "frame": 17, "at": 3127.024625 }, { "type": "O", "frame": 18, "at": 3127.024625 }, { "type": "C", "frame": 18, "at": 3132.624583896637 }, { "type": "C", "frame": 17, "at": 3132.624583896637 }, { "type": "O", "frame": 19, "at": 3132.624584 }, { "type": "O", "frame": 18, "at": 3132.624584 }, { "type": "C", "frame": 18, "at": 3139.2980420993654 }, { "type": "C", "frame": 19, "at": 3139.2980420993654 }, { "type": "C", "frame": 16, "at": 3139.2980442199705 }, { "type": "C", "frame": 15, "at": 3139.2980442199705 }, { "type": "C", "frame": 14, "at": 3139.2980442199705 }, { "type": "C", "frame": 13, "at": 3139.2980442199705 }, { "type": "C", "frame": 12, "at": 3139.2980442199705 }, { "type": "C", "frame": 11, "at": 3139.2980442199705 }, { "type": "C", "frame": 10, "at": 3139.2980442199705 }, { "type": "C", "frame": 9, "at": 3139.2980442199705 }, { "type": "C", "frame": 8, "at": 3139.2980442199705 }, { "type": "C", "frame": 7, "at": 3139.2980442199705 }, { "type": "C", "frame": 6, "at": 3139.2980442199705 }, { "type": "O", "frame": 20, "at": 3139.2980442199705 }, { "type": "O", "frame": 8, "at": 3139.2980442199705 }, { "type": "O", "frame": 9, "at": 3139.2980442199705 }, { "type": "O", "frame": 10, "at": 3139.2980442199705 }, { "type": "O", "frame": 11, "at": 3139.2980442199705 }, { "type": "O", "frame": 12, "at": 3139.2980442199705 }, { "type": "O", "frame": 13, "at": 3139.2980442199705 }, { "type": "O", "frame": 14, "at": 3139.2980442199705 }, { "type": "O", "frame": 15, "at": 3139.2980442199705 }, { "type": "O", "frame": 16, "at": 3139.2980442199705 }, { "type": "O", "frame": 21, "at": 3139.2980442199705 }, { "type": "O", "frame": 22, "at": 3139.2980442199705 }, { "type": "O", "frame": 23, "at": 3139.2980442199705 }, { "type": "O", "frame": 24, "at": 3139.2980442199705 }, { "type": "O", "frame": 18, "at": 3139.2980442199705 }, { "type": "C", "frame": 18, "at": 3146.016584098999 }, { "type": "C", "frame": 24, "at": 3146.016584098999 }, { "type": "O", "frame": 31, "at": 3146.016584098999 }, { "type": "O", "frame": 18, "at": 3146.016584098999 }, { "type": "C", "frame": 18, "at": 3147.3606249898758 }, { "type": "C", "frame": 31, "at": 3147.3606249898758 }, { "type": "O", "frame": 24, "at": 3147.360625 }, { "type": "O", "frame": 18, "at": 3147.360625 }, { "type": "C", "frame": 18, "at": 3148.720625014305 }, { "type": "C", "frame": 24, "at": 3148.720625014305 }, { "type": "C", "frame": 23, "at": 3148.720625014305 }, { "type": "C", "frame": 22, "at": 3148.720625014305 }, { "type": "C", "frame": 21, "at": 3148.720625014305 }, { "type": "O", "frame": 17, "at": 3148.720625014305 }, { "type": "O", "frame": 18, "at": 3148.720625014305 }, { "type": "C", "frame": 18, "at": 3152.8415842819213 }, { "type": "C", "frame": 17, "at": 3152.8415842819213 }, { "type": "O", "frame": 19, "at": 3152.8415842819213 }, { "type": "O", "frame": 18, "at": 3152.8415842819213 }, { "type": "C", "frame": 18, "at": 3155.575374874481 }, { "type": "C", "frame": 19, "at": 3155.575374874481 }, { "type": "C", "frame": 16, "at": 3155.575374874481 }, { "type": "C", "frame": 15, "at": 3155.575374874481 }, { "type": "C", "frame": 14, "at": 3155.575374874481 }, { "type": "C", "frame": 13, "at": 3155.575374874481 }, { "type": "C", "frame": 12, "at": 3155.575374874481 }, { "type": "C", "frame": 11, "at": 3155.575374874481 }, { "type": "C", "frame": 10, "at": 3155.575374874481 }, { "type": "C", "frame": 9, "at": 3155.575374874481 }, { "type": "C", "frame": 8, "at": 3155.575374874481 }, { "type": "C", "frame": 20, "at": 3155.575374874481 }, { "type": "O", "frame": 6, "at": 3155.575375 }, { "type": "O", "frame": 7, "at": 3155.575375 }, { "type": "O", "frame": 8, "at": 3155.575375 }, { "type": "O", "frame": 9, "at": 3155.575375 }, { "type": "O", "frame": 10, "at": 3155.575375 }, { "type": "O", "frame": 11, "at": 3155.575375 }, { "type": "O", "frame": 12, "at": 3155.575375 }, { "type": "O", "frame": 13, "at": 3155.575375 }, { "type": "O", "frame": 14, "at": 3155.575375 }, { "type": "O", "frame": 15, "at": 3155.575375 }, { "type": "O", "frame": 16, "at": 3155.575375 }, { "type": "O", "frame": 21, "at": 3155.575375 }, { "type": "O", "frame": 22, "at": 3155.575375 }, { "type": "O", "frame": 23, "at": 3155.575375 }, { "type": "O", "frame": 24, "at": 3155.575375 }, { "type": "O", "frame": 18, "at": 3155.575375 }, { "type": "C", "frame": 18, "at": 3159.6013340148925 }, { "type": "C", "frame": 24, "at": 3159.6013340148925 }, { "type": "O", "frame": 29, "at": 3159.6013340148925 }, { "type": "O", "frame": 18, "at": 3159.6013340148925 }, { "type": "C", "frame": 18, "at": 3160.9461250547256 }, { "type": "C", "frame": 29, "at": 3160.9461250547256 }, { "type": "O", "frame": 24, "at": 3160.9461250547256 }, { "type": "O", "frame": 18, "at": 3160.9461250547256 }, { "type": "C", "frame": 18, "at": 3163.659084051132 }, { "type": "C", "frame": 24, "at": 3163.659084051132 }, { "type": "C", "frame": 23, "at": 3163.659084051132 }, { "type": "C", "frame": 22, "at": 3163.659084051132 }, { "type": "C", "frame": 21, "at": 3163.659084051132 }, { "type": "O", "frame": 17, "at": 3163.659084051132 }, { "type": "O", "frame": 18, "at": 3163.659084051132 }, { "type": "C", "frame": 18, "at": 3169.135625042328 }, { "type": "C", "frame": 17, "at": 3169.135625042328 }, { "type": "O", "frame": 19, "at": 3169.135625042328 }, { "type": "O", "frame": 18, "at": 3169.135625042328 }, { "type": "C", "frame": 18, "at": 3175.805791492462 }, { "type": "C", "frame": 19, "at": 3175.805791492462 }, { "type": "C", "frame": 16, "at": 3175.805792251587 }, { "type": "C", "frame": 15, "at": 3175.805792251587 }, { "type": "C", "frame": 14, "at": 3175.805792251587 }, { "type": "C", "frame": 13, "at": 3175.805792251587 }, { "type": "C", "frame": 12, "at": 3175.805792251587 }, { "type": "C", "frame": 11, "at": 3175.805792251587 }, { "type": "C", "frame": 10, "at": 3175.805792251587 }, { "type": "C", "frame": 9, "at": 3175.805792251587 }, { "type": "C", "frame": 8, "at": 3175.805792251587 }, { "type": "C", "frame": 7, "at": 3175.805792251587 }, { "type": "C", "frame": 6, "at": 3175.805792251587 }, { "type": "O", "frame": 20, "at": 3175.805792251587 }, { "type": "O", "frame": 18, "at": 3175.805792251587 }, { "type": "C", "frame": 18, "at": 3177.1481670400544 }, { "type": "O", "frame": 8, "at": 3177.1481670400544 }, { "type": "O", "frame": 9, "at": 3177.1481670400544 }, { "type": "O", "frame": 10, "at": 3177.1481670400544 }, { "type": "O", "frame": 11, "at": 3177.1481670400544 }, { "type": "O", "frame": 12, "at": 3177.1481670400544 }, { "type": "O", "frame": 13, "at": 3177.1481670400544 }, { "type": "O", "frame": 14, "at": 3177.1481670400544 }, { "type": "O", "frame": 15, "at": 3177.1481670400544 }, { "type": "O", "frame": 16, "at": 3177.1481670400544 }, { "type": "O", "frame": 21, "at": 3177.1481670400544 }, { "type": "O", "frame": 22, "at": 3177.1481670400544 }, { "type": "O", "frame": 23, "at": 3177.1481670400544 }, { "type": "O", "frame": 24, "at": 3177.1481670400544 }, { "type": "O", "frame": 18, "at": 3177.1481670400544 }, { "type": "C", "frame": 18, "at": 3178.495458946411 }, { "type": "C", "frame": 24, "at": 3178.495458946411 }, { "type": "O", "frame": 38, "at": 3178.495459 }, { "type": "O", "frame": 18, "at": 3178.495459 }, { "type": "C", "frame": 18, "at": 3179.8371249832003 }, { "type": "C", "frame": 38, "at": 3179.8371249832003 }, { "type": "O", "frame": 24, "at": 3179.837125 }, { "type": "O", "frame": 18, "at": 3179.837125 }, { "type": "C", "frame": 18, "at": 3185.2097088661194 }, { "type": "C", "frame": 24, "at": 3185.2097088661194 }, { "type": "C", "frame": 23, "at": 3185.2097088661194 }, { "type": "C", "frame": 22, "at": 3185.2097088661194 }, { "type": "C", "frame": 21, "at": 3185.2097088661194 }, { "type": "O", "frame": 17, "at": 3185.209709 }, { "type": "O", "frame": 18, "at": 3185.209709 }, { "type": "C", "frame": 18, "at": 3189.306834053406 }, { "type": "C", "frame": 17, "at": 3189.306834053406 }, { "type": "O", "frame": 19, "at": 3189.306834053406 }, { "type": "O", "frame": 18, "at": 3189.306834053406 }, { "type": "C", "frame": 18, "at": 3192.0032088931885 }, { "type": "C", "frame": 19, "at": 3192.0032088931885 }, { "type": "C", "frame": 16, "at": 3192.0032088931885 }, { "type": "C", "frame": 15, "at": 3192.0032088931885 }, { "type": "C", "frame": 14, "at": 3192.0032088931885 }, { "type": "C", "frame": 13, "at": 3192.0032088931885 }, { "type": "C", "frame": 12, "at": 3192.0032088931885 }, { "type": "C", "frame": 11, "at": 3192.0032088931885 }, { "type": "C", "frame": 10, "at": 3192.0032088931885 }, { "type": "C", "frame": 9, "at": 3192.0032088931885 }, { "type": "C", "frame": 8, "at": 3192.0032088931885 }, { "type": "C", "frame": 20, "at": 3192.0032102128907 }, { "type": "O", "frame": 6, "at": 3192.0032102128907 }, { "type": "O", "frame": 7, "at": 3192.0032102128907 }, { "type": "O", "frame": 8, "at": 3192.0032102128907 }, { "type": "O", "frame": 9, "at": 3192.0032102128907 }, { "type": "O", "frame": 10, "at": 3192.0032102128907 }, { "type": "O", "frame": 11, "at": 3192.0032102128907 }, { "type": "O", "frame": 12, "at": 3192.0032102128907 }, { "type": "O", "frame": 13, "at": 3192.0032102128907 }, { "type": "O", "frame": 14, "at": 3192.0032102128907 }, { "type": "O", "frame": 15, "at": 3192.0032102128907 }, { "type": "O", "frame": 16, "at": 3192.0032102128907 }, { "type": "O", "frame": 21, "at": 3192.0032102128907 }, { "type": "O", "frame": 22, "at": 3192.0032102128907 }, { "type": "O", "frame": 23, "at": 3192.0032102128907 }, { "type": "O", "frame": 24, "at": 3192.0032102128907 }, { "type": "O", "frame": 18, "at": 3192.0032102128907 }, { "type": "C", "frame": 18, "at": 3200.0768746188965 }, { "type": "C", "frame": 24, "at": 3200.0768746188965 }, { "type": "C", "frame": 23, "at": 3200.0768746188965 }, { "type": "C", "frame": 22, "at": 3200.0768746188965 }, { "type": "C", "frame": 21, "at": 3200.0768746188965 }, { "type": "O", "frame": 17, "at": 3200.076875 }, { "type": "O", "frame": 18, "at": 3200.076875 }, { "type": "C", "frame": 18, "at": 3204.1997502136232 }, { "type": "C", "frame": 17, "at": 3204.1997502136232 }, { "type": "O", "frame": 19, "at": 3204.1997502136232 }, { "type": "O", "frame": 18, "at": 3204.1997502136232 }, { "type": "C", "frame": 18, "at": 3212.2017918167116 }, { "type": "C", "frame": 19, "at": 3212.2017918167116 }, { "type": "C", "frame": 16, "at": 3212.2017926029052 }, { "type": "C", "frame": 15, "at": 3212.2017926029052 }, { "type": "C", "frame": 14, "at": 3212.2017926029052 }, { "type": "C", "frame": 13, "at": 3212.2017926029052 }, { "type": "C", "frame": 12, "at": 3212.2017926029052 }, { "type": "C", "frame": 11, "at": 3212.2017926029052 }, { "type": "C", "frame": 10, "at": 3212.2017926029052 }, { "type": "C", "frame": 9, "at": 3212.2017926029052 }, { "type": "C", "frame": 8, "at": 3212.2017926029052 }, { "type": "C", "frame": 7, "at": 3212.2017926029052 }, { "type": "C", "frame": 6, "at": 3212.2017926029052 }, { "type": "O", "frame": 20, "at": 3212.2017926029052 }, { "type": "O", "frame": 8, "at": 3212.2017926029052 }, { "type": "O", "frame": 9, "at": 3212.2017926029052 }, { "type": "O", "frame": 10, "at": 3212.2017926029052 }, { "type": "O", "frame": 11, "at": 3212.2017926029052 }, { "type": "O", "frame": 12, "at": 3212.2017926029052 }, { "type": "O", "frame": 13, "at": 3212.2017926029052 }, { "type": "O", "frame": 14, "at": 3212.2017926029052 }, { "type": "O", "frame": 15, "at": 3212.2017926029052 }, { "type": "O", "frame": 16, "at": 3212.2017926029052 }, { "type": "O", "frame": 21, "at": 3212.2017926029052 }, { "type": "O", "frame": 22, "at": 3212.2017926029052 }, { "type": "O", "frame": 23, "at": 3212.2017926029052 }, { "type": "O", "frame": 24, "at": 3212.2017926029052 }, { "type": "O", "frame": 18, "at": 3212.2017926029052 }, { "type": "C", "frame": 18, "at": 3216.220459221069 }, { "type": "C", "frame": 24, "at": 3216.220459221069 }, { "type": "O", "frame": 29, "at": 3216.220459221069 }, { "type": "O", "frame": 18, "at": 3216.220459221069 }, { "type": "C", "frame": 18, "at": 3217.5667090572206 }, { "type": "C", "frame": 29, "at": 3217.5667090572206 }, { "type": "O", "frame": 24, "at": 3217.5667090572206 }, { "type": "O", "frame": 18, "at": 3217.5667090572206 }, { "type": "C", "frame": 18, "at": 3220.26654191626 }, { "type": "C", "frame": 24, "at": 3220.26654191626 }, { "type": "C", "frame": 23, "at": 3220.2665426713866 }, { "type": "C", "frame": 22, "at": 3220.2665426713866 }, { "type": "C", "frame": 21, "at": 3220.2665426713866 }, { "type": "O", "frame": 17, "at": 3220.2665426713866 }, { "type": "O", "frame": 18, "at": 3220.2665426713866 }, { "type": "C", "frame": 18, "at": 3225.794959110443 }, { "type": "C", "frame": 17, "at": 3225.794959110443 }, { "type": "O", "frame": 19, "at": 3225.794959110443 }, { "type": "O", "frame": 18, "at": 3225.794959110443 }, { "type": "C", "frame": 18, "at": 3227.1338749440993 }, { "type": "C", "frame": 19, "at": 3227.1338749440993 }, { "type": "C", "frame": 16, "at": 3227.133876083557 }, { "type": "C", "frame": 15, "at": 3227.133876083557 }, { "type": "C", "frame": 14, "at": 3227.133876083557 }, { "type": "C", "frame": 13, "at": 3227.133876083557 }, { "type": "C", "frame": 12, "at": 3227.133876083557 }, { "type": "C", "frame": 11, "at": 3227.133876083557 }, { "type": "C", "frame": 10, "at": 3227.133876083557 }, { "type": "C", "frame": 9, "at": 3227.133876083557 }, { "type": "C", "frame": 8, "at": 3227.133876083557 }, { "type": "C", "frame": 20, "at": 3227.133876083557 }, { "type": "O", "frame": 6, "at": 3227.133876083557 }, { "type": "O", "frame": 7, "at": 3227.133876083557 }, { "type": "O", "frame": 8, "at": 3227.133876083557 }, { "type": "O", "frame": 9, "at": 3227.133876083557 }, { "type": "O", "frame": 10, "at": 3227.133876083557 }, { "type": "O", "frame": 11, "at": 3227.133876083557 }, { "type": "O", "frame": 12, "at": 3227.133876083557 }, { "type": "O", "frame": 13, "at": 3227.133876083557 }, { "type": "O", "frame": 14, "at": 3227.133876083557 }, { "type": "O", "frame": 15, "at": 3227.133876083557 }, { "type": "O", "frame": 16, "at": 3227.133876083557 }, { "type": "O", "frame": 21, "at": 3227.133876083557 }, { "type": "O", "frame": 22, "at": 3227.133876083557 }, { "type": "O", "frame": 23, "at": 3227.133876083557 }, { "type": "O", "frame": 24, "at": 3227.133876083557 }, { "type": "O", "frame": 18, "at": 3227.133876083557 }, { "type": "C", "frame": 18, "at": 3232.4903341407776 }, { "type": "C", "frame": 24, "at": 3232.4903341407776 }, { "type": "O", "frame": 25, "at": 3232.4903341407776 }, { "type": "O", "frame": 18, "at": 3232.4903341407776 }, { "type": "C", "frame": 18, "at": 3233.834624971756 }, { "type": "C", "frame": 25, "at": 3233.834624971756 }, { "type": "O", "frame": 24, "at": 3233.834625 }, { "type": "O", "frame": 18, "at": 3233.834625 }, { "type": "C", "frame": 18, "at": 3235.1925840320587 }, { "type": "C", "frame": 24, "at": 3235.1925840320587 }, { "type": "C", "frame": 23, "at": 3235.1925841445923 }, { "type": "C", "frame": 22, "at": 3235.1925841445923 }, { "type": "C", "frame": 21, "at": 3235.1925841445923 }, { "type": "O", "frame": 17, "at": 3235.1925841445923 }, { "type": "O", "frame": 18, "at": 3235.1925841445923 }, { "type": "C", "frame": 18, "at": 3240.7329592326964 }, { "type": "C", "frame": 17, "at": 3240.7329592326964 }, { "type": "O", "frame": 19, "at": 3240.7329592326964 }, { "type": "O", "frame": 18, "at": 3240.7329592326964 }, { "type": "C", "frame": 18, "at": 3246.0597088016357 }, { "type": "C", "frame": 19, "at": 3246.0597088016357 }, { "type": "C", "frame": 16, "at": 3246.0597096557617 }, { "type": "C", "frame": 15, "at": 3246.0597096557617 }, { "type": "C", "frame": 14, "at": 3246.0597096557617 }, { "type": "C", "frame": 13, "at": 3246.0597096557617 }, { "type": "C", "frame": 12, "at": 3246.0597096557617 }, { "type": "C", "frame": 11, "at": 3246.0597096557617 }, { "type": "C", "frame": 10, "at": 3246.0597096557617 }, { "type": "C", "frame": 9, "at": 3246.0597096557617 }, { "type": "C", "frame": 8, "at": 3246.0597096557617 }, { "type": "C", "frame": 7, "at": 3246.0597096557617 }, { "type": "C", "frame": 6, "at": 3246.0597096557617 }, { "type": "O", "frame": 20, "at": 3246.0597096557617 }, { "type": "O", "frame": 8, "at": 3246.0597096557617 }, { "type": "O", "frame": 9, "at": 3246.0597096557617 }, { "type": "O", "frame": 10, "at": 3246.0597096557617 }, { "type": "O", "frame": 11, "at": 3246.0597096557617 }, { "type": "O", "frame": 12, "at": 3246.0597096557617 }, { "type": "O", "frame": 13, "at": 3246.0597096557617 }, { "type": "O", "frame": 14, "at": 3246.0597096557617 }, { "type": "O", "frame": 15, "at": 3246.0597096557617 }, { "type": "O", "frame": 16, "at": 3246.0597096557617 }, { "type": "O", "frame": 21, "at": 3246.0597096557617 }, { "type": "O", "frame": 22, "at": 3246.0597096557617 }, { "type": "O", "frame": 23, "at": 3246.0597096557617 }, { "type": "O", "frame": 31, "at": 3246.0597096557617 }, { "type": "O", "frame": 18, "at": 3246.0597096557617 }, { "type": "C", "frame": 18, "at": 3247.399917053589 }, { "type": "C", "frame": 31, "at": 3247.399917053589 }, { "type": "O", "frame": 24, "at": 3247.399917053589 }, { "type": "O", "frame": 18, "at": 3247.399917053589 }, { "type": "C", "frame": 18, "at": 3254.1450418168947 }, { "type": "C", "frame": 24, "at": 3254.1450418168947 }, { "type": "C", "frame": 23, "at": 3254.1450418704835 }, { "type": "C", "frame": 22, "at": 3254.1450418704835 }, { "type": "C", "frame": 21, "at": 3254.1450418704835 }, { "type": "O", "frame": 17, "at": 3254.145042 }, { "type": "O", "frame": 18, "at": 3254.145042 }, { "type": "C", "frame": 18, "at": 3258.2403750993653 }, { "type": "C", "frame": 17, "at": 3258.2403750993653 }, { "type": "O", "frame": 19, "at": 3258.2403750993653 }, { "type": "O", "frame": 18, "at": 3258.2403750993653 }, { "type": "C", "frame": 18, "at": 3266.2354998168944 }, { "type": "C", "frame": 19, "at": 3266.2354998168944 }, { "type": "C", "frame": 16, "at": 3266.2354998168944 }, { "type": "C", "frame": 15, "at": 3266.2354998168944 }, { "type": "C", "frame": 14, "at": 3266.2354998168944 }, { "type": "C", "frame": 13, "at": 3266.2354998168944 }, { "type": "C", "frame": 12, "at": 3266.2354998168944 }, { "type": "C", "frame": 11, "at": 3266.2354998168944 }, { "type": "C", "frame": 10, "at": 3266.2354998168944 }, { "type": "C", "frame": 9, "at": 3266.2354998168944 }, { "type": "C", "frame": 8, "at": 3266.2354998168944 }, { "type": "C", "frame": 20, "at": 3266.2354998168944 }, { "type": "O", "frame": 6, "at": 3266.2355 }, { "type": "O", "frame": 7, "at": 3266.2355 }, { "type": "O", "frame": 8, "at": 3266.2355 }, { "type": "O", "frame": 9, "at": 3266.2355 }, { "type": "O", "frame": 10, "at": 3266.2355 }, { "type": "O", "frame": 11, "at": 3266.2355 }, { "type": "O", "frame": 12, "at": 3266.2355 }, { "type": "O", "frame": 13, "at": 3266.2355 }, { "type": "O", "frame": 14, "at": 3266.2355 }, { "type": "O", "frame": 15, "at": 3266.2355 }, { "type": "O", "frame": 16, "at": 3266.2355 }, { "type": "O", "frame": 21, "at": 3266.2355 }, { "type": "O", "frame": 22, "at": 3266.2355 }, { "type": "O", "frame": 23, "at": 3266.2355 }, { "type": "O", "frame": 24, "at": 3266.2355 }, { "type": "O", "frame": 18, "at": 3266.2355 }, { "type": "C", "frame": 18, "at": 3275.627334259033 }, { "type": "C", "frame": 24, "at": 3275.627334259033 }, { "type": "C", "frame": 23, "at": 3275.627334259033 }, { "type": "C", "frame": 22, "at": 3275.627334259033 }, { "type": "C", "frame": 21, "at": 3275.627334259033 }, { "type": "O", "frame": 17, "at": 3275.627334259033 }, { "type": "O", "frame": 18, "at": 3275.627334259033 }, { "type": "C", "frame": 18, "at": 3279.9219588054502 }, { "type": "C", "frame": 17, "at": 3279.9219588054502 }, { "type": "O", "frame": 19, "at": 3279.921959 }, { "type": "O", "frame": 18, "at": 3279.921959 }, { "type": "C", "frame": 18, "at": 3282.6102500728452 }, { "type": "C", "frame": 19, "at": 3282.6102500728452 }, { "type": "C", "frame": 16, "at": 3282.610250137329 }, { "type": "C", "frame": 15, "at": 3282.610250137329 }, { "type": "C", "frame": 14, "at": 3282.610250137329 }, { "type": "C", "frame": 13, "at": 3282.610250137329 }, { "type": "C", "frame": 12, "at": 3282.610250137329 }, { "type": "C", "frame": 11, "at": 3282.610250137329 }, { "type": "C", "frame": 10, "at": 3282.610250137329 }, { "type": "C", "frame": 9, "at": 3282.610250137329 }, { "type": "C", "frame": 8, "at": 3282.610250137329 }, { "type": "C", "frame": 7, "at": 3282.610250137329 }, { "type": "C", "frame": 6, "at": 3282.610250137329 }, { "type": "O", "frame": 20, "at": 3282.610250137329 }, { "type": "O", "frame": 8, "at": 3282.610250137329 }, { "type": "O", "frame": 9, "at": 3282.610250137329 }, { "type": "O", "frame": 10, "at": 3282.610250137329 }, { "type": "O", "frame": 11, "at": 3282.610250137329 }, { "type": "O", "frame": 12, "at": 3282.610250137329 }, { "type": "O", "frame": 13, "at": 3282.610250137329 }, { "type": "O", "frame": 14, "at": 3282.610250137329 }, { "type": "O", "frame": 15, "at": 3282.610250137329 }, { "type": "O", "frame": 16, "at": 3282.610250137329 }, { "type": "O", "frame": 21, "at": 3282.610250137329 }, { "type": "O", "frame": 22, "at": 3282.610250137329 }, { "type": "O", "frame": 23, "at": 3282.610250137329 }, { "type": "O", "frame": 24, "at": 3282.610250137329 }, { "type": "O", "frame": 18, "at": 3282.610250137329 }, { "type": "C", "frame": 18, "at": 3290.6635422744753 }, { "type": "C", "frame": 24, "at": 3290.6635422744753 }, { "type": "C", "frame": 23, "at": 3290.6635422744753 }, { "type": "C", "frame": 22, "at": 3290.6635422744753 }, { "type": "C", "frame": 21, "at": 3290.6635422744753 }, { "type": "O", "frame": 17, "at": 3290.6635422744753 }, { "type": "O", "frame": 18, "at": 3290.6635422744753 }, { "type": "C", "frame": 18, "at": 3294.7810842668455 }, { "type": "C", "frame": 17, "at": 3294.7810842668455 }, { "type": "O", "frame": 19, "at": 3294.7810842668455 }, { "type": "O", "frame": 18, "at": 3294.7810842668455 }, { "type": "C", "frame": 18, "at": 3302.78725045813 }, { "type": "C", "frame": 19, "at": 3302.78725045813 }, { "type": "C", "frame": 16, "at": 3302.78725045813 }, { "type": "C", "frame": 15, "at": 3302.78725045813 }, { "type": "C", "frame": 14, "at": 3302.78725045813 }, { "type": "C", "frame": 13, "at": 3302.78725045813 }, { "type": "C", "frame": 12, "at": 3302.78725045813 }, { "type": "C", "frame": 11, "at": 3302.78725045813 }, { "type": "C", "frame": 10, "at": 3302.78725045813 }, { "type": "C", "frame": 9, "at": 3302.78725045813 }, { "type": "C", "frame": 8, "at": 3302.78725045813 }, { "type": "C", "frame": 20, "at": 3302.78725045813 }, { "type": "O", "frame": 6, "at": 3302.78725045813 }, { "type": "O", "frame": 7, "at": 3302.78725045813 }, { "type": "O", "frame": 8, "at": 3302.78725045813 }, { "type": "O", "frame": 9, "at": 3302.78725045813 }, { "type": "O", "frame": 10, "at": 3302.78725045813 }, { "type": "O", "frame": 11, "at": 3302.78725045813 }, { "type": "O", "frame": 12, "at": 3302.78725045813 }, { "type": "O", "frame": 13, "at": 3302.78725045813 }, { "type": "O", "frame": 14, "at": 3302.78725045813 }, { "type": "O", "frame": 15, "at": 3302.78725045813 }, { "type": "O", "frame": 16, "at": 3302.78725045813 }, { "type": "O", "frame": 21, "at": 3302.78725045813 }, { "type": "O", "frame": 22, "at": 3302.78725045813 }, { "type": "O", "frame": 23, "at": 3302.78725045813 }, { "type": "O", "frame": 24, "at": 3302.78725045813 }, { "type": "O", "frame": 18, "at": 3302.78725045813 }, { "type": "C", "frame": 18, "at": 3309.491500335693 }, { "type": "C", "frame": 24, "at": 3309.491500335693 }, { "type": "O", "frame": 38, "at": 3309.491500335693 }, { "type": "O", "frame": 18, "at": 3309.491500335693 }, { "type": "C", "frame": 18, "at": 3310.8595839538575 }, { "type": "C", "frame": 38, "at": 3310.8595839538575 }, { "type": "C", "frame": 23, "at": 3310.8595842895506 }, { "type": "C", "frame": 22, "at": 3310.8595842895506 }, { "type": "C", "frame": 21, "at": 3310.8595842895506 }, { "type": "O", "frame": 17, "at": 3310.8595842895506 }, { "type": "O", "frame": 18, "at": 3310.8595842895506 }, { "type": "C", "frame": 18, "at": 3316.3889590762938 }, { "type": "C", "frame": 17, "at": 3316.3889590762938 }, { "type": "O", "frame": 19, "at": 3316.3889590762938 }, { "type": "O", "frame": 18, "at": 3316.3889590762938 }, { "type": "C", "frame": 18, "at": 3317.7350420450057 }, { "type": "C", "frame": 19, "at": 3317.7350420450057 }, { "type": "C", "frame": 16, "at": 3317.7350420450057 }, { "type": "C", "frame": 15, "at": 3317.7350420450057 }, { "type": "C", "frame": 14, "at": 3317.7350420450057 }, { "type": "C", "frame": 13, "at": 3317.7350420450057 }, { "type": "C", "frame": 12, "at": 3317.7350420450057 }, { "type": "C", "frame": 11, "at": 3317.7350420450057 }, { "type": "C", "frame": 10, "at": 3317.7350420450057 }, { "type": "C", "frame": 9, "at": 3317.7350420450057 }, { "type": "C", "frame": 8, "at": 3317.7350420450057 }, { "type": "C", "frame": 7, "at": 3317.7350420450057 }, { "type": "C", "frame": 6, "at": 3317.7350420450057 }, { "type": "O", "frame": 20, "at": 3317.7350420450057 }, { "type": "O", "frame": 8, "at": 3317.7350420450057 }, { "type": "O", "frame": 9, "at": 3317.7350420450057 }, { "type": "O", "frame": 10, "at": 3317.7350420450057 }, { "type": "O", "frame": 11, "at": 3317.7350420450057 }, { "type": "O", "frame": 12, "at": 3317.7350420450057 }, { "type": "O", "frame": 13, "at": 3317.7350420450057 }, { "type": "O", "frame": 14, "at": 3317.7350420450057 }, { "type": "O", "frame": 15, "at": 3317.7350420450057 }, { "type": "O", "frame": 16, "at": 3317.7350420450057 }, { "type": "O", "frame": 21, "at": 3317.7350420450057 }, { "type": "O", "frame": 22, "at": 3317.7350420450057 }, { "type": "O", "frame": 23, "at": 3317.7350420450057 }, { "type": "O", "frame": 24, "at": 3317.7350420450057 }, { "type": "O", "frame": 18, "at": 3317.7350420450057 }, { "type": "C", "frame": 18, "at": 3323.1178745271604 }, { "type": "C", "frame": 24, "at": 3323.1178745271604 }, { "type": "O", "frame": 29, "at": 3323.117875 }, { "type": "O", "frame": 18, "at": 3323.117875 }, { "type": "C", "frame": 18, "at": 3324.4565420351028 }, { "type": "C", "frame": 29, "at": 3324.4565420351028 }, { "type": "O", "frame": 24, "at": 3324.4565420351028 }, { "type": "O", "frame": 18, "at": 3324.4565420351028 }, { "type": "C", "frame": 18, "at": 3325.8059170095366 }, { "type": "C", "frame": 24, "at": 3325.8059170095366 }, { "type": "C", "frame": 23, "at": 3325.8059170095366 }, { "type": "C", "frame": 22, "at": 3325.8059170095366 }, { "type": "C", "frame": 21, "at": 3325.8059170095366 }, { "type": "O", "frame": 17, "at": 3325.8059170095366 }, { "type": "O", "frame": 18, "at": 3325.8059170095366 }, { "type": "C", "frame": 18, "at": 3331.31545946521 }, { "type": "C", "frame": 17, "at": 3331.31545946521 }, { "type": "O", "frame": 19, "at": 3331.31545946521 }, { "type": "O", "frame": 18, "at": 3331.31545946521 }, { "type": "C", "frame": 18, "at": 3337.9725000728454 }, { "type": "C", "frame": 19, "at": 3337.9725000728454 }, { "type": "C", "frame": 16, "at": 3337.9725000728454 }, { "type": "C", "frame": 15, "at": 3337.9725000728454 }, { "type": "C", "frame": 14, "at": 3337.9725000728454 }, { "type": "C", "frame": 13, "at": 3337.9725000728454 }, { "type": "C", "frame": 12, "at": 3337.9725000728454 }, { "type": "C", "frame": 11, "at": 3337.9725000728454 }, { "type": "C", "frame": 10, "at": 3337.9725000728454 }, { "type": "C", "frame": 9, "at": 3337.9725000728454 }, { "type": "C", "frame": 8, "at": 3337.9725000728454 }, { "type": "O", "frame": 18, "at": 3337.9725000728454 }, { "type": "C", "frame": 18, "at": 3339.321458969116 }, { "type": "C", "frame": 20, "at": 3339.321458969116 }, { "type": "O", "frame": 6, "at": 3339.321459 }, { "type": "O", "frame": 7, "at": 3339.321459 }, { "type": "O", "frame": 8, "at": 3339.321459 }, { "type": "O", "frame": 9, "at": 3339.321459 }, { "type": "O", "frame": 10, "at": 3339.321459 }, { "type": "O", "frame": 11, "at": 3339.321459 }, { "type": "O", "frame": 12, "at": 3339.321459 }, { "type": "O", "frame": 13, "at": 3339.321459 }, { "type": "O", "frame": 14, "at": 3339.321459 }, { "type": "O", "frame": 15, "at": 3339.321459 }, { "type": "O", "frame": 16, "at": 3339.321459 }, { "type": "O", "frame": 21, "at": 3339.321459 }, { "type": "O", "frame": 22, "at": 3339.321459 }, { "type": "O", "frame": 23, "at": 3339.321459 }, { "type": "O", "frame": 24, "at": 3339.321459 }, { "type": "O", "frame": 18, "at": 3339.321459 }, { "type": "C", "frame": 18, "at": 3346.0164596484983 }, { "type": "C", "frame": 24, "at": 3346.0164596484983 }, { "type": "O", "frame": 28, "at": 3346.0164596484983 }, { "type": "O", "frame": 18, "at": 3346.0164596484983 }, { "type": "C", "frame": 18, "at": 3347.3613339780654 }, { "type": "C", "frame": 28, "at": 3347.3613339780654 }, { "type": "C", "frame": 23, "at": 3347.3613349841917 }, { "type": "C", "frame": 22, "at": 3347.3613349841917 }, { "type": "C", "frame": 21, "at": 3347.3613349841917 }, { "type": "O", "frame": 17, "at": 3347.3613349841917 }, { "type": "O", "frame": 18, "at": 3347.3613349841917 }, { "type": "C", "frame": 18, "at": 3351.4918748477785 }, { "type": "C", "frame": 17, "at": 3351.4918748477785 }, { "type": "O", "frame": 19, "at": 3351.491875 }, { "type": "O", "frame": 18, "at": 3351.491875 }, { "type": "C", "frame": 18, "at": 3354.1651671600343 }, { "type": "C", "frame": 19, "at": 3354.1651671600343 }, { "type": "C", "frame": 16, "at": 3354.1651689456785 }, { "type": "C", "frame": 15, "at": 3354.1651689456785 }, { "type": "C", "frame": 14, "at": 3354.1651689456785 }, { "type": "C", "frame": 13, "at": 3354.1651689456785 }, { "type": "C", "frame": 12, "at": 3354.1651689456785 }, { "type": "C", "frame": 11, "at": 3354.1651689456785 }, { "type": "C", "frame": 10, "at": 3354.1651689456785 }, { "type": "C", "frame": 9, "at": 3354.1651689456785 }, { "type": "C", "frame": 8, "at": 3354.1651689456785 }, { "type": "C", "frame": 7, "at": 3354.1651689456785 }, { "type": "C", "frame": 6, "at": 3354.1651689456785 }, { "type": "O", "frame": 20, "at": 3354.1651689456785 }, { "type": "O", "frame": 8, "at": 3354.1651689456785 }, { "type": "O", "frame": 9, "at": 3354.1651689456785 }, { "type": "O", "frame": 10, "at": 3354.1651689456785 }, { "type": "O", "frame": 11, "at": 3354.1651689456785 }, { "type": "O", "frame": 12, "at": 3354.1651689456785 }, { "type": "O", "frame": 13, "at": 3354.1651689456785 }, { "type": "O", "frame": 14, "at": 3354.1651689456785 }, { "type": "O", "frame": 15, "at": 3354.1651689456785 }, { "type": "O", "frame": 16, "at": 3354.1651689456785 }, { "type": "O", "frame": 21, "at": 3354.1651689456785 }, { "type": "O", "frame": 22, "at": 3354.1651689456785 }, { "type": "O", "frame": 23, "at": 3354.1651689456785 }, { "type": "O", "frame": 24, "at": 3354.1651689456785 }, { "type": "O", "frame": 18, "at": 3354.1651689456785 }, { "type": "C", "frame": 18, "at": 3362.2209168931886 }, { "type": "C", "frame": 24, "at": 3362.2209168931886 }, { "type": "C", "frame": 23, "at": 3362.2209168931886 }, { "type": "C", "frame": 22, "at": 3362.2209168931886 }, { "type": "C", "frame": 21, "at": 3362.2209168931886 }, { "type": "O", "frame": 17, "at": 3362.220917 }, { "type": "O", "frame": 18, "at": 3362.220917 }, { "type": "C", "frame": 18, "at": 3366.318917049591 }, { "type": "C", "frame": 17, "at": 3366.318917049591 }, { "type": "O", "frame": 19, "at": 3366.318917049591 }, { "type": "O", "frame": 18, "at": 3366.318917049591 }, { "type": "C", "frame": 18, "at": 3374.366834366028 }, { "type": "C", "frame": 19, "at": 3374.366834366028 }, { "type": "C", "frame": 16, "at": 3374.366834366028 }, { "type": "C", "frame": 15, "at": 3374.366834366028 }, { "type": "C", "frame": 14, "at": 3374.366834366028 }, { "type": "C", "frame": 13, "at": 3374.366834366028 }, { "type": "C", "frame": 12, "at": 3374.366834366028 }, { "type": "C", "frame": 11, "at": 3374.366834366028 }, { "type": "C", "frame": 10, "at": 3374.366834366028 }, { "type": "C", "frame": 9, "at": 3374.366834366028 }, { "type": "C", "frame": 8, "at": 3374.366834366028 }, { "type": "C", "frame": 20, "at": 3374.366834366028 }, { "type": "O", "frame": 6, "at": 3374.366834366028 }, { "type": "O", "frame": 7, "at": 3374.366834366028 }, { "type": "O", "frame": 8, "at": 3374.366834366028 }, { "type": "O", "frame": 9, "at": 3374.366834366028 }, { "type": "O", "frame": 10, "at": 3374.366834366028 }, { "type": "O", "frame": 11, "at": 3374.366834366028 }, { "type": "O", "frame": 12, "at": 3374.366834366028 }, { "type": "O", "frame": 13, "at": 3374.366834366028 }, { "type": "O", "frame": 14, "at": 3374.366834366028 }, { "type": "O", "frame": 15, "at": 3374.366834366028 }, { "type": "O", "frame": 16, "at": 3374.366834366028 }, { "type": "O", "frame": 21, "at": 3374.366834366028 }, { "type": "O", "frame": 22, "at": 3374.366834366028 }, { "type": "O", "frame": 23, "at": 3374.366834366028 }, { "type": "O", "frame": 24, "at": 3374.366834366028 }, { "type": "O", "frame": 18, "at": 3374.366834366028 }, { "type": "C", "frame": 18, "at": 3375.718041971573 }, { "type": "C", "frame": 24, "at": 3375.718041971573 }, { "type": "O", "frame": 26, "at": 3375.718042 }, { "type": "O", "frame": 18, "at": 3375.718042 }, { "type": "C", "frame": 18, "at": 3377.057875021164 }, { "type": "C", "frame": 26, "at": 3377.057875021164 }, { "type": "O", "frame": 24, "at": 3377.057875021164 }, { "type": "O", "frame": 18, "at": 3377.057875021164 }, { "type": "C", "frame": 18, "at": 3382.4285839424133 }, { "type": "C", "frame": 24, "at": 3382.4285839424133 }, { "type": "C", "frame": 23, "at": 3382.4285844119872 }, { "type": "C", "frame": 22, "at": 3382.4285844119872 }, { "type": "C", "frame": 21, "at": 3382.4285844119872 }, { "type": "O", "frame": 17, "at": 3382.4285844119872 }, { "type": "O", "frame": 18, "at": 3382.4285844119872 }, { "type": "C", "frame": 18, "at": 3386.5479587520445 }, { "type": "C", "frame": 17, "at": 3386.5479587520445 }, { "type": "O", "frame": 19, "at": 3386.547959 }, { "type": "O", "frame": 18, "at": 3386.547959 }, { "type": "C", "frame": 18, "at": 3390.5443340839233 }, { "type": "C", "frame": 19, "at": 3390.5443340839233 }, { "type": "C", "frame": 16, "at": 3390.5443340839233 }, { "type": "C", "frame": 15, "at": 3390.5443340839233 }, { "type": "C", "frame": 14, "at": 3390.5443340839233 }, { "type": "C", "frame": 13, "at": 3390.5443340839233 }, { "type": "C", "frame": 12, "at": 3390.5443340839233 }, { "type": "C", "frame": 11, "at": 3390.5443340839233 }, { "type": "C", "frame": 10, "at": 3390.5443340839233 }, { "type": "C", "frame": 9, "at": 3390.5443340839233 }, { "type": "C", "frame": 8, "at": 3390.5443340839233 }, { "type": "C", "frame": 7, "at": 3390.5443340839233 }, { "type": "C", "frame": 6, "at": 3390.5443340839233 }, { "type": "O", "frame": 20, "at": 3390.5443340839233 }, { "type": "O", "frame": 8, "at": 3390.5443340839233 }, { "type": "O", "frame": 9, "at": 3390.5443340839233 }, { "type": "O", "frame": 10, "at": 3390.5443340839233 }, { "type": "O", "frame": 11, "at": 3390.5443340839233 }, { "type": "O", "frame": 12, "at": 3390.5443340839233 }, { "type": "O", "frame": 13, "at": 3390.5443340839233 }, { "type": "O", "frame": 14, "at": 3390.5443340839233 }, { "type": "O", "frame": 15, "at": 3390.5443340839233 }, { "type": "O", "frame": 16, "at": 3390.5443340839233 }, { "type": "O", "frame": 21, "at": 3390.5443340839233 }, { "type": "O", "frame": 22, "at": 3390.5443340839233 }, { "type": "O", "frame": 23, "at": 3390.5443340839233 }, { "type": "O", "frame": 24, "at": 3390.5443340839233 }, { "type": "O", "frame": 18, "at": 3390.5443340839233 }, { "type": "C", "frame": 18, "at": 3399.956292694458 }, { "type": "C", "frame": 24, "at": 3399.956292694458 }, { "type": "C", "frame": 23, "at": 3399.956292694458 }, { "type": "C", "frame": 22, "at": 3399.956292694458 }, { "type": "C", "frame": 21, "at": 3399.956292694458 }, { "type": "O", "frame": 17, "at": 3399.956292694458 }, { "type": "O", "frame": 18, "at": 3399.956292694458 }, { "type": "C", "frame": 18, "at": 3404.126958694641 }, { "type": "C", "frame": 17, "at": 3404.126958694641 }, { "type": "O", "frame": 19, "at": 3404.126959 }, { "type": "O", "frame": 18, "at": 3404.126959 }, { "type": "C", "frame": 18, "at": 3412.102875385651 }, { "type": "C", "frame": 19, "at": 3412.102875385651 }, { "type": "C", "frame": 16, "at": 3412.102875385651 }, { "type": "C", "frame": 15, "at": 3412.102875385651 }, { "type": "C", "frame": 14, "at": 3412.102875385651 }, { "type": "C", "frame": 13, "at": 3412.102875385651 }, { "type": "C", "frame": 12, "at": 3412.102875385651 }, { "type": "C", "frame": 11, "at": 3412.102875385651 }, { "type": "C", "frame": 10, "at": 3412.102875385651 }, { "type": "C", "frame": 9, "at": 3412.102875385651 }, { "type": "C", "frame": 8, "at": 3412.102875385651 }, { "type": "C", "frame": 20, "at": 3412.102875385651 }, { "type": "O", "frame": 6, "at": 3412.102875385651 }, { "type": "O", "frame": 7, "at": 3412.102875385651 }, { "type": "O", "frame": 8, "at": 3412.102875385651 }, { "type": "O", "frame": 9, "at": 3412.102875385651 }, { "type": "O", "frame": 10, "at": 3412.102875385651 }, { "type": "O", "frame": 11, "at": 3412.102875385651 }, { "type": "O", "frame": 12, "at": 3412.102875385651 }, { "type": "O", "frame": 13, "at": 3412.102875385651 }, { "type": "O", "frame": 14, "at": 3412.102875385651 }, { "type": "O", "frame": 15, "at": 3412.102875385651 }, { "type": "O", "frame": 16, "at": 3412.102875385651 }, { "type": "O", "frame": 21, "at": 3412.102875385651 }, { "type": "O", "frame": 22, "at": 3412.102875385651 }, { "type": "O", "frame": 23, "at": 3412.102875385651 }, { "type": "O", "frame": 24, "at": 3412.102875385651 }, { "type": "O", "frame": 18, "at": 3412.102875385651 }, { "type": "C", "frame": 18, "at": 3414.7821669635773 }, { "type": "C", "frame": 24, "at": 3414.7821669635773 }, { "type": "O", "frame": 26, "at": 3414.782167 }, { "type": "O", "frame": 18, "at": 3414.782167 }, { "type": "C", "frame": 18, "at": 3416.1207499925536 }, { "type": "C", "frame": 26, "at": 3416.1207499925536 }, { "type": "O", "frame": 24, "at": 3416.12075 }, { "type": "O", "frame": 18, "at": 3416.12075 }, { "type": "C", "frame": 18, "at": 3420.145208885193 }, { "type": "C", "frame": 24, "at": 3420.145208885193 }, { "type": "C", "frame": 23, "at": 3420.145208885193 }, { "type": "C", "frame": 22, "at": 3420.145208885193 }, { "type": "C", "frame": 21, "at": 3420.145208885193 }, { "type": "O", "frame": 17, "at": 3420.145209 }, { "type": "O", "frame": 18, "at": 3420.145209 }, { "type": "C", "frame": 18, "at": 3425.754249737152 }, { "type": "C", "frame": 17, "at": 3425.754249737152 }, { "type": "O", "frame": 19, "at": 3425.75425 }, { "type": "O", "frame": 18, "at": 3425.75425 }, { "type": "C", "frame": 18, "at": 3427.0919169883728 }, { "type": "C", "frame": 19, "at": 3427.0919169883728 }, { "type": "C", "frame": 16, "at": 3427.0919172821045 }, { "type": "C", "frame": 15, "at": 3427.0919172821045 }, { "type": "C", "frame": 14, "at": 3427.0919172821045 }, { "type": "C", "frame": 13, "at": 3427.0919172821045 }, { "type": "C", "frame": 12, "at": 3427.0919172821045 }, { "type": "C", "frame": 11, "at": 3427.0919172821045 }, { "type": "C", "frame": 10, "at": 3427.0919172821045 }, { "type": "C", "frame": 9, "at": 3427.0919172821045 }, { "type": "C", "frame": 8, "at": 3427.0919172821045 }, { "type": "C", "frame": 7, "at": 3427.0919172821045 }, { "type": "C", "frame": 6, "at": 3427.0919172821045 }, { "type": "O", "frame": 20, "at": 3427.0919172821045 }, { "type": "O", "frame": 8, "at": 3427.0919172821045 }, { "type": "O", "frame": 9, "at": 3427.0919172821045 }, { "type": "O", "frame": 10, "at": 3427.0919172821045 }, { "type": "O", "frame": 11, "at": 3427.0919172821045 }, { "type": "O", "frame": 12, "at": 3427.0919172821045 }, { "type": "O", "frame": 13, "at": 3427.0919172821045 }, { "type": "O", "frame": 14, "at": 3427.0919172821045 }, { "type": "O", "frame": 15, "at": 3427.0919172821045 }, { "type": "O", "frame": 16, "at": 3427.0919172821045 }, { "type": "O", "frame": 21, "at": 3427.0919172821045 }, { "type": "O", "frame": 22, "at": 3427.0919172821045 }, { "type": "O", "frame": 23, "at": 3427.0919172821045 }, { "type": "O", "frame": 24, "at": 3427.0919172821045 }, { "type": "O", "frame": 18, "at": 3427.0919172821045 }, { "type": "C", "frame": 18, "at": 3428.4485840417788 }, { "type": "C", "frame": 24, "at": 3428.4485840417788 }, { "type": "O", "frame": 31, "at": 3428.4485840417788 }, { "type": "O", "frame": 18, "at": 3428.4485840417788 }, { "type": "C", "frame": 18, "at": 3429.784500042328 }, { "type": "C", "frame": 31, "at": 3429.784500042328 }, { "type": "O", "frame": 24, "at": 3429.784500042328 }, { "type": "O", "frame": 18, "at": 3429.784500042328 }, { "type": "C", "frame": 18, "at": 3436.488624927521 }, { "type": "C", "frame": 24, "at": 3436.488624927521 }, { "type": "C", "frame": 23, "at": 3436.4886254884645 }, { "type": "C", "frame": 22, "at": 3436.4886254884645 }, { "type": "C", "frame": 21, "at": 3436.4886254884645 }, { "type": "O", "frame": 17, "at": 3436.4886254884645 }, { "type": "O", "frame": 18, "at": 3436.4886254884645 }, { "type": "C", "frame": 18, "at": 3440.594916770935 }, { "type": "C", "frame": 17, "at": 3440.594916770935 }, { "type": "O", "frame": 19, "at": 3440.594917 }, { "type": "O", "frame": 18, "at": 3440.594917 }, { "type": "C", "frame": 18, "at": 3448.6423336870116 }, { "type": "C", "frame": 19, "at": 3448.6423336870116 }, { "type": "C", "frame": 16, "at": 3448.64233585376 }, { "type": "C", "frame": 15, "at": 3448.64233585376 }, { "type": "C", "frame": 14, "at": 3448.64233585376 }, { "type": "C", "frame": 13, "at": 3448.64233585376 }, { "type": "C", "frame": 12, "at": 3448.64233585376 }, { "type": "C", "frame": 11, "at": 3448.64233585376 }, { "type": "C", "frame": 10, "at": 3448.64233585376 }, { "type": "C", "frame": 9, "at": 3448.64233585376 }, { "type": "C", "frame": 8, "at": 3448.64233585376 }, { "type": "C", "frame": 20, "at": 3448.64233585376 }, { "type": "O", "frame": 6, "at": 3448.64233585376 }, { "type": "O", "frame": 7, "at": 3448.64233585376 }, { "type": "O", "frame": 8, "at": 3448.64233585376 }, { "type": "O", "frame": 9, "at": 3448.64233585376 }, { "type": "O", "frame": 10, "at": 3448.64233585376 }, { "type": "O", "frame": 11, "at": 3448.64233585376 }, { "type": "O", "frame": 12, "at": 3448.64233585376 }, { "type": "O", "frame": 13, "at": 3448.64233585376 }, { "type": "O", "frame": 14, "at": 3448.64233585376 }, { "type": "O", "frame": 15, "at": 3448.64233585376 }, { "type": "O", "frame": 16, "at": 3448.64233585376 }, { "type": "O", "frame": 21, "at": 3448.64233585376 }, { "type": "O", "frame": 22, "at": 3448.64233585376 }, { "type": "O", "frame": 23, "at": 3448.64233585376 }, { "type": "O", "frame": 24, "at": 3448.64233585376 }, { "type": "O", "frame": 18, "at": 3448.64233585376 }, { "type": "C", "frame": 18, "at": 3456.7133340991822 }, { "type": "C", "frame": 24, "at": 3456.7133340991822 }, { "type": "C", "frame": 23, "at": 3456.7133340991822 }, { "type": "C", "frame": 22, "at": 3456.7133340991822 }, { "type": "C", "frame": 21, "at": 3456.7133340991822 }, { "type": "O", "frame": 17, "at": 3456.7133340991822 }, { "type": "O", "frame": 18, "at": 3456.7133340991822 }, { "type": "C", "frame": 18, "at": 3462.2418750881043 }, { "type": "C", "frame": 17, "at": 3462.2418750881043 }, { "type": "O", "frame": 19, "at": 3462.2418750881043 }, { "type": "O", "frame": 18, "at": 3462.2418750881043 }, { "type": "C", "frame": 18, "at": 3468.894416637421 }, { "type": "C", "frame": 19, "at": 3468.894416637421 }, { "type": "C", "frame": 16, "at": 3468.894416824707 }, { "type": "C", "frame": 15, "at": 3468.894416824707 }, { "type": "C", "frame": 14, "at": 3468.894416824707 }, { "type": "C", "frame": 13, "at": 3468.894416824707 }, { "type": "C", "frame": 12, "at": 3468.894416824707 }, { "type": "C", "frame": 11, "at": 3468.894416824707 }, { "type": "C", "frame": 10, "at": 3468.894416824707 }, { "type": "C", "frame": 9, "at": 3468.894416824707 }, { "type": "C", "frame": 8, "at": 3468.894416824707 }, { "type": "C", "frame": 7, "at": 3468.894416824707 }, { "type": "C", "frame": 6, "at": 3468.894416824707 }, { "type": "O", "frame": 20, "at": 3468.894417 }, { "type": "O", "frame": 8, "at": 3468.894417 }, { "type": "O", "frame": 32, "at": 3468.894417 }, { "type": "O", "frame": 33, "at": 3468.894417 }, { "type": "O", "frame": 34, "at": 3468.894417 }, { "type": "O", "frame": 35, "at": 3468.894417 }, { "type": "O", "frame": 18, "at": 3468.894417 }, { "type": "C", "frame": 18, "at": 3470.242624950592 }, { "type": "C", "frame": 35, "at": 3470.242624950592 }, { "type": "C", "frame": 34, "at": 3470.242624950592 }, { "type": "C", "frame": 33, "at": 3470.242624950592 }, { "type": "C", "frame": 32, "at": 3470.242624950592 }, { "type": "O", "frame": 9, "at": 3470.242625 }, { "type": "O", "frame": 10, "at": 3470.242625 }, { "type": "O", "frame": 11, "at": 3470.242625 }, { "type": "O", "frame": 12, "at": 3470.242625 }, { "type": "O", "frame": 13, "at": 3470.242625 }, { "type": "O", "frame": 14, "at": 3470.242625 }, { "type": "O", "frame": 15, "at": 3470.242625 }, { "type": "O", "frame": 16, "at": 3470.242625 }, { "type": "O", "frame": 21, "at": 3470.242625 }, { "type": "O", "frame": 22, "at": 3470.242625 }, { "type": "O", "frame": 23, "at": 3470.242625 }, { "type": "O", "frame": 29, "at": 3470.242625 }, { "type": "O", "frame": 18, "at": 3470.242625 }, { "type": "C", "frame": 18, "at": 3471.589249970436 }, { "type": "C", "frame": 29, "at": 3471.589249970436 }, { "type": "O", "frame": 24, "at": 3471.58925 }, { "type": "O", "frame": 18, "at": 3471.58925 }, { "type": "C", "frame": 18, "at": 3476.9511670188904 }, { "type": "C", "frame": 24, "at": 3476.9511670188904 }, { "type": "O", "frame": 26, "at": 3476.9511670188904 }, { "type": "O", "frame": 18, "at": 3476.9511670188904 }, { "type": "C", "frame": 18, "at": 3478.309625042145 }, { "type": "C", "frame": 26, "at": 3478.309625042145 }, { "type": "C", "frame": 23, "at": 3478.309625042145 }, { "type": "C", "frame": 22, "at": 3478.309625042145 }, { "type": "C", "frame": 21, "at": 3478.309625042145 }, { "type": "O", "frame": 17, "at": 3478.309625042145 }, { "type": "O", "frame": 18, "at": 3478.309625042145 }, { "type": "C", "frame": 18, "at": 3482.410084098816 }, { "type": "C", "frame": 17, "at": 3482.410084098816 }, { "type": "O", "frame": 19, "at": 3482.410084098816 }, { "type": "O", "frame": 18, "at": 3482.410084098816 }, { "type": "C", "frame": 18, "at": 3485.136667003998 }, { "type": "C", "frame": 19, "at": 3485.136667003998 }, { "type": "C", "frame": 16, "at": 3485.136667003998 }, { "type": "C", "frame": 15, "at": 3485.136667003998 }, { "type": "C", "frame": 14, "at": 3485.136667003998 }, { "type": "C", "frame": 13, "at": 3485.136667003998 }, { "type": "C", "frame": 12, "at": 3485.136667003998 }, { "type": "C", "frame": 11, "at": 3485.136667003998 }, { "type": "C", "frame": 10, "at": 3485.136667003998 }, { "type": "C", "frame": 9, "at": 3485.136667003998 }, { "type": "C", "frame": 8, "at": 3485.136667003998 }, { "type": "C", "frame": 20, "at": 3485.136667003998 }, { "type": "O", "frame": 6, "at": 3485.136667003998 }, { "type": "O", "frame": 7, "at": 3485.136667003998 }, { "type": "O", "frame": 8, "at": 3485.136667003998 }, { "type": "O", "frame": 9, "at": 3485.136667003998 }, { "type": "O", "frame": 10, "at": 3485.136667003998 }, { "type": "O", "frame": 11, "at": 3485.136667003998 }, { "type": "O", "frame": 12, "at": 3485.136667003998 }, { "type": "O", "frame": 13, "at": 3485.136667003998 }, { "type": "O", "frame": 14, "at": 3485.136667003998 }, { "type": "O", "frame": 15, "at": 3485.136667003998 }, { "type": "O", "frame": 16, "at": 3485.136667003998 }, { "type": "O", "frame": 21, "at": 3485.136667003998 }, { "type": "O", "frame": 22, "at": 3485.136667003998 }, { "type": "O", "frame": 23, "at": 3485.136667003998 }, { "type": "O", "frame": 24, "at": 3485.136667003998 }, { "type": "O", "frame": 18, "at": 3485.136667003998 }, { "type": "C", "frame": 18, "at": 3493.185708748047 }, { "type": "C", "frame": 24, "at": 3493.185708748047 }, { "type": "C", "frame": 23, "at": 3493.185708748047 }, { "type": "C", "frame": 22, "at": 3493.185708748047 }, { "type": "C", "frame": 21, "at": 3493.185708748047 }, { "type": "O", "frame": 17, "at": 3493.185709 }, { "type": "O", "frame": 18, "at": 3493.185709 }, { "type": "C", "frame": 18, "at": 3498.6251249317015 }, { "type": "C", "frame": 17, "at": 3498.6251249317015 }, { "type": "O", "frame": 19, "at": 3498.625125 }, { "type": "O", "frame": 18, "at": 3498.625125 }, { "type": "C", "frame": 18, "at": 3505.2711253852844 }, { "type": "C", "frame": 19, "at": 3505.2711253852844 }, { "type": "C", "frame": 16, "at": 3505.2711253852844 }, { "type": "C", "frame": 15, "at": 3505.2711253852844 }, { "type": "C", "frame": 14, "at": 3505.2711253852844 }, { "type": "C", "frame": 13, "at": 3505.2711253852844 }, { "type": "C", "frame": 12, "at": 3505.2711253852844 }, { "type": "C", "frame": 11, "at": 3505.2711253852844 }, { "type": "C", "frame": 10, "at": 3505.2711253852844 }, { "type": "C", "frame": 9, "at": 3505.2711253852844 }, { "type": "C", "frame": 8, "at": 3505.2711253852844 }, { "type": "C", "frame": 7, "at": 3505.2711253852844 }, { "type": "C", "frame": 6, "at": 3505.2711253852844 }, { "type": "O", "frame": 20, "at": 3505.2711253852844 }, { "type": "O", "frame": 8, "at": 3505.2711253852844 }, { "type": "O", "frame": 9, "at": 3505.2711253852844 }, { "type": "O", "frame": 10, "at": 3505.2711253852844 }, { "type": "O", "frame": 11, "at": 3505.2711253852844 }, { "type": "O", "frame": 12, "at": 3505.2711253852844 }, { "type": "O", "frame": 13, "at": 3505.2711253852844 }, { "type": "O", "frame": 14, "at": 3505.2711253852844 }, { "type": "O", "frame": 15, "at": 3505.2711253852844 }, { "type": "O", "frame": 16, "at": 3505.2711253852844 }, { "type": "O", "frame": 21, "at": 3505.2711253852844 }, { "type": "O", "frame": 22, "at": 3505.2711253852844 }, { "type": "O", "frame": 23, "at": 3505.2711253852844 }, { "type": "O", "frame": 24, "at": 3505.2711253852844 }, { "type": "O", "frame": 18, "at": 3505.2711253852844 }, { "type": "C", "frame": 18, "at": 3514.6809598617556 }, { "type": "C", "frame": 24, "at": 3514.6809598617556 }, { "type": "C", "frame": 23, "at": 3514.6809598617556 }, { "type": "C", "frame": 22, "at": 3514.6809598617556 }, { "type": "C", "frame": 21, "at": 3514.6809598617556 }, { "type": "O", "frame": 17, "at": 3514.6809598617556 }, { "type": "O", "frame": 18, "at": 3514.6809598617556 }, { "type": "C", "frame": 18, "at": 3518.8346669811094 }, { "type": "C", "frame": 17, "at": 3518.8346669811094 }, { "type": "O", "frame": 19, "at": 3518.834667 }, { "type": "O", "frame": 18, "at": 3518.834667 }, { "type": "C", "frame": 18, "at": 3520.2105000345155 }, { "type": "C", "frame": 19, "at": 3520.2105000345155 }, { "type": "C", "frame": 16, "at": 3520.210501831055 }, { "type": "C", "frame": 15, "at": 3520.210501831055 }, { "type": "C", "frame": 14, "at": 3520.210501831055 }, { "type": "C", "frame": 13, "at": 3520.210501831055 }, { "type": "C", "frame": 12, "at": 3520.210501831055 }, { "type": "C", "frame": 11, "at": 3520.210501831055 }, { "type": "C", "frame": 10, "at": 3520.210501831055 }, { "type": "C", "frame": 9, "at": 3520.210501831055 }, { "type": "C", "frame": 8, "at": 3520.210501831055 }, { "type": "C", "frame": 20, "at": 3520.210501831055 }, { "type": "O", "frame": 6, "at": 3520.210501831055 }, { "type": "O", "frame": 7, "at": 3520.210501831055 }, { "type": "O", "frame": 18, "at": 3520.210501831055 }, { "type": "C", "frame": 18, "at": 3521.564458964348 }, { "type": "O", "frame": 8, "at": 3521.564459 }, { "type": "O", "frame": 9, "at": 3521.564459 }, { "type": "O", "frame": 10, "at": 3521.564459 }, { "type": "O", "frame": 11, "at": 3521.564459 }, { "type": "O", "frame": 12, "at": 3521.564459 }, { "type": "O", "frame": 13, "at": 3521.564459 }, { "type": "O", "frame": 14, "at": 3521.564459 }, { "type": "O", "frame": 15, "at": 3521.564459 }, { "type": "O", "frame": 16, "at": 3521.564459 }, { "type": "O", "frame": 21, "at": 3521.564459 }, { "type": "O", "frame": 22, "at": 3521.564459 }, { "type": "O", "frame": 23, "at": 3521.564459 }, { "type": "O", "frame": 24, "at": 3521.564459 }, { "type": "O", "frame": 18, "at": 3521.564459 }, { "type": "C", "frame": 18, "at": 3529.6268340686647 }, { "type": "C", "frame": 24, "at": 3529.6268340686647 }, { "type": "C", "frame": 23, "at": 3529.6268340686647 }, { "type": "C", "frame": 22, "at": 3529.6268340686647 }, { "type": "C", "frame": 21, "at": 3529.6268340686647 }, { "type": "O", "frame": 17, "at": 3529.6268340686647 }, { "type": "O", "frame": 18, "at": 3529.6268340686647 }, { "type": "C", "frame": 18, "at": 3533.7804170497743 }, { "type": "C", "frame": 17, "at": 3533.7804170497743 }, { "type": "O", "frame": 19, "at": 3533.7804170497743 }, { "type": "O", "frame": 18, "at": 3533.7804170497743 }, { "type": "C", "frame": 18, "at": 3541.7482920038146 }, { "type": "C", "frame": 19, "at": 3541.7482920038146 }, { "type": "C", "frame": 16, "at": 3541.7482920038146 }, { "type": "C", "frame": 15, "at": 3541.7482920038146 }, { "type": "C", "frame": 14, "at": 3541.7482920038146 }, { "type": "C", "frame": 13, "at": 3541.7482920038146 }, { "type": "C", "frame": 12, "at": 3541.7482920038146 }, { "type": "C", "frame": 11, "at": 3541.7482920038146 }, { "type": "C", "frame": 10, "at": 3541.7482920038146 }, { "type": "C", "frame": 9, "at": 3541.7482920038146 }, { "type": "C", "frame": 8, "at": 3541.7482920038146 }, { "type": "C", "frame": 7, "at": 3541.7482922058107 }, { "type": "C", "frame": 6, "at": 3541.7482922058107 }, { "type": "O", "frame": 20, "at": 3541.7482922058107 }, { "type": "O", "frame": 8, "at": 3541.7482922058107 }, { "type": "O", "frame": 9, "at": 3541.7482922058107 }, { "type": "O", "frame": 10, "at": 3541.7482922058107 }, { "type": "O", "frame": 11, "at": 3541.7482922058107 }, { "type": "O", "frame": 12, "at": 3541.7482922058107 }, { "type": "O", "frame": 13, "at": 3541.7482922058107 }, { "type": "O", "frame": 14, "at": 3541.7482922058107 }, { "type": "O", "frame": 15, "at": 3541.7482922058107 }, { "type": "O", "frame": 16, "at": 3541.7482922058107 }, { "type": "O", "frame": 21, "at": 3541.7482922058107 }, { "type": "O", "frame": 22, "at": 3541.7482922058107 }, { "type": "O", "frame": 23, "at": 3541.7482922058107 }, { "type": "O", "frame": 24, "at": 3541.7482922058107 }, { "type": "O", "frame": 18, "at": 3541.7482922058107 }, { "type": "C", "frame": 18, "at": 3551.164291412537 }, { "type": "C", "frame": 24, "at": 3551.164291412537 }, { "type": "C", "frame": 23, "at": 3551.164291412537 }, { "type": "C", "frame": 22, "at": 3551.164291412537 }, { "type": "C", "frame": 21, "at": 3551.164291412537 }, { "type": "O", "frame": 17, "at": 3551.164292 }, { "type": "O", "frame": 18, "at": 3551.164292 }, { "type": "C", "frame": 18, "at": 3555.260417125885 }, { "type": "C", "frame": 17, "at": 3555.260417125885 }, { "type": "O", "frame": 19, "at": 3555.260417125885 }, { "type": "O", "frame": 18, "at": 3555.260417125885 }, { "type": "C", "frame": 18, "at": 3561.913041607086 }, { "type": "C", "frame": 19, "at": 3561.913041607086 }, { "type": "C", "frame": 16, "at": 3561.913041607086 }, { "type": "C", "frame": 15, "at": 3561.913041607086 }, { "type": "C", "frame": 14, "at": 3561.913041607086 }, { "type": "C", "frame": 13, "at": 3561.913041607086 }, { "type": "C", "frame": 12, "at": 3561.913041607086 }, { "type": "C", "frame": 11, "at": 3561.913041607086 }, { "type": "C", "frame": 10, "at": 3561.913041607086 }, { "type": "C", "frame": 9, "at": 3561.913041607086 }, { "type": "C", "frame": 8, "at": 3561.913041607086 }, { "type": "O", "frame": 18, "at": 3561.913042 }, { "type": "C", "frame": 18, "at": 3563.2450000554963 }, { "type": "C", "frame": 20, "at": 3563.2450000554963 }, { "type": "O", "frame": 6, "at": 3563.2450000554963 }, { "type": "O", "frame": 7, "at": 3563.2450000554963 }, { "type": "O", "frame": 8, "at": 3563.2450000554963 }, { "type": "O", "frame": 9, "at": 3563.2450000554963 }, { "type": "O", "frame": 10, "at": 3563.2450000554963 }, { "type": "O", "frame": 11, "at": 3563.2450000554963 }, { "type": "O", "frame": 12, "at": 3563.2450000554963 }, { "type": "O", "frame": 13, "at": 3563.2450000554963 }, { "type": "O", "frame": 14, "at": 3563.2450000554963 }, { "type": "O", "frame": 15, "at": 3563.2450000554963 }, { "type": "O", "frame": 16, "at": 3563.2450000554963 }, { "type": "O", "frame": 21, "at": 3563.2450000554963 }, { "type": "O", "frame": 22, "at": 3563.2450000554963 }, { "type": "O", "frame": 23, "at": 3563.2450000554963 }, { "type": "O", "frame": 24, "at": 3563.2450000554963 }, { "type": "O", "frame": 18, "at": 3563.2450000554963 }, { "type": "C", "frame": 18, "at": 3568.610000247955 }, { "type": "C", "frame": 24, "at": 3568.610000247955 }, { "type": "O", "frame": 31, "at": 3568.610000247955 }, { "type": "O", "frame": 18, "at": 3568.610000247955 }, { "type": "C", "frame": 18, "at": 3569.9523750400544 }, { "type": "C", "frame": 31, "at": 3569.9523750400544 }, { "type": "O", "frame": 24, "at": 3569.9523750400544 }, { "type": "O", "frame": 18, "at": 3569.9523750400544 }, { "type": "C", "frame": 18, "at": 3571.3066249542235 }, { "type": "C", "frame": 24, "at": 3571.3066249542235 }, { "type": "C", "frame": 23, "at": 3571.3066254806517 }, { "type": "C", "frame": 22, "at": 3571.3066254806517 }, { "type": "C", "frame": 21, "at": 3571.3066254806517 }, { "type": "O", "frame": 17, "at": 3571.3066254806517 }, { "type": "O", "frame": 18, "at": 3571.3066254806517 }, { "type": "C", "frame": 18, "at": 3575.445874801636 }, { "type": "C", "frame": 17, "at": 3575.445874801636 }, { "type": "O", "frame": 19, "at": 3575.445875 }, { "type": "O", "frame": 18, "at": 3575.445875 }, { "type": "C", "frame": 18, "at": 3583.5115001907348 }, { "type": "C", "frame": 19, "at": 3583.5115001907348 }, { "type": "C", "frame": 16, "at": 3583.511502380371 }, { "type": "C", "frame": 15, "at": 3583.511502380371 }, { "type": "C", "frame": 14, "at": 3583.511502380371 }, { "type": "C", "frame": 13, "at": 3583.511502380371 }, { "type": "C", "frame": 12, "at": 3583.511502380371 }, { "type": "C", "frame": 11, "at": 3583.511502380371 }, { "type": "C", "frame": 10, "at": 3583.511502380371 }, { "type": "C", "frame": 9, "at": 3583.511502380371 }, { "type": "C", "frame": 8, "at": 3583.511502380371 }, { "type": "C", "frame": 7, "at": 3583.511502380371 }, { "type": "C", "frame": 6, "at": 3583.511502380371 }, { "type": "O", "frame": 20, "at": 3583.511502380371 }, { "type": "O", "frame": 8, "at": 3583.511502380371 }, { "type": "O", "frame": 9, "at": 3583.511502380371 }, { "type": "O", "frame": 10, "at": 3583.511502380371 }, { "type": "O", "frame": 11, "at": 3583.511502380371 }, { "type": "O", "frame": 12, "at": 3583.511502380371 }, { "type": "O", "frame": 13, "at": 3583.511502380371 }, { "type": "O", "frame": 14, "at": 3583.511502380371 }, { "type": "O", "frame": 15, "at": 3583.511502380371 }, { "type": "O", "frame": 16, "at": 3583.511502380371 }, { "type": "O", "frame": 21, "at": 3583.511502380371 }, { "type": "O", "frame": 22, "at": 3583.511502380371 }, { "type": "O", "frame": 23, "at": 3583.511502380371 }, { "type": "O", "frame": 24, "at": 3583.511502380371 }, { "type": "O", "frame": 18, "at": 3583.511502380371 }, { "type": "C", "frame": 18, "at": 3591.5659996261597 }, { "type": "C", "frame": 24, "at": 3591.5659996261597 }, { "type": "C", "frame": 23, "at": 3591.5659996261597 }, { "type": "C", "frame": 22, "at": 3591.5659996261597 }, { "type": "C", "frame": 21, "at": 3591.5659996261597 }, { "type": "O", "frame": 17, "at": 3591.566 }, { "type": "O", "frame": 18, "at": 3591.566 }, { "type": "C", "frame": 18, "at": 3597.048625007629 }, { "type": "C", "frame": 17, "at": 3597.048625007629 }, { "type": "O", "frame": 19, "at": 3597.048625007629 }, { "type": "O", "frame": 18, "at": 3597.048625007629 }, { "type": "C", "frame": 18, "at": 3599.739708908081 }, { "type": "C", "frame": 19, "at": 3599.739708908081 }, { "type": "C", "frame": 16, "at": 3599.739710449219 }, { "type": "C", "frame": 15, "at": 3599.739710449219 }, { "type": "C", "frame": 14, "at": 3599.739710449219 }, { "type": "C", "frame": 13, "at": 3599.739710449219 }, { "type": "C", "frame": 12, "at": 3599.739710449219 }, { "type": "C", "frame": 11, "at": 3599.739710449219 }, { "type": "C", "frame": 10, "at": 3599.739710449219 }, { "type": "C", "frame": 9, "at": 3599.739710449219 }, { "type": "C", "frame": 8, "at": 3599.739710449219 }, { "type": "C", "frame": 20, "at": 3599.739710449219 }, { "type": "O", "frame": 6, "at": 3599.739710449219 }, { "type": "O", "frame": 7, "at": 3599.739710449219 }, { "type": "O", "frame": 8, "at": 3599.739710449219 }, { "type": "O", "frame": 9, "at": 3599.739710449219 }, { "type": "O", "frame": 10, "at": 3599.739710449219 }, { "type": "O", "frame": 11, "at": 3599.739710449219 }, { "type": "O", "frame": 12, "at": 3599.739710449219 }, { "type": "O", "frame": 13, "at": 3599.739710449219 }, { "type": "O", "frame": 14, "at": 3599.739710449219 }, { "type": "O", "frame": 15, "at": 3599.739710449219 }, { "type": "O", "frame": 16, "at": 3599.739710449219 }, { "type": "O", "frame": 21, "at": 3599.739710449219 }, { "type": "O", "frame": 22, "at": 3599.739710449219 }, { "type": "O", "frame": 23, "at": 3599.739710449219 }, { "type": "O", "frame": 24, "at": 3599.739710449219 }, { "type": "O", "frame": 18, "at": 3599.739710449219 }, { "type": "C", "frame": 18, "at": 3607.8160000842895 }, { "type": "C", "frame": 24, "at": 3607.8160000842895 }, { "type": "C", "frame": 23, "at": 3607.8160000842895 }, { "type": "C", "frame": 22, "at": 3607.8160000842895 }, { "type": "C", "frame": 21, "at": 3607.8160000842895 }, { "type": "O", "frame": 17, "at": 3607.8160000842895 }, { "type": "O", "frame": 18, "at": 3607.8160000842895 }, { "type": "C", "frame": 18, "at": 3613.409792438507 }, { "type": "C", "frame": 17, "at": 3613.409792438507 }, { "type": "O", "frame": 19, "at": 3613.409792438507 }, { "type": "O", "frame": 18, "at": 3613.409792438507 }, { "type": "C", "frame": 18, "at": 3620.0838747560424 }, { "type": "C", "frame": 19, "at": 3620.0838747560424 }, { "type": "C", "frame": 16, "at": 3620.0838747560424 }, { "type": "C", "frame": 15, "at": 3620.0838747560424 }, { "type": "C", "frame": 14, "at": 3620.0838747560424 }, { "type": "C", "frame": 13, "at": 3620.0838747560424 }, { "type": "C", "frame": 12, "at": 3620.0838747560424 }, { "type": "C", "frame": 11, "at": 3620.0838747560424 }, { "type": "C", "frame": 10, "at": 3620.0838747560424 }, { "type": "C", "frame": 9, "at": 3620.0838747560424 }, { "type": "C", "frame": 8, "at": 3620.0838747560424 }, { "type": "C", "frame": 7, "at": 3620.0838747560424 }, { "type": "C", "frame": 6, "at": 3620.0838747560424 }, { "type": "O", "frame": 20, "at": 3620.083875 }, { "type": "O", "frame": 8, "at": 3620.083875 }, { "type": "O", "frame": 9, "at": 3620.083875 }, { "type": "O", "frame": 10, "at": 3620.083875 }, { "type": "O", "frame": 11, "at": 3620.083875 }, { "type": "O", "frame": 12, "at": 3620.083875 }, { "type": "O", "frame": 13, "at": 3620.083875 }, { "type": "O", "frame": 14, "at": 3620.083875 }, { "type": "O", "frame": 15, "at": 3620.083875 }, { "type": "O", "frame": 16, "at": 3620.083875 }, { "type": "O", "frame": 21, "at": 3620.083875 }, { "type": "O", "frame": 22, "at": 3620.083875 }, { "type": "O", "frame": 23, "at": 3620.083875 }, { "type": "O", "frame": 24, "at": 3620.083875 }, { "type": "O", "frame": 18, "at": 3620.083875 }, { "type": "C", "frame": 18, "at": 3628.1190417404173 }, { "type": "C", "frame": 24, "at": 3628.1190417404173 }, { "type": "C", "frame": 23, "at": 3628.1190417404173 }, { "type": "O", "frame": 42, "at": 3628.119042 }, { "type": "O", "frame": 18, "at": 3628.119042 }, { "type": "C", "frame": 18, "at": 3629.4836669771116 }, { "type": "C", "frame": 42, "at": 3629.4836669771116 }, { "type": "C", "frame": 22, "at": 3629.4836669771116 }, { "type": "C", "frame": 21, "at": 3629.4836669771116 }, { "type": "O", "frame": 17, "at": 3629.483667 }, { "type": "O", "frame": 18, "at": 3629.483667 }, { "type": "C", "frame": 18, "at": 3633.6943341333313 }, { "type": "C", "frame": 17, "at": 3633.6943341333313 }, { "type": "O", "frame": 19, "at": 3633.6943341333313 }, { "type": "O", "frame": 18, "at": 3633.6943341333313 }, { "type": "C", "frame": 18, "at": 3641.7414998706663 }, { "type": "C", "frame": 19, "at": 3641.7414998706663 }, { "type": "C", "frame": 16, "at": 3641.741500198364 }, { "type": "C", "frame": 15, "at": 3641.741500198364 }, { "type": "C", "frame": 14, "at": 3641.741500198364 }, { "type": "C", "frame": 13, "at": 3641.741500198364 }, { "type": "C", "frame": 12, "at": 3641.741500198364 }, { "type": "C", "frame": 11, "at": 3641.741500198364 }, { "type": "C", "frame": 10, "at": 3641.741500198364 }, { "type": "C", "frame": 9, "at": 3641.741500198364 }, { "type": "C", "frame": 8, "at": 3641.741500198364 }, { "type": "O", "frame": 18, "at": 3641.741500198364 }, { "type": "C", "frame": 18, "at": 3643.0991250076295 }, { "type": "C", "frame": 20, "at": 3643.099126159668 }, { "type": "O", "frame": 6, "at": 3643.099126159668 }, { "type": "O", "frame": 7, "at": 3643.099126159668 }, { "type": "O", "frame": 8, "at": 3643.099126159668 }, { "type": "O", "frame": 9, "at": 3643.099126159668 }, { "type": "O", "frame": 10, "at": 3643.099126159668 }, { "type": "O", "frame": 11, "at": 3643.099126159668 }, { "type": "O", "frame": 12, "at": 3643.099126159668 }, { "type": "O", "frame": 13, "at": 3643.099126159668 }, { "type": "O", "frame": 14, "at": 3643.099126159668 }, { "type": "O", "frame": 15, "at": 3643.099126159668 }, { "type": "O", "frame": 16, "at": 3643.099126159668 }, { "type": "O", "frame": 21, "at": 3643.099126159668 }, { "type": "O", "frame": 22, "at": 3643.099126159668 }, { "type": "O", "frame": 23, "at": 3643.099126159668 }, { "type": "O", "frame": 29, "at": 3643.099126159668 }, { "type": "O", "frame": 18, "at": 3643.099126159668 }, { "type": "C", "frame": 18, "at": 3644.442249985695 }, { "type": "C", "frame": 29, "at": 3644.442249985695 }, { "type": "O", "frame": 24, "at": 3644.44225 }, { "type": "O", "frame": 18, "at": 3644.44225 }, { "type": "C", "frame": 18, "at": 3651.1784164772034 }, { "type": "C", "frame": 24, "at": 3651.1784164772034 }, { "type": "C", "frame": 23, "at": 3651.1784172973635 }, { "type": "C", "frame": 22, "at": 3651.1784172973635 }, { "type": "C", "frame": 21, "at": 3651.1784172973635 }, { "type": "O", "frame": 17, "at": 3651.1784172973635 }, { "type": "O", "frame": 18, "at": 3651.1784172973635 }, { "type": "C", "frame": 18, "at": 3656.6930840341493 }, { "type": "C", "frame": 17, "at": 3656.6930840341493 }, { "type": "O", "frame": 19, "at": 3656.6930840341493 }, { "type": "O", "frame": 18, "at": 3656.6930840341493 }, { "type": "C", "frame": 18, "at": 3664.6732494815674 }, { "type": "C", "frame": 19, "at": 3664.6732494815674 }, { "type": "C", "frame": 16, "at": 3664.6732541046144 }, { "type": "C", "frame": 15, "at": 3664.6732541046144 }, { "type": "C", "frame": 14, "at": 3664.6732541046144 }, { "type": "C", "frame": 13, "at": 3664.6732541046144 }, { "type": "C", "frame": 12, "at": 3664.6732541046144 }, { "type": "C", "frame": 11, "at": 3664.6732541046144 }, { "type": "C", "frame": 10, "at": 3664.6732541046144 }, { "type": "C", "frame": 9, "at": 3664.6732541046144 }, { "type": "C", "frame": 8, "at": 3664.6732541046144 }, { "type": "C", "frame": 7, "at": 3664.6732541046144 }, { "type": "C", "frame": 6, "at": 3664.6732541046144 }, { "type": "O", "frame": 20, "at": 3664.6732541046144 }, { "type": "O", "frame": 8, "at": 3664.6732541046144 }, { "type": "O", "frame": 9, "at": 3664.6732541046144 }, { "type": "O", "frame": 10, "at": 3664.6732541046144 }, { "type": "O", "frame": 11, "at": 3664.6732541046144 }, { "type": "O", "frame": 12, "at": 3664.6732541046144 }, { "type": "O", "frame": 13, "at": 3664.6732541046144 }, { "type": "O", "frame": 14, "at": 3664.6732541046144 }, { "type": "O", "frame": 15, "at": 3664.6732541046144 }, { "type": "O", "frame": 16, "at": 3664.6732541046144 }, { "type": "O", "frame": 21, "at": 3664.6732541046144 }, { "type": "O", "frame": 22, "at": 3664.6732541046144 }, { "type": "O", "frame": 23, "at": 3664.6732541046144 }, { "type": "O", "frame": 24, "at": 3664.6732541046144 }, { "type": "O", "frame": 18, "at": 3664.6732541046144 }, { "type": "C", "frame": 18, "at": 3672.6847093505858 }, { "type": "C", "frame": 24, "at": 3672.6847093505858 }, { "type": "C", "frame": 23, "at": 3672.6847093505858 }, { "type": "C", "frame": 22, "at": 3672.6847093505858 }, { "type": "C", "frame": 21, "at": 3672.6847093505858 }, { "type": "O", "frame": 17, "at": 3672.6847093505858 }, { "type": "O", "frame": 18, "at": 3672.6847093505858 }, { "type": "C", "frame": 18, "at": 3678.2423748248902 }, { "type": "C", "frame": 17, "at": 3678.2423748248902 }, { "type": "O", "frame": 19, "at": 3678.242375 }, { "type": "O", "frame": 18, "at": 3678.242375 }, { "type": "C", "frame": 18, "at": 3684.9129592018126 }, { "type": "C", "frame": 19, "at": 3684.9129592018126 }, { "type": "C", "frame": 16, "at": 3684.9129617614744 }, { "type": "C", "frame": 15, "at": 3684.9129617614744 }, { "type": "C", "frame": 14, "at": 3684.9129617614744 }, { "type": "C", "frame": 13, "at": 3684.9129617614744 }, { "type": "C", "frame": 12, "at": 3684.9129617614744 }, { "type": "C", "frame": 11, "at": 3684.9129617614744 }, { "type": "C", "frame": 10, "at": 3684.9129617614744 }, { "type": "C", "frame": 9, "at": 3684.9129617614744 }, { "type": "C", "frame": 8, "at": 3684.9129617614744 }, { "type": "C", "frame": 20, "at": 3684.9129617614744 }, { "type": "O", "frame": 6, "at": 3684.9129617614744 }, { "type": "O", "frame": 7, "at": 3684.9129617614744 }, { "type": "O", "frame": 8, "at": 3684.9129617614744 }, { "type": "O", "frame": 9, "at": 3684.9129617614744 }, { "type": "O", "frame": 10, "at": 3684.9129617614744 }, { "type": "O", "frame": 11, "at": 3684.9129617614744 }, { "type": "O", "frame": 12, "at": 3684.9129617614744 }, { "type": "O", "frame": 13, "at": 3684.9129617614744 }, { "type": "O", "frame": 14, "at": 3684.9129617614744 }, { "type": "O", "frame": 15, "at": 3684.9129617614744 }, { "type": "O", "frame": 16, "at": 3684.9129617614744 }, { "type": "O", "frame": 21, "at": 3684.9129617614744 }, { "type": "O", "frame": 22, "at": 3684.9129617614744 }, { "type": "O", "frame": 23, "at": 3684.9129617614744 }, { "type": "O", "frame": 24, "at": 3684.9129617614744 }, { "type": "O", "frame": 18, "at": 3684.9129617614744 }, { "type": "C", "frame": 18, "at": 3691.621874710449 }, { "type": "C", "frame": 24, "at": 3691.621874710449 }, { "type": "O", "frame": 25, "at": 3691.621875 }, { "type": "O", "frame": 18, "at": 3691.621875 }, { "type": "C", "frame": 18, "at": 3692.967833948135 }, { "type": "C", "frame": 25, "at": 3692.967833948135 }, { "type": "O", "frame": 24, "at": 3692.967834 }, { "type": "O", "frame": 18, "at": 3692.967834 }, { "type": "C", "frame": 18, "at": 3694.3410840076294 }, { "type": "C", "frame": 24, "at": 3694.3410840076294 }, { "type": "C", "frame": 23, "at": 3694.3410840076294 }, { "type": "C", "frame": 22, "at": 3694.3410840076294 }, { "type": "C", "frame": 21, "at": 3694.3410840076294 }, { "type": "O", "frame": 17, "at": 3694.3410840076294 }, { "type": "O", "frame": 18, "at": 3694.3410840076294 }, { "type": "C", "frame": 18, "at": 3698.4318337406007 }, { "type": "C", "frame": 17, "at": 3698.4318337406007 }, { "type": "O", "frame": 19, "at": 3698.431834 }, { "type": "O", "frame": 18, "at": 3698.431834 }, { "type": "C", "frame": 18, "at": 3706.4139592822876 }, { "type": "C", "frame": 19, "at": 3706.4139592822876 }, { "type": "C", "frame": 16, "at": 3706.413960358032 }, { "type": "C", "frame": 15, "at": 3706.413960358032 }, { "type": "C", "frame": 14, "at": 3706.413960358032 }, { "type": "C", "frame": 13, "at": 3706.413960358032 }, { "type": "C", "frame": 12, "at": 3706.413960358032 }, { "type": "C", "frame": 11, "at": 3706.413960358032 }, { "type": "C", "frame": 10, "at": 3706.413960358032 }, { "type": "C", "frame": 9, "at": 3706.413960358032 }, { "type": "C", "frame": 8, "at": 3706.413960358032 }, { "type": "C", "frame": 7, "at": 3706.413960358032 }, { "type": "C", "frame": 6, "at": 3706.413960358032 }, { "type": "O", "frame": 20, "at": 3706.413960358032 }, { "type": "O", "frame": 8, "at": 3706.413960358032 }, { "type": "O", "frame": 9, "at": 3706.413960358032 }, { "type": "O", "frame": 10, "at": 3706.413960358032 }, { "type": "O", "frame": 11, "at": 3706.413960358032 }, { "type": "O", "frame": 12, "at": 3706.413960358032 }, { "type": "O", "frame": 13, "at": 3706.413960358032 }, { "type": "O", "frame": 14, "at": 3706.413960358032 }, { "type": "O", "frame": 15, "at": 3706.413960358032 }, { "type": "O", "frame": 16, "at": 3706.413960358032 }, { "type": "O", "frame": 21, "at": 3706.413960358032 }, { "type": "O", "frame": 22, "at": 3706.413960358032 }, { "type": "O", "frame": 23, "at": 3706.413960358032 }, { "type": "O", "frame": 24, "at": 3706.413960358032 }, { "type": "O", "frame": 18, "at": 3706.413960358032 }, { "type": "C", "frame": 18, "at": 3715.8476242755737 }, { "type": "C", "frame": 24, "at": 3715.8476242755737 }, { "type": "C", "frame": 23, "at": 3715.8476242755737 }, { "type": "C", "frame": 22, "at": 3715.8476242755737 }, { "type": "C", "frame": 21, "at": 3715.8476242755737 }, { "type": "O", "frame": 17, "at": 3715.847625 }, { "type": "O", "frame": 18, "at": 3715.847625 }, { "type": "C", "frame": 18, "at": 3719.9102918930053 }, { "type": "C", "frame": 17, "at": 3719.9102918930053 }, { "type": "O", "frame": 19, "at": 3719.910292 }, { "type": "O", "frame": 18, "at": 3719.910292 }, { "type": "C", "frame": 18, "at": 3722.62499985141 }, { "type": "C", "frame": 19, "at": 3722.62499985141 }, { "type": "C", "frame": 16, "at": 3722.62499985141 }, { "type": "C", "frame": 15, "at": 3722.62499985141 }, { "type": "C", "frame": 14, "at": 3722.62499985141 }, { "type": "C", "frame": 13, "at": 3722.62499985141 }, { "type": "C", "frame": 12, "at": 3722.62499985141 }, { "type": "C", "frame": 11, "at": 3722.62499985141 }, { "type": "C", "frame": 10, "at": 3722.62499985141 }, { "type": "C", "frame": 9, "at": 3722.62499985141 }, { "type": "C", "frame": 8, "at": 3722.62499985141 }, { "type": "C", "frame": 20, "at": 3722.62499985141 }, { "type": "O", "frame": 6, "at": 3722.625 }, { "type": "O", "frame": 7, "at": 3722.625 }, { "type": "O", "frame": 8, "at": 3722.625 }, { "type": "O", "frame": 9, "at": 3722.625 }, { "type": "O", "frame": 10, "at": 3722.625 }, { "type": "O", "frame": 11, "at": 3722.625 }, { "type": "O", "frame": 12, "at": 3722.625 }, { "type": "O", "frame": 13, "at": 3722.625 }, { "type": "O", "frame": 14, "at": 3722.625 }, { "type": "O", "frame": 15, "at": 3722.625 }, { "type": "O", "frame": 16, "at": 3722.625 }, { "type": "O", "frame": 21, "at": 3722.625 }, { "type": "O", "frame": 22, "at": 3722.625 }, { "type": "O", "frame": 23, "at": 3722.625 }, { "type": "O", "frame": 24, "at": 3722.625 }, { "type": "O", "frame": 18, "at": 3722.625 }, { "type": "C", "frame": 18, "at": 3729.327667236328 }, { "type": "C", "frame": 24, "at": 3729.327667236328 }, { "type": "O", "frame": 26, "at": 3729.327667236328 }, { "type": "O", "frame": 18, "at": 3729.327667236328 }, { "type": "C", "frame": 18, "at": 3730.6889170429154 }, { "type": "C", "frame": 26, "at": 3730.6889170429154 }, { "type": "C", "frame": 23, "at": 3730.688917160034 }, { "type": "C", "frame": 22, "at": 3730.688917160034 }, { "type": "C", "frame": 21, "at": 3730.688917160034 }, { "type": "O", "frame": 17, "at": 3730.688917160034 }, { "type": "O", "frame": 18, "at": 3730.688917160034 }, { "type": "C", "frame": 18, "at": 3734.8182500192565 }, { "type": "C", "frame": 17, "at": 3734.8182500192565 }, { "type": "O", "frame": 19, "at": 3734.8182500192565 }, { "type": "O", "frame": 18, "at": 3734.8182500192565 }, { "type": "C", "frame": 18, "at": 3742.8054998512266 }, { "type": "C", "frame": 19, "at": 3742.8054998512266 }, { "type": "C", "frame": 16, "at": 3742.8055000305176 }, { "type": "C", "frame": 15, "at": 3742.8055000305176 }, { "type": "C", "frame": 14, "at": 3742.8055000305176 }, { "type": "C", "frame": 13, "at": 3742.8055000305176 }, { "type": "C", "frame": 12, "at": 3742.8055000305176 }, { "type": "C", "frame": 11, "at": 3742.8055000305176 }, { "type": "C", "frame": 10, "at": 3742.8055000305176 }, { "type": "C", "frame": 9, "at": 3742.8055000305176 }, { "type": "C", "frame": 8, "at": 3742.8055000305176 }, { "type": "C", "frame": 7, "at": 3742.8055000305176 }, { "type": "C", "frame": 6, "at": 3742.8055000305176 }, { "type": "O", "frame": 20, "at": 3742.8055000305176 }, { "type": "O", "frame": 8, "at": 3742.8055000305176 }, { "type": "O", "frame": 9, "at": 3742.8055000305176 }, { "type": "O", "frame": 10, "at": 3742.8055000305176 }, { "type": "O", "frame": 11, "at": 3742.8055000305176 }, { "type": "O", "frame": 12, "at": 3742.8055000305176 }, { "type": "O", "frame": 13, "at": 3742.8055000305176 }, { "type": "O", "frame": 14, "at": 3742.8055000305176 }, { "type": "O", "frame": 15, "at": 3742.8055000305176 }, { "type": "O", "frame": 16, "at": 3742.8055000305176 }, { "type": "O", "frame": 21, "at": 3742.8055000305176 }, { "type": "O", "frame": 22, "at": 3742.8055000305176 }, { "type": "O", "frame": 23, "at": 3742.8055000305176 }, { "type": "O", "frame": 24, "at": 3742.8055000305176 }, { "type": "O", "frame": 18, "at": 3742.8055000305176 }, { "type": "C", "frame": 18, "at": 3750.8607921295165 }, { "type": "C", "frame": 24, "at": 3750.8607921295165 }, { "type": "C", "frame": 23, "at": 3750.8607921295165 }, { "type": "C", "frame": 22, "at": 3750.8607921295165 }, { "type": "C", "frame": 21, "at": 3750.8607921295165 }, { "type": "O", "frame": 17, "at": 3750.8607921295165 }, { "type": "O", "frame": 18, "at": 3750.8607921295165 }, { "type": "C", "frame": 18, "at": 3756.3151667901916 }, { "type": "C", "frame": 17, "at": 3756.3151667901916 }, { "type": "O", "frame": 19, "at": 3756.315167 }, { "type": "O", "frame": 18, "at": 3756.315167 }, { "type": "C", "frame": 18, "at": 3757.660334040825 }, { "type": "C", "frame": 19, "at": 3757.660334040825 }, { "type": "C", "frame": 16, "at": 3757.660334040825 }, { "type": "C", "frame": 15, "at": 3757.660334040825 }, { "type": "C", "frame": 14, "at": 3757.660334040825 }, { "type": "C", "frame": 13, "at": 3757.660334040825 }, { "type": "C", "frame": 12, "at": 3757.660334040825 }, { "type": "C", "frame": 11, "at": 3757.660334040825 }, { "type": "C", "frame": 10, "at": 3757.660334040825 }, { "type": "C", "frame": 9, "at": 3757.660334040825 }, { "type": "C", "frame": 8, "at": 3757.660334040825 }, { "type": "C", "frame": 20, "at": 3757.660334040825 }, { "type": "O", "frame": 6, "at": 3757.660334040825 }, { "type": "O", "frame": 7, "at": 3757.660334040825 }, { "type": "O", "frame": 8, "at": 3757.660334040825 }, { "type": "O", "frame": 9, "at": 3757.660334040825 }, { "type": "O", "frame": 10, "at": 3757.660334040825 }, { "type": "O", "frame": 11, "at": 3757.660334040825 }, { "type": "O", "frame": 12, "at": 3757.660334040825 }, { "type": "O", "frame": 13, "at": 3757.660334040825 }, { "type": "O", "frame": 14, "at": 3757.660334040825 }, { "type": "O", "frame": 15, "at": 3757.660334040825 }, { "type": "O", "frame": 16, "at": 3757.660334040825 }, { "type": "O", "frame": 21, "at": 3757.660334040825 }, { "type": "O", "frame": 22, "at": 3757.660334040825 }, { "type": "O", "frame": 23, "at": 3757.660334040825 }, { "type": "O", "frame": 24, "at": 3757.660334040825 }, { "type": "O", "frame": 18, "at": 3757.660334040825 }, { "type": "C", "frame": 18, "at": 3765.7305415958253 }, { "type": "C", "frame": 24, "at": 3765.7305415958253 }, { "type": "C", "frame": 23, "at": 3765.7305415958253 }, { "type": "C", "frame": 22, "at": 3765.7305415958253 }, { "type": "C", "frame": 21, "at": 3765.7305415958253 }, { "type": "O", "frame": 17, "at": 3765.730542 }, { "type": "O", "frame": 18, "at": 3765.730542 }, { "type": "C", "frame": 18, "at": 3771.2017090875547 }, { "type": "C", "frame": 17, "at": 3771.2017090875547 }, { "type": "O", "frame": 19, "at": 3771.2017090875547 }, { "type": "O", "frame": 18, "at": 3771.2017090875547 }, { "type": "C", "frame": 18, "at": 3777.89537545813 }, { "type": "C", "frame": 19, "at": 3777.89537545813 }, { "type": "C", "frame": 16, "at": 3777.89537545813 }, { "type": "C", "frame": 15, "at": 3777.89537545813 }, { "type": "C", "frame": 14, "at": 3777.89537545813 }, { "type": "C", "frame": 13, "at": 3777.89537545813 }, { "type": "C", "frame": 12, "at": 3777.89537545813 }, { "type": "C", "frame": 11, "at": 3777.89537545813 }, { "type": "C", "frame": 10, "at": 3777.89537545813 }, { "type": "C", "frame": 9, "at": 3777.89537545813 }, { "type": "C", "frame": 8, "at": 3777.89537545813 }, { "type": "C", "frame": 7, "at": 3777.89537545813 }, { "type": "C", "frame": 6, "at": 3777.89537545813 }, { "type": "O", "frame": 20, "at": 3777.89537545813 }, { "type": "O", "frame": 8, "at": 3777.89537545813 }, { "type": "O", "frame": 9, "at": 3777.89537545813 }, { "type": "O", "frame": 10, "at": 3777.89537545813 }, { "type": "O", "frame": 11, "at": 3777.89537545813 }, { "type": "O", "frame": 12, "at": 3777.89537545813 }, { "type": "O", "frame": 13, "at": 3777.89537545813 }, { "type": "O", "frame": 14, "at": 3777.89537545813 }, { "type": "O", "frame": 15, "at": 3777.89537545813 }, { "type": "O", "frame": 16, "at": 3777.89537545813 }, { "type": "O", "frame": 21, "at": 3777.89537545813 }, { "type": "O", "frame": 22, "at": 3777.89537545813 }, { "type": "O", "frame": 23, "at": 3777.89537545813 }, { "type": "O", "frame": 24, "at": 3777.89537545813 }, { "type": "O", "frame": 18, "at": 3777.89537545813 }, { "type": "C", "frame": 18, "at": 3780.5824169979096 }, { "type": "C", "frame": 24, "at": 3780.5824169979096 }, { "type": "O", "frame": 31, "at": 3780.582417 }, { "type": "O", "frame": 18, "at": 3780.582417 }, { "type": "C", "frame": 18, "at": 3781.915374983017 }, { "type": "C", "frame": 31, "at": 3781.915374983017 }, { "type": "O", "frame": 29, "at": 3781.915375 }, { "type": "O", "frame": 18, "at": 3781.915375 }, { "type": "C", "frame": 18, "at": 3783.252459054947 }, { "type": "C", "frame": 29, "at": 3783.252459054947 }, { "type": "O", "frame": 24, "at": 3783.252459054947 }, { "type": "O", "frame": 18, "at": 3783.252459054947 }, { "type": "C", "frame": 18, "at": 3787.283167312988 }, { "type": "C", "frame": 24, "at": 3787.283167312988 }, { "type": "C", "frame": 23, "at": 3787.283167312988 }, { "type": "C", "frame": 22, "at": 3787.283167312988 }, { "type": "C", "frame": 21, "at": 3787.283167312988 }, { "type": "O", "frame": 17, "at": 3787.283167312988 }, { "type": "O", "frame": 18, "at": 3787.283167312988 }, { "type": "C", "frame": 18, "at": 3791.4418750955506 }, { "type": "C", "frame": 17, "at": 3791.4418750955506 }, { "type": "O", "frame": 19, "at": 3791.4418750955506 }, { "type": "O", "frame": 18, "at": 3791.4418750955506 }, { "type": "C", "frame": 18, "at": 3799.472374458313 }, { "type": "C", "frame": 19, "at": 3799.472374458313 }, { "type": "C", "frame": 16, "at": 3799.472374458313 }, { "type": "C", "frame": 15, "at": 3799.472374458313 }, { "type": "C", "frame": 14, "at": 3799.472374458313 }, { "type": "C", "frame": 13, "at": 3799.472374458313 }, { "type": "C", "frame": 12, "at": 3799.472374458313 }, { "type": "C", "frame": 11, "at": 3799.472374458313 }, { "type": "C", "frame": 10, "at": 3799.472374458313 }, { "type": "C", "frame": 9, "at": 3799.472374458313 }, { "type": "C", "frame": 8, "at": 3799.472374458313 }, { "type": "C", "frame": 20, "at": 3799.472374458313 }, { "type": "O", "frame": 6, "at": 3799.472375 }, { "type": "O", "frame": 7, "at": 3799.472375 }, { "type": "O", "frame": 8, "at": 3799.472375 }, { "type": "O", "frame": 9, "at": 3799.472375 }, { "type": "O", "frame": 10, "at": 3799.472375 }, { "type": "O", "frame": 11, "at": 3799.472375 }, { "type": "O", "frame": 12, "at": 3799.472375 }, { "type": "O", "frame": 13, "at": 3799.472375 }, { "type": "O", "frame": 14, "at": 3799.472375 }, { "type": "O", "frame": 15, "at": 3799.472375 }, { "type": "O", "frame": 16, "at": 3799.472375 }, { "type": "O", "frame": 21, "at": 3799.472375 }, { "type": "O", "frame": 22, "at": 3799.472375 }, { "type": "O", "frame": 23, "at": 3799.472375 }, { "type": "O", "frame": 24, "at": 3799.472375 }, { "type": "O", "frame": 18, "at": 3799.472375 }, { "type": "C", "frame": 18, "at": 3800.8075420503615 }, { "type": "C", "frame": 24, "at": 3800.8075420503615 }, { "type": "O", "frame": 29, "at": 3800.8075420503615 }, { "type": "O", "frame": 18, "at": 3800.8075420503615 }, { "type": "C", "frame": 18, "at": 3802.1551250554962 }, { "type": "C", "frame": 29, "at": 3802.1551250554962 }, { "type": "O", "frame": 24, "at": 3802.1551250554962 }, { "type": "O", "frame": 18, "at": 3802.1551250554962 }, { "type": "C", "frame": 18, "at": 3807.5173338432314 }, { "type": "C", "frame": 24, "at": 3807.5173338432314 }, { "type": "C", "frame": 23, "at": 3807.517334068298 }, { "type": "C", "frame": 22, "at": 3807.517334068298 }, { "type": "C", "frame": 21, "at": 3807.517334068298 }, { "type": "O", "frame": 17, "at": 3807.517334068298 }, { "type": "O", "frame": 18, "at": 3807.517334068298 }, { "type": "C", "frame": 18, "at": 3811.7142090953676 }, { "type": "C", "frame": 17, "at": 3811.7142090953676 }, { "type": "O", "frame": 19, "at": 3811.7142090953676 }, { "type": "O", "frame": 18, "at": 3811.7142090953676 }, { "type": "C", "frame": 18, "at": 3814.436292091736 }, { "type": "C", "frame": 19, "at": 3814.436292091736 }, { "type": "C", "frame": 16, "at": 3814.436292091736 }, { "type": "C", "frame": 15, "at": 3814.436292091736 }, { "type": "C", "frame": 14, "at": 3814.436292091736 }, { "type": "C", "frame": 13, "at": 3814.436292091736 }, { "type": "C", "frame": 12, "at": 3814.436292091736 }, { "type": "C", "frame": 11, "at": 3814.436292091736 }, { "type": "C", "frame": 10, "at": 3814.436292091736 }, { "type": "C", "frame": 9, "at": 3814.436292091736 }, { "type": "C", "frame": 8, "at": 3814.436292091736 }, { "type": "C", "frame": 7, "at": 3814.436292091736 }, { "type": "C", "frame": 6, "at": 3814.436292091736 }, { "type": "O", "frame": 20, "at": 3814.436292091736 }, { "type": "O", "frame": 8, "at": 3814.436292091736 }, { "type": "O", "frame": 9, "at": 3814.436292091736 }, { "type": "O", "frame": 10, "at": 3814.436292091736 }, { "type": "O", "frame": 11, "at": 3814.436292091736 }, { "type": "O", "frame": 12, "at": 3814.436292091736 }, { "type": "O", "frame": 13, "at": 3814.436292091736 }, { "type": "O", "frame": 14, "at": 3814.436292091736 }, { "type": "O", "frame": 15, "at": 3814.436292091736 }, { "type": "O", "frame": 16, "at": 3814.436292091736 }, { "type": "O", "frame": 21, "at": 3814.436292091736 }, { "type": "O", "frame": 22, "at": 3814.436292091736 }, { "type": "O", "frame": 23, "at": 3814.436292091736 }, { "type": "O", "frame": 24, "at": 3814.436292091736 }, { "type": "O", "frame": 18, "at": 3814.436292091736 }, { "type": "C", "frame": 18, "at": 3822.513124771301 }, { "type": "C", "frame": 24, "at": 3822.513124771301 }, { "type": "C", "frame": 23, "at": 3822.513124771301 }, { "type": "C", "frame": 22, "at": 3822.513124771301 }, { "type": "C", "frame": 21, "at": 3822.513124771301 }, { "type": "O", "frame": 17, "at": 3822.513125 }, { "type": "O", "frame": 18, "at": 3822.513125 }, { "type": "C", "frame": 18, "at": 3827.966666755676 }, { "type": "C", "frame": 17, "at": 3827.966666755676 }, { "type": "O", "frame": 19, "at": 3827.966667 }, { "type": "O", "frame": 18, "at": 3827.966667 }, { "type": "C", "frame": 18, "at": 3834.6260836755678 }, { "type": "C", "frame": 19, "at": 3834.6260836755678 }, { "type": "C", "frame": 16, "at": 3834.6260836755678 }, { "type": "C", "frame": 15, "at": 3834.6260836755678 }, { "type": "C", "frame": 14, "at": 3834.6260836755678 }, { "type": "C", "frame": 13, "at": 3834.6260836755678 }, { "type": "C", "frame": 12, "at": 3834.6260836755678 }, { "type": "C", "frame": 11, "at": 3834.6260836755678 }, { "type": "C", "frame": 10, "at": 3834.6260836755678 }, { "type": "C", "frame": 9, "at": 3834.6260836755678 }, { "type": "C", "frame": 8, "at": 3834.6260836755678 }, { "type": "O", "frame": 18, "at": 3834.626084 }, { "type": "C", "frame": 18, "at": 3835.9708750547256 }, { "type": "C", "frame": 20, "at": 3835.9708750547256 }, { "type": "O", "frame": 6, "at": 3835.9708750547256 }, { "type": "O", "frame": 7, "at": 3835.9708750547256 }, { "type": "O", "frame": 8, "at": 3835.9708750547256 }, { "type": "O", "frame": 9, "at": 3835.9708750547256 }, { "type": "O", "frame": 10, "at": 3835.9708750547256 }, { "type": "O", "frame": 11, "at": 3835.9708750547256 }, { "type": "O", "frame": 12, "at": 3835.9708750547256 }, { "type": "O", "frame": 13, "at": 3835.9708750547256 }, { "type": "O", "frame": 14, "at": 3835.9708750547256 }, { "type": "O", "frame": 15, "at": 3835.9708750547256 }, { "type": "O", "frame": 16, "at": 3835.9708750547256 }, { "type": "O", "frame": 21, "at": 3835.9708750547256 }, { "type": "O", "frame": 22, "at": 3835.9708750547256 }, { "type": "O", "frame": 23, "at": 3835.9708750547256 }, { "type": "O", "frame": 24, "at": 3835.9708750547256 }, { "type": "O", "frame": 18, "at": 3835.9708750547256 }, { "type": "C", "frame": 18, "at": 3844.033833717346 }, { "type": "C", "frame": 24, "at": 3844.033833717346 }, { "type": "C", "frame": 23, "at": 3844.033833717346 }, { "type": "C", "frame": 22, "at": 3844.033833717346 }, { "type": "C", "frame": 21, "at": 3844.033833717346 }, { "type": "O", "frame": 17, "at": 3844.033834 }, { "type": "O", "frame": 18, "at": 3844.033834 }, { "type": "C", "frame": 18, "at": 3848.113542099365 }, { "type": "C", "frame": 17, "at": 3848.113542099365 }, { "type": "O", "frame": 19, "at": 3848.113542099365 }, { "type": "O", "frame": 18, "at": 3848.113542099365 }, { "type": "C", "frame": 18, "at": 3854.8147086297913 }, { "type": "C", "frame": 19, "at": 3854.8147086297913 }, { "type": "C", "frame": 16, "at": 3854.81470892334 }, { "type": "C", "frame": 15, "at": 3854.81470892334 }, { "type": "C", "frame": 14, "at": 3854.81470892334 }, { "type": "C", "frame": 13, "at": 3854.81470892334 }, { "type": "C", "frame": 12, "at": 3854.81470892334 }, { "type": "C", "frame": 11, "at": 3854.81470892334 }, { "type": "C", "frame": 10, "at": 3854.81470892334 }, { "type": "C", "frame": 9, "at": 3854.81470892334 }, { "type": "C", "frame": 8, "at": 3854.81470892334 }, { "type": "C", "frame": 7, "at": 3854.81470892334 }, { "type": "C", "frame": 6, "at": 3854.81470892334 }, { "type": "O", "frame": 20, "at": 3854.814709 }, { "type": "O", "frame": 8, "at": 3854.814709 }, { "type": "O", "frame": 9, "at": 3854.814709 }, { "type": "O", "frame": 10, "at": 3854.814709 }, { "type": "O", "frame": 11, "at": 3854.814709 }, { "type": "O", "frame": 12, "at": 3854.814709 }, { "type": "O", "frame": 13, "at": 3854.814709 }, { "type": "O", "frame": 14, "at": 3854.814709 }, { "type": "O", "frame": 15, "at": 3854.814709 }, { "type": "O", "frame": 16, "at": 3854.814709 }, { "type": "O", "frame": 21, "at": 3854.814709 }, { "type": "O", "frame": 22, "at": 3854.814709 }, { "type": "O", "frame": 23, "at": 3854.814709 }, { "type": "O", "frame": 24, "at": 3854.814709 }, { "type": "O", "frame": 18, "at": 3854.814709 }, { "type": "C", "frame": 18, "at": 3864.250083259949 }, { "type": "C", "frame": 24, "at": 3864.250083259949 }, { "type": "C", "frame": 23, "at": 3864.250083259949 }, { "type": "C", "frame": 22, "at": 3864.250083259949 }, { "type": "C", "frame": 21, "at": 3864.250083259949 }, { "type": "O", "frame": 17, "at": 3864.250084 }, { "type": "O", "frame": 18, "at": 3864.250084 }, { "type": "C", "frame": 18, "at": 3868.3985839656675 }, { "type": "C", "frame": 17, "at": 3868.3985839656675 }, { "type": "O", "frame": 19, "at": 3868.398584 }, { "type": "O", "frame": 18, "at": 3868.398584 }, { "type": "C", "frame": 18, "at": 3876.452834717163 }, { "type": "C", "frame": 19, "at": 3876.452834717163 }, { "type": "C", "frame": 16, "at": 3876.4528353732912 }, { "type": "C", "frame": 15, "at": 3876.4528353732912 }, { "type": "C", "frame": 14, "at": 3876.4528353732912 }, { "type": "C", "frame": 13, "at": 3876.4528353732912 }, { "type": "C", "frame": 12, "at": 3876.4528353732912 }, { "type": "C", "frame": 11, "at": 3876.4528353732912 }, { "type": "C", "frame": 10, "at": 3876.4528353732912 }, { "type": "C", "frame": 9, "at": 3876.4528353732912 }, { "type": "C", "frame": 8, "at": 3876.4528353732912 }, { "type": "C", "frame": 20, "at": 3876.4528353732912 }, { "type": "O", "frame": 6, "at": 3876.4528353732912 }, { "type": "O", "frame": 7, "at": 3876.4528353732912 }, { "type": "O", "frame": 8, "at": 3876.4528353732912 }, { "type": "O", "frame": 9, "at": 3876.4528353732912 }, { "type": "O", "frame": 10, "at": 3876.4528353732912 }, { "type": "O", "frame": 11, "at": 3876.4528353732912 }, { "type": "O", "frame": 12, "at": 3876.4528353732912 }, { "type": "O", "frame": 13, "at": 3876.4528353732912 }, { "type": "O", "frame": 14, "at": 3876.4528353732912 }, { "type": "O", "frame": 15, "at": 3876.4528353732912 }, { "type": "O", "frame": 16, "at": 3876.4528353732912 }, { "type": "O", "frame": 21, "at": 3876.4528353732912 }, { "type": "O", "frame": 22, "at": 3876.4528353732912 }, { "type": "O", "frame": 23, "at": 3876.4528353732912 }, { "type": "O", "frame": 24, "at": 3876.4528353732912 }, { "type": "O", "frame": 18, "at": 3876.4528353732912 }, { "type": "C", "frame": 18, "at": 3883.164542068848 }, { "type": "C", "frame": 24, "at": 3883.164542068848 }, { "type": "O", "frame": 31, "at": 3883.164542068848 }, { "type": "O", "frame": 18, "at": 3883.164542068848 }, { "type": "C", "frame": 18, "at": 3884.5315419837875 }, { "type": "C", "frame": 31, "at": 3884.5315419837875 }, { "type": "C", "frame": 23, "at": 3884.5315419837875 }, { "type": "C", "frame": 22, "at": 3884.5315419837875 }, { "type": "C", "frame": 21, "at": 3884.5315419837875 }, { "type": "O", "frame": 17, "at": 3884.531542 }, { "type": "O", "frame": 18, "at": 3884.531542 }, { "type": "C", "frame": 18, "at": 3888.6484591333315 }, { "type": "C", "frame": 17, "at": 3888.6484591333315 }, { "type": "O", "frame": 19, "at": 3888.6484591333315 }, { "type": "O", "frame": 18, "at": 3888.6484591333315 }, { "type": "C", "frame": 18, "at": 3896.6455421871033 }, { "type": "C", "frame": 19, "at": 3896.6455421871033 }, { "type": "C", "frame": 16, "at": 3896.6455421871033 }, { "type": "C", "frame": 15, "at": 3896.6455421871033 }, { "type": "C", "frame": 14, "at": 3896.6455421871033 }, { "type": "C", "frame": 13, "at": 3896.6455421871033 }, { "type": "C", "frame": 12, "at": 3896.6455421871033 }, { "type": "C", "frame": 11, "at": 3896.6455421871033 }, { "type": "C", "frame": 10, "at": 3896.6455421871033 }, { "type": "C", "frame": 9, "at": 3896.6455421871033 }, { "type": "C", "frame": 8, "at": 3896.6455421871033 }, { "type": "C", "frame": 7, "at": 3896.6455421871033 }, { "type": "C", "frame": 6, "at": 3896.6455421871033 }, { "type": "O", "frame": 20, "at": 3896.6455421871033 }, { "type": "O", "frame": 8, "at": 3896.6455421871033 }, { "type": "O", "frame": 9, "at": 3896.6455421871033 }, { "type": "O", "frame": 10, "at": 3896.6455421871033 }, { "type": "O", "frame": 11, "at": 3896.6455421871033 }, { "type": "O", "frame": 12, "at": 3896.6455421871033 }, { "type": "O", "frame": 13, "at": 3896.6455421871033 }, { "type": "O", "frame": 14, "at": 3896.6455421871033 }, { "type": "O", "frame": 15, "at": 3896.6455421871033 }, { "type": "O", "frame": 16, "at": 3896.6455421871033 }, { "type": "O", "frame": 21, "at": 3896.6455421871033 }, { "type": "O", "frame": 22, "at": 3896.6455421871033 }, { "type": "O", "frame": 23, "at": 3896.6455421871033 }, { "type": "O", "frame": 24, "at": 3896.6455421871033 }, { "type": "O", "frame": 18, "at": 3896.6455421871033 }, { "type": "C", "frame": 18, "at": 3904.7107923967287 }, { "type": "C", "frame": 24, "at": 3904.7107923967287 }, { "type": "C", "frame": 23, "at": 3904.7107923967287 }, { "type": "C", "frame": 22, "at": 3904.7107923967287 }, { "type": "C", "frame": 21, "at": 3904.7107923967287 }, { "type": "O", "frame": 17, "at": 3904.7107923967287 }, { "type": "O", "frame": 18, "at": 3904.7107923967287 }, { "type": "C", "frame": 18, "at": 3910.195833618347 }, { "type": "C", "frame": 17, "at": 3910.195833618347 }, { "type": "O", "frame": 19, "at": 3910.195834 }, { "type": "O", "frame": 18, "at": 3910.195834 }, { "type": "C", "frame": 18, "at": 3911.5390840362397 }, { "type": "C", "frame": 19, "at": 3911.5390840362397 }, { "type": "C", "frame": 16, "at": 3911.5390852434084 }, { "type": "C", "frame": 15, "at": 3911.5390852434084 }, { "type": "C", "frame": 14, "at": 3911.5390852434084 }, { "type": "C", "frame": 13, "at": 3911.5390852434084 }, { "type": "C", "frame": 12, "at": 3911.5390852434084 }, { "type": "C", "frame": 11, "at": 3911.5390852434084 }, { "type": "C", "frame": 10, "at": 3911.5390852434084 }, { "type": "C", "frame": 9, "at": 3911.5390852434084 }, { "type": "C", "frame": 8, "at": 3911.5390852434084 }, { "type": "C", "frame": 20, "at": 3911.5390852434084 }, { "type": "O", "frame": 6, "at": 3911.5390852434084 }, { "type": "O", "frame": 7, "at": 3911.5390852434084 }, { "type": "O", "frame": 8, "at": 3911.5390852434084 }, { "type": "O", "frame": 9, "at": 3911.5390852434084 }, { "type": "O", "frame": 10, "at": 3911.5390852434084 }, { "type": "O", "frame": 11, "at": 3911.5390852434084 }, { "type": "O", "frame": 12, "at": 3911.5390852434084 }, { "type": "O", "frame": 13, "at": 3911.5390852434084 }, { "type": "O", "frame": 14, "at": 3911.5390852434084 }, { "type": "O", "frame": 15, "at": 3911.5390852434084 }, { "type": "O", "frame": 16, "at": 3911.5390852434084 }, { "type": "O", "frame": 21, "at": 3911.5390852434084 }, { "type": "O", "frame": 22, "at": 3911.5390852434084 }, { "type": "O", "frame": 23, "at": 3911.5390852434084 }, { "type": "O", "frame": 31, "at": 3911.5390852434084 }, { "type": "O", "frame": 18, "at": 3911.5390852434084 }, { "type": "C", "frame": 18, "at": 3912.882458967575 }, { "type": "C", "frame": 31, "at": 3912.882458967575 }, { "type": "O", "frame": 24, "at": 3912.882459 }, { "type": "O", "frame": 18, "at": 3912.882459 }, { "type": "C", "frame": 18, "at": 3914.2268750223006 }, { "type": "C", "frame": 24, "at": 3914.2268750223006 }, { "type": "O", "frame": 29, "at": 3914.2268750223006 }, { "type": "O", "frame": 18, "at": 3914.2268750223006 }, { "type": "C", "frame": 18, "at": 3915.568625025749 }, { "type": "C", "frame": 29, "at": 3915.568625025749 }, { "type": "O", "frame": 24, "at": 3915.568625025749 }, { "type": "O", "frame": 18, "at": 3915.568625025749 }, { "type": "C", "frame": 18, "at": 3920.9977093009948 }, { "type": "C", "frame": 24, "at": 3920.9977093009948 }, { "type": "C", "frame": 23, "at": 3920.9977093009948 }, { "type": "C", "frame": 22, "at": 3920.9977093009948 }, { "type": "C", "frame": 21, "at": 3920.9977093009948 }, { "type": "O", "frame": 17, "at": 3920.9977093009948 }, { "type": "O", "frame": 18, "at": 3920.9977093009948 }, { "type": "C", "frame": 18, "at": 3925.100542271027 }, { "type": "C", "frame": 17, "at": 3925.100542271027 }, { "type": "O", "frame": 19, "at": 3925.100542271027 }, { "type": "O", "frame": 18, "at": 3925.100542271027 }, { "type": "C", "frame": 18, "at": 3933.149875572388 }, { "type": "C", "frame": 19, "at": 3933.149875572388 }, { "type": "C", "frame": 16, "at": 3933.149875572388 }, { "type": "C", "frame": 15, "at": 3933.149875572388 }, { "type": "C", "frame": 14, "at": 3933.149875572388 }, { "type": "C", "frame": 13, "at": 3933.149875572388 }, { "type": "C", "frame": 12, "at": 3933.149875572388 }, { "type": "C", "frame": 11, "at": 3933.149875572388 }, { "type": "C", "frame": 10, "at": 3933.149875572388 }, { "type": "C", "frame": 9, "at": 3933.149875572388 }, { "type": "C", "frame": 8, "at": 3933.149875572388 }, { "type": "C", "frame": 7, "at": 3933.149875572388 }, { "type": "C", "frame": 6, "at": 3933.149875572388 }, { "type": "O", "frame": 20, "at": 3933.149875572388 }, { "type": "O", "frame": 8, "at": 3933.149875572388 }, { "type": "O", "frame": 9, "at": 3933.149875572388 }, { "type": "O", "frame": 10, "at": 3933.149875572388 }, { "type": "O", "frame": 11, "at": 3933.149875572388 }, { "type": "O", "frame": 12, "at": 3933.149875572388 }, { "type": "O", "frame": 13, "at": 3933.149875572388 }, { "type": "O", "frame": 14, "at": 3933.149875572388 }, { "type": "O", "frame": 15, "at": 3933.149875572388 }, { "type": "O", "frame": 16, "at": 3933.149875572388 }, { "type": "O", "frame": 21, "at": 3933.149875572388 }, { "type": "O", "frame": 22, "at": 3933.149875572388 }, { "type": "O", "frame": 23, "at": 3933.149875572388 }, { "type": "O", "frame": 24, "at": 3933.149875572388 }, { "type": "O", "frame": 18, "at": 3933.149875572388 }, { "type": "C", "frame": 18, "at": 3941.211917236328 }, { "type": "C", "frame": 24, "at": 3941.211917236328 }, { "type": "C", "frame": 23, "at": 3941.211917236328 }, { "type": "C", "frame": 22, "at": 3941.211917236328 }, { "type": "C", "frame": 21, "at": 3941.211917236328 }, { "type": "O", "frame": 17, "at": 3941.211917236328 }, { "type": "O", "frame": 18, "at": 3941.211917236328 }, { "type": "C", "frame": 18, "at": 3946.747208671753 }, { "type": "C", "frame": 17, "at": 3946.747208671753 }, { "type": "O", "frame": 19, "at": 3946.747209 }, { "type": "O", "frame": 18, "at": 3946.747209 }, { "type": "C", "frame": 18, "at": 3948.092250036606 }, { "type": "C", "frame": 19, "at": 3948.092250036606 }, { "type": "C", "frame": 16, "at": 3948.09225113678 }, { "type": "C", "frame": 15, "at": 3948.09225113678 }, { "type": "C", "frame": 14, "at": 3948.09225113678 }, { "type": "C", "frame": 13, "at": 3948.09225113678 }, { "type": "C", "frame": 12, "at": 3948.09225113678 }, { "type": "C", "frame": 11, "at": 3948.09225113678 }, { "type": "C", "frame": 10, "at": 3948.09225113678 }, { "type": "C", "frame": 9, "at": 3948.09225113678 }, { "type": "C", "frame": 8, "at": 3948.09225113678 }, { "type": "C", "frame": 20, "at": 3948.09225113678 }, { "type": "O", "frame": 6, "at": 3948.09225113678 }, { "type": "O", "frame": 7, "at": 3948.09225113678 }, { "type": "O", "frame": 8, "at": 3948.09225113678 }, { "type": "O", "frame": 9, "at": 3948.09225113678 }, { "type": "O", "frame": 10, "at": 3948.09225113678 }, { "type": "O", "frame": 11, "at": 3948.09225113678 }, { "type": "O", "frame": 12, "at": 3948.09225113678 }, { "type": "O", "frame": 13, "at": 3948.09225113678 }, { "type": "O", "frame": 14, "at": 3948.09225113678 }, { "type": "O", "frame": 15, "at": 3948.09225113678 }, { "type": "O", "frame": 16, "at": 3948.09225113678 }, { "type": "O", "frame": 21, "at": 3948.09225113678 }, { "type": "O", "frame": 22, "at": 3948.09225113678 }, { "type": "O", "frame": 23, "at": 3948.09225113678 }, { "type": "O", "frame": 24, "at": 3948.09225113678 }, { "type": "O", "frame": 18, "at": 3948.09225113678 }, { "type": "C", "frame": 18, "at": 3950.7747498855592 }, { "type": "C", "frame": 24, "at": 3950.7747498855592 }, { "type": "O", "frame": 25, "at": 3950.77475 }, { "type": "O", "frame": 18, "at": 3950.77475 }, { "type": "C", "frame": 18, "at": 3952.1144169626236 }, { "type": "C", "frame": 25, "at": 3952.1144169626236 }, { "type": "O", "frame": 24, "at": 3952.114417 }, { "type": "O", "frame": 18, "at": 3952.114417 }, { "type": "C", "frame": 18, "at": 3954.807750148956 }, { "type": "C", "frame": 24, "at": 3954.807750148956 }, { "type": "O", "frame": 29, "at": 3954.807750148956 }, { "type": "O", "frame": 18, "at": 3954.807750148956 }, { "type": "C", "frame": 18, "at": 3956.156041993141 }, { "type": "C", "frame": 29, "at": 3956.156041993141 }, { "type": "C", "frame": 23, "at": 3956.156042228699 }, { "type": "C", "frame": 22, "at": 3956.156042228699 }, { "type": "C", "frame": 21, "at": 3956.156042228699 }, { "type": "O", "frame": 17, "at": 3956.156042228699 }, { "type": "O", "frame": 18, "at": 3956.156042228699 }, { "type": "C", "frame": 18, "at": 3961.580749889557 }, { "type": "C", "frame": 17, "at": 3961.580749889557 }, { "type": "O", "frame": 19, "at": 3961.58075 }, { "type": "O", "frame": 18, "at": 3961.58075 }, { "type": "C", "frame": 18, "at": 3969.6261668319703 }, { "type": "C", "frame": 19, "at": 3969.6261668319703 }, { "type": "C", "frame": 16, "at": 3969.6261668319703 }, { "type": "C", "frame": 15, "at": 3969.6261668319703 }, { "type": "C", "frame": 14, "at": 3969.6261668319703 }, { "type": "C", "frame": 13, "at": 3969.6261668319703 }, { "type": "C", "frame": 12, "at": 3969.6261668319703 }, { "type": "C", "frame": 11, "at": 3969.6261668319703 }, { "type": "C", "frame": 10, "at": 3969.6261668319703 }, { "type": "C", "frame": 9, "at": 3969.6261668319703 }, { "type": "C", "frame": 8, "at": 3969.6261668319703 }, { "type": "C", "frame": 7, "at": 3969.6261668319703 }, { "type": "C", "frame": 6, "at": 3969.6261668319703 }, { "type": "O", "frame": 20, "at": 3969.626167 }, { "type": "O", "frame": 8, "at": 3969.626167 }, { "type": "O", "frame": 9, "at": 3969.626167 }, { "type": "O", "frame": 10, "at": 3969.626167 }, { "type": "O", "frame": 11, "at": 3969.626167 }, { "type": "O", "frame": 12, "at": 3969.626167 }, { "type": "O", "frame": 13, "at": 3969.626167 }, { "type": "O", "frame": 14, "at": 3969.626167 }, { "type": "O", "frame": 15, "at": 3969.626167 }, { "type": "O", "frame": 16, "at": 3969.626167 }, { "type": "O", "frame": 21, "at": 3969.626167 }, { "type": "O", "frame": 22, "at": 3969.626167 }, { "type": "O", "frame": 23, "at": 3969.626167 }, { "type": "O", "frame": 24, "at": 3969.626167 }, { "type": "O", "frame": 18, "at": 3969.626167 }, { "type": "C", "frame": 18, "at": 3973.6541249162597 }, { "type": "C", "frame": 24, "at": 3973.6541249162597 }, { "type": "O", "frame": 29, "at": 3973.654125 }, { "type": "O", "frame": 18, "at": 3973.654125 }, { "type": "C", "frame": 18, "at": 3974.9957920560837 }, { "type": "C", "frame": 29, "at": 3974.9957920560837 }, { "type": "O", "frame": 24, "at": 3974.9957920560837 }, { "type": "O", "frame": 18, "at": 3974.9957920560837 }, { "type": "C", "frame": 18, "at": 3977.687375156586 }, { "type": "C", "frame": 24, "at": 3977.687375156586 }, { "type": "C", "frame": 23, "at": 3977.6873757249755 }, { "type": "C", "frame": 22, "at": 3977.6873757249755 }, { "type": "C", "frame": 21, "at": 3977.6873757249755 }, { "type": "O", "frame": 17, "at": 3977.6873757249755 }, { "type": "O", "frame": 18, "at": 3977.6873757249755 }, { "type": "C", "frame": 18, "at": 3981.810250213623 }, { "type": "C", "frame": 17, "at": 3981.810250213623 }, { "type": "O", "frame": 19, "at": 3981.810250213623 }, { "type": "O", "frame": 18, "at": 3981.810250213623 }, { "type": "C", "frame": 18, "at": 3989.79470892334 }, { "type": "C", "frame": 19, "at": 3989.79470892334 }, { "type": "C", "frame": 16, "at": 3989.7947098619384 }, { "type": "C", "frame": 15, "at": 3989.7947098619384 }, { "type": "C", "frame": 14, "at": 3989.7947098619384 }, { "type": "C", "frame": 13, "at": 3989.7947098619384 }, { "type": "C", "frame": 12, "at": 3989.7947098619384 }, { "type": "C", "frame": 11, "at": 3989.7947098619384 }, { "type": "C", "frame": 10, "at": 3989.7947098619384 }, { "type": "C", "frame": 9, "at": 3989.7947098619384 }, { "type": "C", "frame": 8, "at": 3989.7947098619384 }, { "type": "C", "frame": 20, "at": 3989.7947098619384 }, { "type": "O", "frame": 6, "at": 3989.7947098619384 }, { "type": "O", "frame": 7, "at": 3989.7947098619384 }, { "type": "O", "frame": 8, "at": 3989.7947098619384 }, { "type": "O", "frame": 9, "at": 3989.7947098619384 }, { "type": "O", "frame": 10, "at": 3989.7947098619384 }, { "type": "O", "frame": 11, "at": 3989.7947098619384 }, { "type": "O", "frame": 12, "at": 3989.7947098619384 }, { "type": "O", "frame": 13, "at": 3989.7947098619384 }, { "type": "O", "frame": 14, "at": 3989.7947098619384 }, { "type": "O", "frame": 15, "at": 3989.7947098619384 }, { "type": "O", "frame": 16, "at": 3989.7947098619384 }, { "type": "O", "frame": 21, "at": 3989.7947098619384 }, { "type": "O", "frame": 22, "at": 3989.7947098619384 }, { "type": "O", "frame": 23, "at": 3989.7947098619384 }, { "type": "O", "frame": 24, "at": 3989.7947098619384 }, { "type": "O", "frame": 18, "at": 3989.7947098619384 }, { "type": "C", "frame": 18, "at": 3997.8787916034544 }, { "type": "C", "frame": 24, "at": 3997.8787916034544 }, { "type": "C", "frame": 23, "at": 3997.8787916034544 }, { "type": "C", "frame": 22, "at": 3997.8787916034544 }, { "type": "C", "frame": 21, "at": 3997.8787916034544 }, { "type": "O", "frame": 17, "at": 3997.878792 }, { "type": "O", "frame": 18, "at": 3997.878792 }, { "type": "C", "frame": 18, "at": 4003.351041984741 }, { "type": "C", "frame": 17, "at": 4003.351041984741 }, { "type": "O", "frame": 19, "at": 4003.351042 }, { "type": "O", "frame": 18, "at": 4003.351042 }, { "type": "C", "frame": 18, "at": 4004.68066701049 }, { "type": "C", "frame": 19, "at": 4004.68066701049 }, { "type": "C", "frame": 16, "at": 4004.6806676715696 }, { "type": "C", "frame": 15, "at": 4004.6806676715696 }, { "type": "C", "frame": 14, "at": 4004.6806676715696 }, { "type": "C", "frame": 13, "at": 4004.6806676715696 }, { "type": "C", "frame": 12, "at": 4004.6806676715696 }, { "type": "C", "frame": 11, "at": 4004.6806676715696 }, { "type": "C", "frame": 10, "at": 4004.6806676715696 }, { "type": "C", "frame": 9, "at": 4004.6806676715696 }, { "type": "C", "frame": 8, "at": 4004.6806676715696 }, { "type": "C", "frame": 7, "at": 4004.6806676715696 }, { "type": "C", "frame": 6, "at": 4004.6806676715696 }, { "type": "O", "frame": 20, "at": 4004.6806676715696 }, { "type": "O", "frame": 8, "at": 4004.6806676715696 }, { "type": "O", "frame": 9, "at": 4004.6806676715696 }, { "type": "O", "frame": 10, "at": 4004.6806676715696 }, { "type": "O", "frame": 11, "at": 4004.6806676715696 }, { "type": "O", "frame": 12, "at": 4004.6806676715696 }, { "type": "O", "frame": 13, "at": 4004.6806676715696 }, { "type": "O", "frame": 14, "at": 4004.6806676715696 }, { "type": "O", "frame": 15, "at": 4004.6806676715696 }, { "type": "O", "frame": 16, "at": 4004.6806676715696 }, { "type": "O", "frame": 21, "at": 4004.6806676715696 }, { "type": "O", "frame": 22, "at": 4004.6806676715696 }, { "type": "O", "frame": 23, "at": 4004.6806676715696 }, { "type": "O", "frame": 24, "at": 4004.6806676715696 }, { "type": "O", "frame": 18, "at": 4004.6806676715696 }, { "type": "C", "frame": 18, "at": 4006.0212499668046 }, { "type": "C", "frame": 24, "at": 4006.0212499668046 }, { "type": "O", "frame": 38, "at": 4006.02125 }, { "type": "O", "frame": 18, "at": 4006.02125 }, { "type": "C", "frame": 18, "at": 4007.3608750009535 }, { "type": "C", "frame": 38, "at": 4007.3608750009535 }, { "type": "O", "frame": 24, "at": 4007.3608750009535 }, { "type": "O", "frame": 18, "at": 4007.3608750009535 }, { "type": "C", "frame": 18, "at": 4010.058999885559 }, { "type": "C", "frame": 24, "at": 4010.058999885559 }, { "type": "O", "frame": 29, "at": 4010.059 }, { "type": "O", "frame": 18, "at": 4010.059 }, { "type": "C", "frame": 18, "at": 4011.40275 }, { "type": "C", "frame": 29, "at": 4011.40275 }, { "type": "O", "frame": 25, "at": 4011.40275 }, { "type": "O", "frame": 18, "at": 4011.40275 }, { "type": "C", "frame": 18, "at": 4012.763334020615 }, { "type": "C", "frame": 25, "at": 4012.763334020615 }, { "type": "C", "frame": 23, "at": 4012.763334350769 }, { "type": "C", "frame": 22, "at": 4012.763334350769 }, { "type": "C", "frame": 21, "at": 4012.763334350769 }, { "type": "O", "frame": 17, "at": 4012.763334350769 }, { "type": "O", "frame": 18, "at": 4012.763334350769 }, { "type": "C", "frame": 18, "at": 4018.253625118622 }, { "type": "C", "frame": 17, "at": 4018.253625118622 }, { "type": "O", "frame": 19, "at": 4018.253625118622 }, { "type": "O", "frame": 18, "at": 4018.253625118622 }, { "type": "C", "frame": 18, "at": 4024.925959194183 }, { "type": "C", "frame": 19, "at": 4024.925959194183 }, { "type": "C", "frame": 16, "at": 4024.9259596635743 }, { "type": "C", "frame": 15, "at": 4024.9259596635743 }, { "type": "C", "frame": 14, "at": 4024.9259596635743 }, { "type": "C", "frame": 13, "at": 4024.9259596635743 }, { "type": "C", "frame": 12, "at": 4024.9259596635743 }, { "type": "C", "frame": 11, "at": 4024.9259596635743 }, { "type": "C", "frame": 10, "at": 4024.9259596635743 }, { "type": "C", "frame": 9, "at": 4024.9259596635743 }, { "type": "C", "frame": 8, "at": 4024.9259596635743 }, { "type": "O", "frame": 18, "at": 4024.9259596635743 }, { "type": "C", "frame": 18, "at": 4026.273249992737 }, { "type": "C", "frame": 20, "at": 4026.273249992737 }, { "type": "O", "frame": 6, "at": 4026.27325 }, { "type": "O", "frame": 7, "at": 4026.27325 }, { "type": "O", "frame": 8, "at": 4026.27325 }, { "type": "O", "frame": 9, "at": 4026.27325 }, { "type": "O", "frame": 10, "at": 4026.27325 }, { "type": "O", "frame": 11, "at": 4026.27325 }, { "type": "O", "frame": 12, "at": 4026.27325 }, { "type": "O", "frame": 13, "at": 4026.27325 }, { "type": "O", "frame": 14, "at": 4026.27325 }, { "type": "O", "frame": 15, "at": 4026.27325 }, { "type": "O", "frame": 16, "at": 4026.27325 }, { "type": "O", "frame": 21, "at": 4026.27325 }, { "type": "O", "frame": 22, "at": 4026.27325 }, { "type": "O", "frame": 23, "at": 4026.27325 }, { "type": "O", "frame": 24, "at": 4026.27325 }, { "type": "O", "frame": 18, "at": 4026.27325 }, { "type": "C", "frame": 18, "at": 4030.3088749809267 }, { "type": "C", "frame": 24, "at": 4030.3088749809267 }, { "type": "O", "frame": 26, "at": 4030.308875 }, { "type": "O", "frame": 18, "at": 4030.308875 }, { "type": "C", "frame": 18, "at": 4031.647542035103 }, { "type": "C", "frame": 26, "at": 4031.647542035103 }, { "type": "O", "frame": 24, "at": 4031.647542035103 }, { "type": "O", "frame": 18, "at": 4031.647542035103 }, { "type": "C", "frame": 18, "at": 4034.3431670667574 }, { "type": "C", "frame": 24, "at": 4034.3431670667574 }, { "type": "C", "frame": 23, "at": 4034.3431670667574 }, { "type": "C", "frame": 22, "at": 4034.3431670667574 }, { "type": "C", "frame": 21, "at": 4034.3431670667574 }, { "type": "O", "frame": 17, "at": 4034.3431670667574 }, { "type": "O", "frame": 18, "at": 4034.3431670667574 }, { "type": "C", "frame": 18, "at": 4039.7629997064514 }, { "type": "C", "frame": 17, "at": 4039.7629997064514 }, { "type": "O", "frame": 19, "at": 4039.763 }, { "type": "O", "frame": 18, "at": 4039.763 }, { "type": "C", "frame": 18, "at": 4041.095458972931 }, { "type": "C", "frame": 19, "at": 4041.095458972931 }, { "type": "C", "frame": 16, "at": 4041.095458972931 }, { "type": "C", "frame": 15, "at": 4041.095458972931 }, { "type": "C", "frame": 14, "at": 4041.095458972931 }, { "type": "C", "frame": 13, "at": 4041.095458972931 }, { "type": "C", "frame": 12, "at": 4041.095458972931 }, { "type": "C", "frame": 11, "at": 4041.095458972931 }, { "type": "C", "frame": 10, "at": 4041.095458972931 }, { "type": "C", "frame": 9, "at": 4041.095458972931 }, { "type": "C", "frame": 8, "at": 4041.095458972931 }, { "type": "C", "frame": 7, "at": 4041.095458972931 }, { "type": "C", "frame": 6, "at": 4041.095458972931 }, { "type": "O", "frame": 20, "at": 4041.095459 }, { "type": "O", "frame": 8, "at": 4041.095459 }, { "type": "O", "frame": 9, "at": 4041.095459 }, { "type": "O", "frame": 10, "at": 4041.095459 }, { "type": "O", "frame": 11, "at": 4041.095459 }, { "type": "O", "frame": 12, "at": 4041.095459 }, { "type": "O", "frame": 13, "at": 4041.095459 }, { "type": "O", "frame": 14, "at": 4041.095459 }, { "type": "O", "frame": 15, "at": 4041.095459 }, { "type": "O", "frame": 16, "at": 4041.095459 }, { "type": "O", "frame": 21, "at": 4041.095459 }, { "type": "O", "frame": 22, "at": 4041.095459 }, { "type": "O", "frame": 23, "at": 4041.095459 }, { "type": "O", "frame": 24, "at": 4041.095459 }, { "type": "O", "frame": 18, "at": 4041.095459 }, { "type": "C", "frame": 18, "at": 4042.439541951546 }, { "type": "C", "frame": 24, "at": 4042.439541951546 }, { "type": "O", "frame": 31, "at": 4042.439542 }, { "type": "O", "frame": 18, "at": 4042.439542 }, { "type": "C", "frame": 18, "at": 4043.7783339664384 }, { "type": "C", "frame": 31, "at": 4043.7783339664384 }, { "type": "O", "frame": 38, "at": 4043.778334 }, { "type": "O", "frame": 18, "at": 4043.778334 }, { "type": "C", "frame": 18, "at": 4045.1279999994126 }, { "type": "C", "frame": 38, "at": 4045.1279999994126 }, { "type": "O", "frame": 24, "at": 4045.128 }, { "type": "O", "frame": 18, "at": 4045.128 }, { "type": "C", "frame": 18, "at": 4049.1560418395998 }, { "type": "C", "frame": 24, "at": 4049.1560418395998 }, { "type": "C", "frame": 23, "at": 4049.156042114624 }, { "type": "C", "frame": 22, "at": 4049.156042114624 }, { "type": "C", "frame": 21, "at": 4049.156042114624 }, { "type": "O", "frame": 17, "at": 4049.156042114624 }, { "type": "O", "frame": 18, "at": 4049.156042114624 }, { "type": "C", "frame": 18, "at": 4054.651791950409 }, { "type": "C", "frame": 17, "at": 4054.651791950409 }, { "type": "O", "frame": 19, "at": 4054.651792 }, { "type": "O", "frame": 18, "at": 4054.651792 }, { "type": "C", "frame": 18, "at": 4062.680458496277 }, { "type": "C", "frame": 19, "at": 4062.680458496277 }, { "type": "C", "frame": 16, "at": 4062.680458496277 }, { "type": "C", "frame": 15, "at": 4062.680458496277 }, { "type": "C", "frame": 14, "at": 4062.680458496277 }, { "type": "C", "frame": 13, "at": 4062.680458496277 }, { "type": "C", "frame": 12, "at": 4062.680458496277 }, { "type": "C", "frame": 11, "at": 4062.680458496277 }, { "type": "C", "frame": 10, "at": 4062.680458496277 }, { "type": "C", "frame": 9, "at": 4062.680458496277 }, { "type": "C", "frame": 8, "at": 4062.680458496277 }, { "type": "O", "frame": 18, "at": 4062.680459 }, { "type": "C", "frame": 18, "at": 4064.032083965668 }, { "type": "C", "frame": 20, "at": 4064.032083965668 }, { "type": "O", "frame": 6, "at": 4064.032084 }, { "type": "O", "frame": 7, "at": 4064.032084 }, { "type": "O", "frame": 8, "at": 4064.032084 }, { "type": "O", "frame": 9, "at": 4064.032084 }, { "type": "O", "frame": 10, "at": 4064.032084 }, { "type": "O", "frame": 11, "at": 4064.032084 }, { "type": "O", "frame": 12, "at": 4064.032084 }, { "type": "O", "frame": 13, "at": 4064.032084 }, { "type": "O", "frame": 14, "at": 4064.032084 }, { "type": "O", "frame": 15, "at": 4064.032084 }, { "type": "O", "frame": 16, "at": 4064.032084 }, { "type": "O", "frame": 21, "at": 4064.032084 }, { "type": "O", "frame": 22, "at": 4064.032084 }, { "type": "O", "frame": 23, "at": 4064.032084 }, { "type": "O", "frame": 24, "at": 4064.032084 }, { "type": "O", "frame": 18, "at": 4064.032084 }, { "type": "C", "frame": 18, "at": 4065.3987089513626 }, { "type": "C", "frame": 24, "at": 4065.3987089513626 }, { "type": "O", "frame": 28, "at": 4065.398709 }, { "type": "O", "frame": 18, "at": 4065.398709 }, { "type": "C", "frame": 18, "at": 4066.7471249708024 }, { "type": "C", "frame": 28, "at": 4066.7471249708024 }, { "type": "O", "frame": 24, "at": 4066.747125 }, { "type": "O", "frame": 18, "at": 4066.747125 }, { "type": "C", "frame": 18, "at": 4069.4475420417784 }, { "type": "C", "frame": 24, "at": 4069.4475420417784 }, { "type": "O", "frame": 29, "at": 4069.4475420417784 }, { "type": "O", "frame": 18, "at": 4069.4475420417784 }, { "type": "C", "frame": 18, "at": 4070.7998339416426 }, { "type": "C", "frame": 29, "at": 4070.7998339416426 }, { "type": "O", "frame": 24, "at": 4070.799834 }, { "type": "O", "frame": 18, "at": 4070.799834 }, { "type": "C", "frame": 18, "at": 4072.157749997505 }, { "type": "C", "frame": 24, "at": 4072.157749997505 }, { "type": "C", "frame": 23, "at": 4072.157750618347 }, { "type": "C", "frame": 22, "at": 4072.157750618347 }, { "type": "C", "frame": 21, "at": 4072.157750618347 }, { "type": "O", "frame": 17, "at": 4072.157750618347 }, { "type": "O", "frame": 18, "at": 4072.157750618347 }, { "type": "C", "frame": 18, "at": 4076.2734588279723 }, { "type": "C", "frame": 17, "at": 4076.2734588279723 }, { "type": "O", "frame": 19, "at": 4076.273459 }, { "type": "O", "frame": 18, "at": 4076.273459 }, { "type": "C", "frame": 18, "at": 4084.257542175659 }, { "type": "C", "frame": 19, "at": 4084.257542175659 }, { "type": "C", "frame": 16, "at": 4084.257542175659 }, { "type": "C", "frame": 15, "at": 4084.257542175659 }, { "type": "C", "frame": 14, "at": 4084.257542175659 }, { "type": "C", "frame": 13, "at": 4084.257542175659 }, { "type": "C", "frame": 12, "at": 4084.257542175659 }, { "type": "C", "frame": 11, "at": 4084.257542175659 }, { "type": "C", "frame": 10, "at": 4084.257542175659 }, { "type": "C", "frame": 9, "at": 4084.257542175659 }, { "type": "C", "frame": 8, "at": 4084.257542175659 }, { "type": "C", "frame": 7, "at": 4084.257542175659 }, { "type": "C", "frame": 6, "at": 4084.257542175659 }, { "type": "O", "frame": 20, "at": 4084.257542175659 }, { "type": "O", "frame": 8, "at": 4084.257542175659 }, { "type": "O", "frame": 9, "at": 4084.257542175659 }, { "type": "O", "frame": 10, "at": 4084.257542175659 }, { "type": "O", "frame": 11, "at": 4084.257542175659 }, { "type": "O", "frame": 12, "at": 4084.257542175659 }, { "type": "O", "frame": 13, "at": 4084.257542175659 }, { "type": "O", "frame": 14, "at": 4084.257542175659 }, { "type": "O", "frame": 15, "at": 4084.257542175659 }, { "type": "O", "frame": 16, "at": 4084.257542175659 }, { "type": "O", "frame": 21, "at": 4084.257542175659 }, { "type": "O", "frame": 22, "at": 4084.257542175659 }, { "type": "O", "frame": 23, "at": 4084.257542175659 }, { "type": "O", "frame": 31, "at": 4084.257542175659 }, { "type": "O", "frame": 18, "at": 4084.257542175659 }, { "type": "C", "frame": 18, "at": 4085.6046670534056 }, { "type": "C", "frame": 31, "at": 4085.6046670534056 }, { "type": "O", "frame": 24, "at": 4085.6046670534056 }, { "type": "O", "frame": 18, "at": 4085.6046670534056 }, { "type": "C", "frame": 18, "at": 4090.9753339807435 }, { "type": "C", "frame": 24, "at": 4090.9753339807435 }, { "type": "O", "frame": 25, "at": 4090.975334 }, { "type": "O", "frame": 18, "at": 4090.975334 }, { "type": "C", "frame": 18, "at": 4092.3254169935076 }, { "type": "C", "frame": 25, "at": 4092.3254169935076 }, { "type": "C", "frame": 23, "at": 4092.3254169935076 }, { "type": "C", "frame": 22, "at": 4092.3254169935076 }, { "type": "C", "frame": 21, "at": 4092.3254169935076 }, { "type": "O", "frame": 17, "at": 4092.325417 }, { "type": "O", "frame": 18, "at": 4092.325417 }, { "type": "C", "frame": 18, "at": 4097.782875496094 }, { "type": "C", "frame": 17, "at": 4097.782875496094 }, { "type": "O", "frame": 19, "at": 4097.782875496094 }, { "type": "O", "frame": 18, "at": 4097.782875496094 }, { "type": "C", "frame": 18, "at": 4100.441916881561 }, { "type": "C", "frame": 19, "at": 4100.441916881561 }, { "type": "C", "frame": 16, "at": 4100.441917762939 }, { "type": "C", "frame": 15, "at": 4100.441917762939 }, { "type": "C", "frame": 14, "at": 4100.441917762939 }, { "type": "C", "frame": 13, "at": 4100.441917762939 }, { "type": "C", "frame": 12, "at": 4100.441917762939 }, { "type": "C", "frame": 11, "at": 4100.441917762939 }, { "type": "C", "frame": 10, "at": 4100.441917762939 }, { "type": "C", "frame": 9, "at": 4100.441917762939 }, { "type": "C", "frame": 8, "at": 4100.441917762939 }, { "type": "O", "frame": 18, "at": 4100.441917762939 }, { "type": "C", "frame": 18, "at": 4101.794959006493 }, { "type": "C", "frame": 20, "at": 4101.794960365478 }, { "type": "O", "frame": 6, "at": 4101.794960365478 }, { "type": "O", "frame": 7, "at": 4101.794960365478 }, { "type": "O", "frame": 8, "at": 4101.794960365478 }, { "type": "O", "frame": 9, "at": 4101.794960365478 }, { "type": "O", "frame": 10, "at": 4101.794960365478 }, { "type": "O", "frame": 11, "at": 4101.794960365478 }, { "type": "O", "frame": 12, "at": 4101.794960365478 }, { "type": "O", "frame": 13, "at": 4101.794960365478 }, { "type": "O", "frame": 14, "at": 4101.794960365478 }, { "type": "O", "frame": 15, "at": 4101.794960365478 }, { "type": "O", "frame": 16, "at": 4101.794960365478 }, { "type": "O", "frame": 21, "at": 4101.794960365478 }, { "type": "O", "frame": 22, "at": 4101.794960365478 }, { "type": "O", "frame": 23, "at": 4101.794960365478 }, { "type": "O", "frame": 24, "at": 4101.794960365478 }, { "type": "O", "frame": 18, "at": 4101.794960365478 }, { "type": "C", "frame": 18, "at": 4109.8561257633055 }, { "type": "C", "frame": 24, "at": 4109.8561257633055 }, { "type": "C", "frame": 23, "at": 4109.8561257633055 }, { "type": "C", "frame": 22, "at": 4109.8561257633055 }, { "type": "C", "frame": 21, "at": 4109.8561257633055 }, { "type": "O", "frame": 17, "at": 4109.8561257633055 }, { "type": "O", "frame": 18, "at": 4109.8561257633055 }, { "type": "C", "frame": 18, "at": 4115.312874916077 }, { "type": "C", "frame": 17, "at": 4115.312874916077 }, { "type": "O", "frame": 19, "at": 4115.312875 }, { "type": "O", "frame": 18, "at": 4115.312875 }, { "type": "C", "frame": 18, "at": 4121.94904157257 }, { "type": "C", "frame": 19, "at": 4121.94904157257 }, { "type": "C", "frame": 16, "at": 4121.949044159302 }, { "type": "C", "frame": 15, "at": 4121.949044159302 }, { "type": "C", "frame": 14, "at": 4121.949044159302 }, { "type": "C", "frame": 13, "at": 4121.949044159302 }, { "type": "C", "frame": 12, "at": 4121.949044159302 }, { "type": "C", "frame": 11, "at": 4121.949044159302 }, { "type": "C", "frame": 10, "at": 4121.949044159302 }, { "type": "C", "frame": 9, "at": 4121.949044159302 }, { "type": "C", "frame": 8, "at": 4121.949044159302 }, { "type": "C", "frame": 7, "at": 4121.949044159302 }, { "type": "C", "frame": 6, "at": 4121.949044159302 }, { "type": "O", "frame": 20, "at": 4121.949044159302 }, { "type": "O", "frame": 8, "at": 4121.949044159302 }, { "type": "O", "frame": 9, "at": 4121.949044159302 }, { "type": "O", "frame": 10, "at": 4121.949044159302 }, { "type": "O", "frame": 11, "at": 4121.949044159302 }, { "type": "O", "frame": 12, "at": 4121.949044159302 }, { "type": "O", "frame": 13, "at": 4121.949044159302 }, { "type": "O", "frame": 14, "at": 4121.949044159302 }, { "type": "O", "frame": 15, "at": 4121.949044159302 }, { "type": "O", "frame": 16, "at": 4121.949044159302 }, { "type": "O", "frame": 21, "at": 4121.949044159302 }, { "type": "O", "frame": 22, "at": 4121.949044159302 }, { "type": "O", "frame": 23, "at": 4121.949044159302 }, { "type": "O", "frame": 24, "at": 4121.949044159302 }, { "type": "O", "frame": 18, "at": 4121.949044159302 }, { "type": "C", "frame": 18, "at": 4133.1163336412355 }, { "type": "C", "frame": 24, "at": 4133.1163336412355 }, { "type": "C", "frame": 23, "at": 4133.1163336412355 }, { "type": "O", "frame": 42, "at": 4133.116334 }, { "type": "O", "frame": 18, "at": 4133.116334 }, { "type": "C", "frame": 18, "at": 4134.52129200972 }, { "type": "C", "frame": 42, "at": 4134.52129200972 }, { "type": "C", "frame": 22, "at": 4134.52129200972 }, { "type": "C", "frame": 21, "at": 4134.52129200972 }, { "type": "O", "frame": 17, "at": 4134.52129200972 }, { "type": "O", "frame": 18, "at": 4134.52129200972 }, { "type": "C", "frame": 18, "at": 4140.110542087738 }, { "type": "C", "frame": 17, "at": 4140.110542087738 }, { "type": "O", "frame": 19, "at": 4140.110542087738 }, { "type": "O", "frame": 18, "at": 4140.110542087738 }, { "type": "C", "frame": 18, "at": 4142.783749998276 }, { "type": "C", "frame": 19, "at": 4142.783749998276 }, { "type": "C", "frame": 16, "at": 4142.783749998276 }, { "type": "C", "frame": 15, "at": 4142.783749998276 }, { "type": "C", "frame": 14, "at": 4142.783749998276 }, { "type": "C", "frame": 13, "at": 4142.783749998276 }, { "type": "C", "frame": 12, "at": 4142.783749998276 }, { "type": "C", "frame": 11, "at": 4142.783749998276 }, { "type": "C", "frame": 10, "at": 4142.783749998276 }, { "type": "C", "frame": 9, "at": 4142.783749998276 }, { "type": "C", "frame": 8, "at": 4142.783749998276 }, { "type": "O", "frame": 18, "at": 4142.78375 }, { "type": "C", "frame": 18, "at": 4144.161416950225 }, { "type": "C", "frame": 20, "at": 4144.161416950225 }, { "type": "O", "frame": 6, "at": 4144.161417 }, { "type": "O", "frame": 7, "at": 4144.161417 }, { "type": "O", "frame": 8, "at": 4144.161417 }, { "type": "O", "frame": 9, "at": 4144.161417 }, { "type": "O", "frame": 10, "at": 4144.161417 }, { "type": "O", "frame": 11, "at": 4144.161417 }, { "type": "O", "frame": 12, "at": 4144.161417 }, { "type": "O", "frame": 13, "at": 4144.161417 }, { "type": "O", "frame": 14, "at": 4144.161417 }, { "type": "O", "frame": 15, "at": 4144.161417 }, { "type": "O", "frame": 16, "at": 4144.161417 }, { "type": "O", "frame": 21, "at": 4144.161417 }, { "type": "O", "frame": 22, "at": 4144.161417 }, { "type": "O", "frame": 23, "at": 4144.161417 }, { "type": "O", "frame": 24, "at": 4144.161417 }, { "type": "O", "frame": 18, "at": 4144.161417 }, { "type": "C", "frame": 18, "at": 4152.4177503511355 }, { "type": "C", "frame": 24, "at": 4152.4177503511355 }, { "type": "C", "frame": 23, "at": 4152.4177503511355 }, { "type": "C", "frame": 22, "at": 4152.4177503511355 }, { "type": "C", "frame": 21, "at": 4152.4177503511355 }, { "type": "O", "frame": 17, "at": 4152.4177503511355 }, { "type": "O", "frame": 18, "at": 4152.4177503511355 }, { "type": "C", "frame": 18, "at": 4157.993458389282 }, { "type": "C", "frame": 17, "at": 4157.993458389282 }, { "type": "O", "frame": 19, "at": 4157.993459 }, { "type": "O", "frame": 18, "at": 4157.993459 }, { "type": "C", "frame": 18, "at": 4163.489917053589 }, { "type": "C", "frame": 19, "at": 4163.489917053589 }, { "type": "C", "frame": 16, "at": 4163.489917747681 }, { "type": "C", "frame": 15, "at": 4163.489917747681 }, { "type": "C", "frame": 14, "at": 4163.489917747681 }, { "type": "C", "frame": 13, "at": 4163.489917747681 }, { "type": "C", "frame": 12, "at": 4163.489917747681 }, { "type": "C", "frame": 11, "at": 4163.489917747681 }, { "type": "C", "frame": 10, "at": 4163.489917747681 }, { "type": "C", "frame": 9, "at": 4163.489917747681 }, { "type": "C", "frame": 8, "at": 4163.489917747681 }, { "type": "C", "frame": 7, "at": 4163.489917747681 }, { "type": "C", "frame": 6, "at": 4163.489917747681 }, { "type": "O", "frame": 20, "at": 4163.489917747681 }, { "type": "O", "frame": 8, "at": 4163.489917747681 }, { "type": "O", "frame": 9, "at": 4163.489917747681 }, { "type": "O", "frame": 10, "at": 4163.489917747681 }, { "type": "O", "frame": 11, "at": 4163.489917747681 }, { "type": "O", "frame": 12, "at": 4163.489917747681 }, { "type": "O", "frame": 13, "at": 4163.489917747681 }, { "type": "O", "frame": 14, "at": 4163.489917747681 }, { "type": "O", "frame": 15, "at": 4163.489917747681 }, { "type": "O", "frame": 16, "at": 4163.489917747681 }, { "type": "O", "frame": 21, "at": 4163.489917747681 }, { "type": "O", "frame": 22, "at": 4163.489917747681 }, { "type": "O", "frame": 23, "at": 4163.489917747681 }, { "type": "O", "frame": 24, "at": 4163.489917747681 }, { "type": "O", "frame": 18, "at": 4163.489917747681 }, { "type": "C", "frame": 18, "at": 4171.502542694275 }, { "type": "C", "frame": 24, "at": 4171.502542694275 }, { "type": "C", "frame": 23, "at": 4171.502542694275 }, { "type": "C", "frame": 22, "at": 4171.502542694275 }, { "type": "C", "frame": 21, "at": 4171.502542694275 }, { "type": "O", "frame": 17, "at": 4171.502542694275 }, { "type": "O", "frame": 18, "at": 4171.502542694275 }, { "type": "C", "frame": 18, "at": 4177.086874942963 }, { "type": "C", "frame": 17, "at": 4177.086874942963 }, { "type": "O", "frame": 19, "at": 4177.086875 }, { "type": "O", "frame": 18, "at": 4177.086875 }, { "type": "C", "frame": 18, "at": 4185.40120891571 }, { "type": "C", "frame": 19, "at": 4185.40120891571 }, { "type": "C", "frame": 16, "at": 4185.40120891571 }, { "type": "C", "frame": 15, "at": 4185.40120891571 }, { "type": "C", "frame": 14, "at": 4185.40120891571 }, { "type": "C", "frame": 13, "at": 4185.40120891571 }, { "type": "C", "frame": 12, "at": 4185.40120891571 }, { "type": "C", "frame": 11, "at": 4185.40120891571 }, { "type": "C", "frame": 10, "at": 4185.40120891571 }, { "type": "C", "frame": 9, "at": 4185.40120891571 }, { "type": "C", "frame": 8, "at": 4185.40120891571 }, { "type": "C", "frame": 20, "at": 4185.40120891571 }, { "type": "O", "frame": 6, "at": 4185.401209 }, { "type": "O", "frame": 7, "at": 4185.401209 }, { "type": "O", "frame": 8, "at": 4185.401209 }, { "type": "O", "frame": 9, "at": 4185.401209 }, { "type": "O", "frame": 10, "at": 4185.401209 }, { "type": "O", "frame": 11, "at": 4185.401209 }, { "type": "O", "frame": 12, "at": 4185.401209 }, { "type": "O", "frame": 13, "at": 4185.401209 }, { "type": "O", "frame": 14, "at": 4185.401209 }, { "type": "O", "frame": 15, "at": 4185.401209 }, { "type": "O", "frame": 16, "at": 4185.401209 }, { "type": "O", "frame": 21, "at": 4185.401209 }, { "type": "O", "frame": 22, "at": 4185.401209 }, { "type": "O", "frame": 23, "at": 4185.401209 }, { "type": "O", "frame": 24, "at": 4185.401209 }, { "type": "O", "frame": 18, "at": 4185.401209 }, { "type": "C", "frame": 18, "at": 4189.42333424414 }, { "type": "C", "frame": 24, "at": 4189.42333424414 }, { "type": "O", "frame": 28, "at": 4189.42333424414 }, { "type": "O", "frame": 18, "at": 4189.42333424414 }, { "type": "C", "frame": 18, "at": 4190.761167046913 }, { "type": "C", "frame": 28, "at": 4190.761167046913 }, { "type": "O", "frame": 24, "at": 4190.761167046913 }, { "type": "O", "frame": 18, "at": 4190.761167046913 }, { "type": "C", "frame": 18, "at": 4193.4428750974575 }, { "type": "C", "frame": 24, "at": 4193.4428750974575 }, { "type": "C", "frame": 23, "at": 4193.4428750974575 }, { "type": "C", "frame": 22, "at": 4193.4428750974575 }, { "type": "C", "frame": 21, "at": 4193.4428750974575 }, { "type": "O", "frame": 17, "at": 4193.4428750974575 }, { "type": "O", "frame": 18, "at": 4193.4428750974575 }, { "type": "C", "frame": 18, "at": 4198.943584533691 }, { "type": "C", "frame": 17, "at": 4198.943584533691 }, { "type": "O", "frame": 19, "at": 4198.943584533691 }, { "type": "O", "frame": 18, "at": 4198.943584533691 }, { "type": "C", "frame": 18, "at": 4201.6207089771115 }, { "type": "C", "frame": 19, "at": 4201.6207089771115 }, { "type": "C", "frame": 16, "at": 4201.6207089771115 }, { "type": "C", "frame": 15, "at": 4201.6207089771115 }, { "type": "C", "frame": 14, "at": 4201.6207089771115 }, { "type": "C", "frame": 13, "at": 4201.6207089771115 }, { "type": "C", "frame": 12, "at": 4201.6207089771115 }, { "type": "C", "frame": 11, "at": 4201.6207089771115 }, { "type": "C", "frame": 10, "at": 4201.6207089771115 }, { "type": "C", "frame": 9, "at": 4201.6207089771115 }, { "type": "C", "frame": 8, "at": 4201.6207089771115 }, { "type": "C", "frame": 7, "at": 4201.6207089771115 }, { "type": "C", "frame": 6, "at": 4201.6207089771115 }, { "type": "O", "frame": 20, "at": 4201.620709 }, { "type": "O", "frame": 8, "at": 4201.620709 }, { "type": "O", "frame": 9, "at": 4201.620709 }, { "type": "O", "frame": 10, "at": 4201.620709 }, { "type": "O", "frame": 11, "at": 4201.620709 }, { "type": "O", "frame": 12, "at": 4201.620709 }, { "type": "O", "frame": 13, "at": 4201.620709 }, { "type": "O", "frame": 14, "at": 4201.620709 }, { "type": "O", "frame": 15, "at": 4201.620709 }, { "type": "O", "frame": 16, "at": 4201.620709 }, { "type": "O", "frame": 21, "at": 4201.620709 }, { "type": "O", "frame": 22, "at": 4201.620709 }, { "type": "O", "frame": 23, "at": 4201.620709 }, { "type": "O", "frame": 24, "at": 4201.620709 }, { "type": "O", "frame": 18, "at": 4201.620709 }, { "type": "C", "frame": 18, "at": 4211.005292473205 }, { "type": "C", "frame": 24, "at": 4211.005292473205 }, { "type": "C", "frame": 23, "at": 4211.005292473205 }, { "type": "C", "frame": 22, "at": 4211.005292473205 }, { "type": "C", "frame": 21, "at": 4211.005292473205 }, { "type": "O", "frame": 17, "at": 4211.005292473205 }, { "type": "O", "frame": 18, "at": 4211.005292473205 }, { "type": "C", "frame": 18, "at": 4217.191834510986 }, { "type": "C", "frame": 17, "at": 4217.191834510986 }, { "type": "O", "frame": 19, "at": 4217.191834510986 }, { "type": "O", "frame": 18, "at": 4217.191834510986 }, { "type": "C", "frame": 18, "at": 4223.594166782746 }, { "type": "C", "frame": 19, "at": 4223.594166782746 }, { "type": "C", "frame": 16, "at": 4223.594168243774 }, { "type": "C", "frame": 15, "at": 4223.594168243774 }, { "type": "C", "frame": 14, "at": 4223.594168243774 }, { "type": "C", "frame": 13, "at": 4223.594168243774 }, { "type": "C", "frame": 12, "at": 4223.594168243774 }, { "type": "C", "frame": 11, "at": 4223.594168243774 }, { "type": "C", "frame": 10, "at": 4223.594168243774 }, { "type": "C", "frame": 9, "at": 4223.594168243774 }, { "type": "C", "frame": 8, "at": 4223.594168243774 }, { "type": "C", "frame": 20, "at": 4223.594168243774 }, { "type": "O", "frame": 6, "at": 4223.594168243774 }, { "type": "O", "frame": 7, "at": 4223.594168243774 }, { "type": "O", "frame": 8, "at": 4223.594168243774 }, { "type": "O", "frame": 9, "at": 4223.594168243774 }, { "type": "O", "frame": 10, "at": 4223.594168243774 }, { "type": "O", "frame": 11, "at": 4223.594168243774 }, { "type": "O", "frame": 12, "at": 4223.594168243774 }, { "type": "O", "frame": 13, "at": 4223.594168243774 }, { "type": "O", "frame": 14, "at": 4223.594168243774 }, { "type": "O", "frame": 15, "at": 4223.594168243774 }, { "type": "O", "frame": 16, "at": 4223.594168243774 }, { "type": "O", "frame": 21, "at": 4223.594168243774 }, { "type": "O", "frame": 22, "at": 4223.594168243774 }, { "type": "O", "frame": 23, "at": 4223.594168243774 }, { "type": "O", "frame": 28, "at": 4223.594168243774 }, { "type": "O", "frame": 18, "at": 4223.594168243774 }, { "type": "C", "frame": 18, "at": 4224.942458993141 }, { "type": "C", "frame": 28, "at": 4224.942458993141 }, { "type": "O", "frame": 24, "at": 4224.942459 }, { "type": "O", "frame": 18, "at": 4224.942459 }, { "type": "C", "frame": 18, "at": 4233.030874145874 }, { "type": "C", "frame": 24, "at": 4233.030874145874 }, { "type": "C", "frame": 23, "at": 4233.030875450318 }, { "type": "C", "frame": 22, "at": 4233.030875450318 }, { "type": "C", "frame": 21, "at": 4233.030875450318 }, { "type": "O", "frame": 17, "at": 4233.030875450318 }, { "type": "O", "frame": 18, "at": 4233.030875450318 }, { "type": "C", "frame": 18, "at": 4238.613917144776 }, { "type": "C", "frame": 17, "at": 4238.613917144776 }, { "type": "O", "frame": 19, "at": 4238.613917144776 }, { "type": "O", "frame": 18, "at": 4238.613917144776 }, { "type": "C", "frame": 18, "at": 4245.290000087921 }, { "type": "C", "frame": 19, "at": 4245.290000087921 }, { "type": "C", "frame": 16, "at": 4245.290000206177 }, { "type": "C", "frame": 15, "at": 4245.290000206177 }, { "type": "C", "frame": 14, "at": 4245.290000206177 }, { "type": "C", "frame": 13, "at": 4245.290000206177 }, { "type": "C", "frame": 12, "at": 4245.290000206177 }, { "type": "C", "frame": 11, "at": 4245.290000206177 }, { "type": "C", "frame": 10, "at": 4245.290000206177 }, { "type": "C", "frame": 9, "at": 4245.290000206177 }, { "type": "C", "frame": 8, "at": 4245.290000206177 }, { "type": "C", "frame": 7, "at": 4245.290000206177 }, { "type": "C", "frame": 6, "at": 4245.290000206177 }, { "type": "O", "frame": 20, "at": 4245.290000206177 }, { "type": "O", "frame": 8, "at": 4245.290000206177 }, { "type": "O", "frame": 9, "at": 4245.290000206177 }, { "type": "O", "frame": 10, "at": 4245.290000206177 }, { "type": "O", "frame": 11, "at": 4245.290000206177 }, { "type": "O", "frame": 12, "at": 4245.290000206177 }, { "type": "O", "frame": 13, "at": 4245.290000206177 }, { "type": "O", "frame": 14, "at": 4245.290000206177 }, { "type": "O", "frame": 15, "at": 4245.290000206177 }, { "type": "O", "frame": 16, "at": 4245.290000206177 }, { "type": "O", "frame": 21, "at": 4245.290000206177 }, { "type": "O", "frame": 22, "at": 4245.290000206177 }, { "type": "O", "frame": 23, "at": 4245.290000206177 }, { "type": "O", "frame": 24, "at": 4245.290000206177 }, { "type": "O", "frame": 18, "at": 4245.290000206177 }, { "type": "C", "frame": 18, "at": 4254.709584274292 }, { "type": "C", "frame": 24, "at": 4254.709584274292 }, { "type": "C", "frame": 23, "at": 4254.709584274292 }, { "type": "C", "frame": 22, "at": 4254.709584274292 }, { "type": "C", "frame": 21, "at": 4254.709584274292 }, { "type": "O", "frame": 17, "at": 4254.709584274292 }, { "type": "O", "frame": 18, "at": 4254.709584274292 }, { "type": "C", "frame": 18, "at": 4260.321583988556 }, { "type": "C", "frame": 17, "at": 4260.321583988556 }, { "type": "O", "frame": 19, "at": 4260.321584 }, { "type": "O", "frame": 18, "at": 4260.321584 }, { "type": "C", "frame": 18, "at": 4261.658749951729 }, { "type": "C", "frame": 19, "at": 4261.658749951729 }, { "type": "C", "frame": 16, "at": 4261.658749951729 }, { "type": "C", "frame": 15, "at": 4261.658749951729 }, { "type": "C", "frame": 14, "at": 4261.658749951729 }, { "type": "C", "frame": 13, "at": 4261.658749951729 }, { "type": "C", "frame": 12, "at": 4261.658749951729 }, { "type": "C", "frame": 11, "at": 4261.658749951729 }, { "type": "C", "frame": 10, "at": 4261.658749951729 }, { "type": "C", "frame": 9, "at": 4261.658749951729 }, { "type": "C", "frame": 8, "at": 4261.658749951729 }, { "type": "C", "frame": 20, "at": 4261.658749951729 }, { "type": "O", "frame": 6, "at": 4261.65875 }, { "type": "O", "frame": 7, "at": 4261.65875 }, { "type": "O", "frame": 8, "at": 4261.65875 }, { "type": "O", "frame": 9, "at": 4261.65875 }, { "type": "O", "frame": 10, "at": 4261.65875 }, { "type": "O", "frame": 11, "at": 4261.65875 }, { "type": "O", "frame": 12, "at": 4261.65875 }, { "type": "O", "frame": 13, "at": 4261.65875 }, { "type": "O", "frame": 14, "at": 4261.65875 }, { "type": "O", "frame": 15, "at": 4261.65875 }, { "type": "O", "frame": 16, "at": 4261.65875 }, { "type": "O", "frame": 21, "at": 4261.65875 }, { "type": "O", "frame": 22, "at": 4261.65875 }, { "type": "O", "frame": 23, "at": 4261.65875 }, { "type": "O", "frame": 24, "at": 4261.65875 }, { "type": "O", "frame": 18, "at": 4261.65875 }, { "type": "C", "frame": 18, "at": 4265.502209129333 }, { "type": "C", "frame": 24, "at": 4265.502209129333 }, { "type": "O", "frame": 26, "at": 4265.502209129333 }, { "type": "O", "frame": 18, "at": 4265.502209129333 }, { "type": "C", "frame": 18, "at": 4266.852834038147 }, { "type": "C", "frame": 26, "at": 4266.852834038147 }, { "type": "O", "frame": 29, "at": 4266.852834038147 }, { "type": "O", "frame": 18, "at": 4266.852834038147 }, { "type": "C", "frame": 18, "at": 4269.544958843598 }, { "type": "C", "frame": 29, "at": 4269.544958843598 }, { "type": "O", "frame": 24, "at": 4269.544959 }, { "type": "O", "frame": 18, "at": 4269.544959 }, { "type": "C", "frame": 18, "at": 4270.935458949455 }, { "type": "C", "frame": 24, "at": 4270.935458949455 }, { "type": "C", "frame": 23, "at": 4270.935458949455 }, { "type": "C", "frame": 22, "at": 4270.935458949455 }, { "type": "C", "frame": 21, "at": 4270.935458949455 }, { "type": "O", "frame": 17, "at": 4270.935459 }, { "type": "O", "frame": 18, "at": 4270.935459 }, { "type": "C", "frame": 18, "at": 4277.823416572937 }, { "type": "C", "frame": 17, "at": 4277.823416572937 }, { "type": "O", "frame": 19, "at": 4277.823417 }, { "type": "O", "frame": 18, "at": 4277.823417 }, { "type": "C", "frame": 18, "at": 4291.1643755952755 }, { "type": "C", "frame": 19, "at": 4291.1643755952755 }, { "type": "C", "frame": 16, "at": 4291.1643755952755 }, { "type": "C", "frame": 15, "at": 4291.1643755952755 }, { "type": "C", "frame": 14, "at": 4291.1643755952755 }, { "type": "C", "frame": 13, "at": 4291.1643755952755 }, { "type": "C", "frame": 12, "at": 4291.1643755952755 }, { "type": "C", "frame": 11, "at": 4291.1643755952755 }, { "type": "C", "frame": 10, "at": 4291.1643755952755 }, { "type": "C", "frame": 9, "at": 4291.1643755952755 }, { "type": "C", "frame": 8, "at": 4291.1643755952755 }, { "type": "C", "frame": 7, "at": 4291.1643755952755 }, { "type": "C", "frame": 6, "at": 4291.1643755952755 }, { "type": "O", "frame": 20, "at": 4291.1643755952755 }, { "type": "O", "frame": 8, "at": 4291.1643755952755 }, { "type": "O", "frame": 9, "at": 4291.1643755952755 }, { "type": "O", "frame": 10, "at": 4291.1643755952755 }, { "type": "O", "frame": 11, "at": 4291.1643755952755 }, { "type": "O", "frame": 12, "at": 4291.1643755952755 }, { "type": "O", "frame": 13, "at": 4291.1643755952755 }, { "type": "O", "frame": 14, "at": 4291.1643755952755 }, { "type": "O", "frame": 15, "at": 4291.1643755952755 }, { "type": "O", "frame": 16, "at": 4291.1643755952755 }, { "type": "O", "frame": 21, "at": 4291.1643755952755 }, { "type": "O", "frame": 22, "at": 4291.1643755952755 }, { "type": "O", "frame": 23, "at": 4291.1643755952755 }, { "type": "O", "frame": 24, "at": 4291.1643755952755 }, { "type": "O", "frame": 18, "at": 4291.1643755952755 }, { "type": "C", "frame": 18, "at": 4293.861959152222 }, { "type": "C", "frame": 24, "at": 4293.861959152222 }, { "type": "O", "frame": 28, "at": 4293.861959152222 }, { "type": "O", "frame": 18, "at": 4293.861959152222 }, { "type": "C", "frame": 18, "at": 4295.252458949455 }, { "type": "C", "frame": 28, "at": 4295.252458949455 }, { "type": "O", "frame": 24, "at": 4295.252459 }, { "type": "O", "frame": 18, "at": 4295.252459 }, { "type": "C", "frame": 18, "at": 4300.661292026886 }, { "type": "C", "frame": 24, "at": 4300.661292026886 }, { "type": "C", "frame": 23, "at": 4300.661292026886 }, { "type": "C", "frame": 22, "at": 4300.661292026886 }, { "type": "C", "frame": 21, "at": 4300.661292026886 }, { "type": "O", "frame": 17, "at": 4300.661292026886 }, { "type": "O", "frame": 18, "at": 4300.661292026886 }, { "type": "C", "frame": 18, "at": 4306.295916958038 }, { "type": "C", "frame": 17, "at": 4306.295916958038 }, { "type": "O", "frame": 19, "at": 4306.295917 }, { "type": "O", "frame": 18, "at": 4306.295917 }, { "type": "C", "frame": 18, "at": 4312.990624870484 }, { "type": "C", "frame": 19, "at": 4312.990624870484 }, { "type": "C", "frame": 16, "at": 4312.990626983643 }, { "type": "C", "frame": 15, "at": 4312.990626983643 }, { "type": "C", "frame": 14, "at": 4312.990626983643 }, { "type": "C", "frame": 13, "at": 4312.990626983643 }, { "type": "C", "frame": 12, "at": 4312.990626983643 }, { "type": "C", "frame": 11, "at": 4312.990626983643 }, { "type": "C", "frame": 10, "at": 4312.990626983643 }, { "type": "C", "frame": 9, "at": 4312.990626983643 }, { "type": "C", "frame": 8, "at": 4312.990626983643 }, { "type": "C", "frame": 20, "at": 4312.990626983643 }, { "type": "O", "frame": 6, "at": 4312.990626983643 }, { "type": "O", "frame": 7, "at": 4312.990626983643 }, { "type": "O", "frame": 8, "at": 4312.990626983643 }, { "type": "O", "frame": 9, "at": 4312.990626983643 }, { "type": "O", "frame": 10, "at": 4312.990626983643 }, { "type": "O", "frame": 11, "at": 4312.990626983643 }, { "type": "O", "frame": 12, "at": 4312.990626983643 }, { "type": "O", "frame": 13, "at": 4312.990626983643 }, { "type": "O", "frame": 14, "at": 4312.990626983643 }, { "type": "O", "frame": 15, "at": 4312.990626983643 }, { "type": "O", "frame": 16, "at": 4312.990626983643 }, { "type": "O", "frame": 21, "at": 4312.990626983643 }, { "type": "O", "frame": 22, "at": 4312.990626983643 }, { "type": "O", "frame": 23, "at": 4312.990626983643 }, { "type": "O", "frame": 28, "at": 4312.990626983643 }, { "type": "O", "frame": 18, "at": 4312.990626983643 }, { "type": "C", "frame": 18, "at": 4314.33537504673 }, { "type": "C", "frame": 28, "at": 4314.33537504673 }, { "type": "O", "frame": 24, "at": 4314.33537504673 }, { "type": "O", "frame": 18, "at": 4314.33537504673 }, { "type": "C", "frame": 18, "at": 4319.738834072113 }, { "type": "C", "frame": 24, "at": 4319.738834072113 }, { "type": "O", "frame": 31, "at": 4319.738834072113 }, { "type": "O", "frame": 18, "at": 4319.738834072113 }, { "type": "C", "frame": 18, "at": 4321.078459000953 }, { "type": "C", "frame": 31, "at": 4321.078459000953 }, { "type": "O", "frame": 24, "at": 4321.078459000953 }, { "type": "O", "frame": 18, "at": 4321.078459000953 }, { "type": "C", "frame": 18, "at": 4322.43604204596 }, { "type": "C", "frame": 24, "at": 4322.43604204596 }, { "type": "C", "frame": 23, "at": 4322.436042404175 }, { "type": "C", "frame": 22, "at": 4322.436042404175 }, { "type": "C", "frame": 21, "at": 4322.436042404175 }, { "type": "O", "frame": 17, "at": 4322.436042404175 }, { "type": "O", "frame": 18, "at": 4322.436042404175 }, { "type": "C", "frame": 18, "at": 4327.938916851227 }, { "type": "C", "frame": 17, "at": 4327.938916851227 }, { "type": "O", "frame": 19, "at": 4327.938917 }, { "type": "O", "frame": 18, "at": 4327.938917 }, { "type": "C", "frame": 18, "at": 4334.636916954224 }, { "type": "C", "frame": 19, "at": 4334.636916954224 }, { "type": "C", "frame": 16, "at": 4334.636916954224 }, { "type": "C", "frame": 15, "at": 4334.636916954224 }, { "type": "C", "frame": 14, "at": 4334.636916954224 }, { "type": "C", "frame": 13, "at": 4334.636916954224 }, { "type": "C", "frame": 12, "at": 4334.636916954224 }, { "type": "C", "frame": 11, "at": 4334.636916954224 }, { "type": "C", "frame": 10, "at": 4334.636916954224 }, { "type": "C", "frame": 9, "at": 4334.636916954224 }, { "type": "C", "frame": 8, "at": 4334.636916954224 }, { "type": "C", "frame": 7, "at": 4334.636916954224 }, { "type": "C", "frame": 6, "at": 4334.636916954224 }, { "type": "O", "frame": 20, "at": 4334.636917 }, { "type": "O", "frame": 8, "at": 4334.636917 }, { "type": "O", "frame": 9, "at": 4334.636917 }, { "type": "O", "frame": 10, "at": 4334.636917 }, { "type": "O", "frame": 11, "at": 4334.636917 }, { "type": "O", "frame": 12, "at": 4334.636917 }, { "type": "O", "frame": 13, "at": 4334.636917 }, { "type": "O", "frame": 14, "at": 4334.636917 }, { "type": "O", "frame": 15, "at": 4334.636917 }, { "type": "O", "frame": 16, "at": 4334.636917 }, { "type": "O", "frame": 21, "at": 4334.636917 }, { "type": "O", "frame": 22, "at": 4334.636917 }, { "type": "O", "frame": 23, "at": 4334.636917 }, { "type": "O", "frame": 24, "at": 4334.636917 }, { "type": "O", "frame": 18, "at": 4334.636917 }, { "type": "C", "frame": 18, "at": 4344.088917617981 }, { "type": "C", "frame": 24, "at": 4344.088917617981 }, { "type": "C", "frame": 23, "at": 4344.088917617981 }, { "type": "C", "frame": 22, "at": 4344.088917617981 }, { "type": "C", "frame": 21, "at": 4344.088917617981 }, { "type": "O", "frame": 17, "at": 4344.088917617981 }, { "type": "O", "frame": 18, "at": 4344.088917617981 }, { "type": "C", "frame": 18, "at": 4348.196624977295 }, { "type": "C", "frame": 17, "at": 4348.196624977295 }, { "type": "O", "frame": 19, "at": 4348.196625 }, { "type": "O", "frame": 18, "at": 4348.196625 }, { "type": "C", "frame": 18, "at": 4354.874749904632 }, { "type": "C", "frame": 19, "at": 4354.874749904632 }, { "type": "C", "frame": 16, "at": 4354.874750023071 }, { "type": "C", "frame": 15, "at": 4354.874750023071 }, { "type": "C", "frame": 14, "at": 4354.874750023071 }, { "type": "C", "frame": 13, "at": 4354.874750023071 }, { "type": "C", "frame": 12, "at": 4354.874750023071 }, { "type": "C", "frame": 11, "at": 4354.874750023071 }, { "type": "C", "frame": 10, "at": 4354.874750023071 }, { "type": "C", "frame": 9, "at": 4354.874750023071 }, { "type": "C", "frame": 8, "at": 4354.874750023071 }, { "type": "C", "frame": 20, "at": 4354.874750023071 }, { "type": "O", "frame": 6, "at": 4354.874750023071 }, { "type": "O", "frame": 7, "at": 4354.874750023071 }, { "type": "O", "frame": 8, "at": 4354.874750023071 }, { "type": "O", "frame": 9, "at": 4354.874750023071 }, { "type": "O", "frame": 10, "at": 4354.874750023071 }, { "type": "O", "frame": 11, "at": 4354.874750023071 }, { "type": "O", "frame": 12, "at": 4354.874750023071 }, { "type": "O", "frame": 13, "at": 4354.874750023071 }, { "type": "O", "frame": 14, "at": 4354.874750023071 }, { "type": "O", "frame": 15, "at": 4354.874750023071 }, { "type": "O", "frame": 47, "at": 4354.874750023071 }, { "type": "O", "frame": 18, "at": 4354.874750023071 }, { "type": "C", "frame": 18, "at": 4356.216209035873 }, { "type": "C", "frame": 47, "at": 4356.216209035873 }, { "type": "O", "frame": 16, "at": 4356.216209035873 }, { "type": "O", "frame": 21, "at": 4356.216209035873 }, { "type": "O", "frame": 22, "at": 4356.216209035873 }, { "type": "O", "frame": 23, "at": 4356.216209035873 }, { "type": "O", "frame": 24, "at": 4356.216209035873 }, { "type": "O", "frame": 18, "at": 4356.216209035873 }, { "type": "C", "frame": 18, "at": 4364.28016716803 }, { "type": "C", "frame": 24, "at": 4364.28016716803 }, { "type": "C", "frame": 23, "at": 4364.28016716803 }, { "type": "C", "frame": 22, "at": 4364.28016716803 }, { "type": "C", "frame": 21, "at": 4364.28016716803 }, { "type": "O", "frame": 17, "at": 4364.28016716803 }, { "type": "O", "frame": 18, "at": 4364.28016716803 }, { "type": "C", "frame": 18, "at": 4369.852750198547 }, { "type": "C", "frame": 17, "at": 4369.852750198547 }, { "type": "O", "frame": 19, "at": 4369.852750198547 }, { "type": "O", "frame": 18, "at": 4369.852750198547 }, { "type": "C", "frame": 18, "at": 4373.85158389473 }, { "type": "C", "frame": 19, "at": 4373.85158389473 }, { "type": "C", "frame": 16, "at": 4373.851584976563 }, { "type": "C", "frame": 15, "at": 4373.851584976563 }, { "type": "C", "frame": 14, "at": 4373.851584976563 }, { "type": "C", "frame": 13, "at": 4373.851584976563 }, { "type": "C", "frame": 12, "at": 4373.851584976563 }, { "type": "C", "frame": 11, "at": 4373.851584976563 }, { "type": "C", "frame": 10, "at": 4373.851584976563 }, { "type": "C", "frame": 9, "at": 4373.851584976563 }, { "type": "C", "frame": 8, "at": 4373.851584976563 }, { "type": "C", "frame": 7, "at": 4373.851584976563 }, { "type": "C", "frame": 6, "at": 4373.851584976563 }, { "type": "O", "frame": 20, "at": 4373.851584976563 }, { "type": "O", "frame": 8, "at": 4373.851584976563 }, { "type": "O", "frame": 9, "at": 4373.851584976563 }, { "type": "O", "frame": 10, "at": 4373.851584976563 }, { "type": "O", "frame": 11, "at": 4373.851584976563 }, { "type": "O", "frame": 12, "at": 4373.851584976563 }, { "type": "O", "frame": 13, "at": 4373.851584976563 }, { "type": "O", "frame": 14, "at": 4373.851584976563 }, { "type": "O", "frame": 15, "at": 4373.851584976563 }, { "type": "O", "frame": 16, "at": 4373.851584976563 }, { "type": "O", "frame": 21, "at": 4373.851584976563 }, { "type": "O", "frame": 22, "at": 4373.851584976563 }, { "type": "O", "frame": 23, "at": 4373.851584976563 }, { "type": "O", "frame": 24, "at": 4373.851584976563 }, { "type": "O", "frame": 18, "at": 4373.851584976563 }, { "type": "C", "frame": 18, "at": 4375.19558398188 }, { "type": "C", "frame": 24, "at": 4375.19558398188 }, { "type": "O", "frame": 29, "at": 4375.195584 }, { "type": "O", "frame": 18, "at": 4375.195584 }, { "type": "C", "frame": 18, "at": 4376.541500032791 }, { "type": "C", "frame": 29, "at": 4376.541500032791 }, { "type": "O", "frame": 24, "at": 4376.541500032791 }, { "type": "O", "frame": 18, "at": 4376.541500032791 }, { "type": "C", "frame": 18, "at": 4377.891791967392 }, { "type": "C", "frame": 24, "at": 4377.891791967392 }, { "type": "O", "frame": 29, "at": 4377.891792 }, { "type": "O", "frame": 18, "at": 4377.891792 }, { "type": "C", "frame": 18, "at": 4379.238750041191 }, { "type": "C", "frame": 29, "at": 4379.238750041191 }, { "type": "O", "frame": 24, "at": 4379.238750041191 }, { "type": "O", "frame": 18, "at": 4379.238750041191 }, { "type": "C", "frame": 18, "at": 4383.313958663941 }, { "type": "C", "frame": 24, "at": 4383.313958663941 }, { "type": "C", "frame": 23, "at": 4383.313958687195 }, { "type": "C", "frame": 22, "at": 4383.313958687195 }, { "type": "C", "frame": 21, "at": 4383.313958687195 }, { "type": "O", "frame": 17, "at": 4383.313959 }, { "type": "O", "frame": 18, "at": 4383.313959 }, { "type": "C", "frame": 18, "at": 4388.874584076294 }, { "type": "C", "frame": 17, "at": 4388.874584076294 }, { "type": "O", "frame": 19, "at": 4388.874584076294 }, { "type": "O", "frame": 18, "at": 4388.874584076294 }, { "type": "C", "frame": 18, "at": 4391.551625053772 }, { "type": "C", "frame": 19, "at": 4391.551625053772 }, { "type": "C", "frame": 16, "at": 4391.551625053772 }, { "type": "C", "frame": 15, "at": 4391.551625053772 }, { "type": "C", "frame": 14, "at": 4391.551625053772 }, { "type": "C", "frame": 13, "at": 4391.551625053772 }, { "type": "C", "frame": 12, "at": 4391.551625053772 }, { "type": "C", "frame": 11, "at": 4391.551625053772 }, { "type": "C", "frame": 10, "at": 4391.551625053772 }, { "type": "C", "frame": 9, "at": 4391.551625053772 }, { "type": "C", "frame": 8, "at": 4391.551625053772 }, { "type": "C", "frame": 20, "at": 4391.551625053772 }, { "type": "O", "frame": 6, "at": 4391.551625053772 }, { "type": "O", "frame": 7, "at": 4391.551625053772 }, { "type": "O", "frame": 8, "at": 4391.551625053772 }, { "type": "O", "frame": 9, "at": 4391.551625053772 }, { "type": "O", "frame": 10, "at": 4391.551625053772 }, { "type": "O", "frame": 11, "at": 4391.551625053772 }, { "type": "O", "frame": 12, "at": 4391.551625053772 }, { "type": "O", "frame": 13, "at": 4391.551625053772 }, { "type": "O", "frame": 14, "at": 4391.551625053772 }, { "type": "O", "frame": 15, "at": 4391.551625053772 }, { "type": "O", "frame": 16, "at": 4391.551625053772 }, { "type": "O", "frame": 21, "at": 4391.551625053772 }, { "type": "O", "frame": 22, "at": 4391.551625053772 }, { "type": "O", "frame": 23, "at": 4391.551625053772 }, { "type": "O", "frame": 24, "at": 4391.551625053772 }, { "type": "O", "frame": 18, "at": 4391.551625053772 }, { "type": "C", "frame": 18, "at": 4400.999084220886 }, { "type": "C", "frame": 24, "at": 4400.999084220886 }, { "type": "C", "frame": 23, "at": 4400.999084220886 }, { "type": "C", "frame": 22, "at": 4400.999084220886 }, { "type": "C", "frame": 21, "at": 4400.999084220886 }, { "type": "O", "frame": 17, "at": 4400.999084220886 }, { "type": "O", "frame": 18, "at": 4400.999084220886 }, { "type": "C", "frame": 18, "at": 4405.078958992371 }, { "type": "C", "frame": 17, "at": 4405.078958992371 }, { "type": "O", "frame": 19, "at": 4405.078959 }, { "type": "O", "frame": 18, "at": 4405.078959 }, { "type": "C", "frame": 18, "at": 4413.083166611084 }, { "type": "C", "frame": 19, "at": 4413.083166611084 }, { "type": "C", "frame": 16, "at": 4413.083166824341 }, { "type": "C", "frame": 15, "at": 4413.083166824341 }, { "type": "C", "frame": 14, "at": 4413.083166824341 }, { "type": "C", "frame": 13, "at": 4413.083166824341 }, { "type": "C", "frame": 12, "at": 4413.083166824341 }, { "type": "C", "frame": 11, "at": 4413.083166824341 }, { "type": "C", "frame": 10, "at": 4413.083166824341 }, { "type": "C", "frame": 9, "at": 4413.083166824341 }, { "type": "C", "frame": 8, "at": 4413.083166824341 }, { "type": "C", "frame": 7, "at": 4413.083166824341 }, { "type": "C", "frame": 6, "at": 4413.083166824341 }, { "type": "O", "frame": 20, "at": 4413.083167 }, { "type": "O", "frame": 8, "at": 4413.083167 }, { "type": "O", "frame": 9, "at": 4413.083167 }, { "type": "O", "frame": 10, "at": 4413.083167 }, { "type": "O", "frame": 11, "at": 4413.083167 }, { "type": "O", "frame": 12, "at": 4413.083167 }, { "type": "O", "frame": 13, "at": 4413.083167 }, { "type": "O", "frame": 14, "at": 4413.083167 }, { "type": "O", "frame": 15, "at": 4413.083167 }, { "type": "O", "frame": 16, "at": 4413.083167 }, { "type": "O", "frame": 21, "at": 4413.083167 }, { "type": "O", "frame": 22, "at": 4413.083167 }, { "type": "O", "frame": 23, "at": 4413.083167 }, { "type": "O", "frame": 24, "at": 4413.083167 }, { "type": "O", "frame": 18, "at": 4413.083167 }, { "type": "C", "frame": 18, "at": 4419.784999771301 }, { "type": "C", "frame": 24, "at": 4419.784999771301 }, { "type": "O", "frame": 26, "at": 4419.785 }, { "type": "O", "frame": 18, "at": 4419.785 }, { "type": "C", "frame": 18, "at": 4421.127708945274 }, { "type": "C", "frame": 26, "at": 4421.127708945274 }, { "type": "O", "frame": 24, "at": 4421.127709 }, { "type": "O", "frame": 18, "at": 4421.127709 }, { "type": "C", "frame": 18, "at": 4422.477249948868 }, { "type": "C", "frame": 24, "at": 4422.477249948868 }, { "type": "C", "frame": 23, "at": 4422.477249948868 }, { "type": "C", "frame": 22, "at": 4422.477249948868 }, { "type": "C", "frame": 21, "at": 4422.477249948868 }, { "type": "O", "frame": 17, "at": 4422.47725 }, { "type": "O", "frame": 18, "at": 4422.47725 }, { "type": "C", "frame": 18, "at": 4426.574125190735 }, { "type": "C", "frame": 17, "at": 4426.574125190735 }, { "type": "O", "frame": 19, "at": 4426.574125190735 }, { "type": "O", "frame": 18, "at": 4426.574125190735 }, { "type": "C", "frame": 18, "at": 4434.616166778565 }, { "type": "C", "frame": 19, "at": 4434.616166778565 }, { "type": "C", "frame": 16, "at": 4434.616166778565 }, { "type": "C", "frame": 15, "at": 4434.616166778565 }, { "type": "C", "frame": 14, "at": 4434.616166778565 }, { "type": "C", "frame": 13, "at": 4434.616166778565 }, { "type": "C", "frame": 12, "at": 4434.616166778565 }, { "type": "C", "frame": 11, "at": 4434.616166778565 }, { "type": "C", "frame": 10, "at": 4434.616166778565 }, { "type": "C", "frame": 9, "at": 4434.616166778565 }, { "type": "C", "frame": 8, "at": 4434.616166778565 }, { "type": "C", "frame": 20, "at": 4434.616166778565 }, { "type": "O", "frame": 6, "at": 4434.616167 }, { "type": "O", "frame": 7, "at": 4434.616167 }, { "type": "O", "frame": 8, "at": 4434.616167 }, { "type": "O", "frame": 9, "at": 4434.616167 }, { "type": "O", "frame": 10, "at": 4434.616167 }, { "type": "O", "frame": 11, "at": 4434.616167 }, { "type": "O", "frame": 12, "at": 4434.616167 }, { "type": "O", "frame": 13, "at": 4434.616167 }, { "type": "O", "frame": 14, "at": 4434.616167 }, { "type": "O", "frame": 15, "at": 4434.616167 }, { "type": "O", "frame": 16, "at": 4434.616167 }, { "type": "O", "frame": 21, "at": 4434.616167 }, { "type": "O", "frame": 22, "at": 4434.616167 }, { "type": "O", "frame": 23, "at": 4434.616167 }, { "type": "O", "frame": 24, "at": 4434.616167 }, { "type": "O", "frame": 18, "at": 4434.616167 }, { "type": "C", "frame": 18, "at": 4438.649416855042 }, { "type": "C", "frame": 24, "at": 4438.649416855042 }, { "type": "O", "frame": 29, "at": 4438.649417 }, { "type": "O", "frame": 18, "at": 4438.649417 }, { "type": "C", "frame": 18, "at": 4439.991458969299 }, { "type": "C", "frame": 29, "at": 4439.991458969299 }, { "type": "O", "frame": 24, "at": 4439.991459 }, { "type": "O", "frame": 18, "at": 4439.991459 }, { "type": "C", "frame": 18, "at": 4442.688334095367 }, { "type": "C", "frame": 24, "at": 4442.688334095367 }, { "type": "C", "frame": 23, "at": 4442.6883343965455 }, { "type": "C", "frame": 22, "at": 4442.6883343965455 }, { "type": "C", "frame": 21, "at": 4442.6883343965455 }, { "type": "O", "frame": 17, "at": 4442.6883343965455 }, { "type": "O", "frame": 18, "at": 4442.6883343965455 }, { "type": "C", "frame": 18, "at": 4448.248042595276 }, { "type": "C", "frame": 17, "at": 4448.248042595276 }, { "type": "O", "frame": 19, "at": 4448.248042595276 }, { "type": "O", "frame": 18, "at": 4448.248042595276 }, { "type": "C", "frame": 18, "at": 4449.609084022705 }, { "type": "C", "frame": 19, "at": 4449.609084022705 }, { "type": "C", "frame": 16, "at": 4449.609084060852 }, { "type": "C", "frame": 15, "at": 4449.609084060852 }, { "type": "C", "frame": 14, "at": 4449.609084060852 }, { "type": "C", "frame": 13, "at": 4449.609084060852 }, { "type": "C", "frame": 12, "at": 4449.609084060852 }, { "type": "C", "frame": 11, "at": 4449.609084060852 }, { "type": "C", "frame": 10, "at": 4449.609084060852 }, { "type": "C", "frame": 9, "at": 4449.609084060852 }, { "type": "C", "frame": 8, "at": 4449.609084060852 }, { "type": "C", "frame": 7, "at": 4449.609084060852 }, { "type": "C", "frame": 6, "at": 4449.609084060852 }, { "type": "O", "frame": 20, "at": 4449.609084060852 }, { "type": "O", "frame": 18, "at": 4449.609084060852 }, { "type": "C", "frame": 18, "at": 4450.966917027839 }, { "type": "O", "frame": 8, "at": 4450.966917027839 }, { "type": "O", "frame": 9, "at": 4450.966917027839 }, { "type": "O", "frame": 10, "at": 4450.966917027839 }, { "type": "O", "frame": 11, "at": 4450.966917027839 }, { "type": "O", "frame": 12, "at": 4450.966917027839 }, { "type": "O", "frame": 13, "at": 4450.966917027839 }, { "type": "O", "frame": 14, "at": 4450.966917027839 }, { "type": "O", "frame": 15, "at": 4450.966917027839 }, { "type": "O", "frame": 16, "at": 4450.966917027839 }, { "type": "O", "frame": 21, "at": 4450.966917027839 }, { "type": "O", "frame": 22, "at": 4450.966917027839 }, { "type": "O", "frame": 23, "at": 4450.966917027839 }, { "type": "O", "frame": 24, "at": 4450.966917027839 }, { "type": "O", "frame": 18, "at": 4450.966917027839 }, { "type": "C", "frame": 18, "at": 4459.036375007812 }, { "type": "C", "frame": 24, "at": 4459.036375007812 }, { "type": "C", "frame": 23, "at": 4459.036375007812 }, { "type": "C", "frame": 22, "at": 4459.036375007812 }, { "type": "C", "frame": 21, "at": 4459.036375007812 }, { "type": "O", "frame": 17, "at": 4459.036375007812 }, { "type": "O", "frame": 18, "at": 4459.036375007812 }, { "type": "C", "frame": 18, "at": 4464.602750255584 }, { "type": "C", "frame": 17, "at": 4464.602750255584 }, { "type": "O", "frame": 19, "at": 4464.602750255584 }, { "type": "O", "frame": 18, "at": 4464.602750255584 }, { "type": "C", "frame": 18, "at": 4471.320209201813 }, { "type": "C", "frame": 19, "at": 4471.320209201813 }, { "type": "C", "frame": 16, "at": 4471.320209201813 }, { "type": "C", "frame": 15, "at": 4471.320209201813 }, { "type": "C", "frame": 14, "at": 4471.320209201813 }, { "type": "C", "frame": 13, "at": 4471.320209201813 }, { "type": "C", "frame": 12, "at": 4471.320209201813 }, { "type": "C", "frame": 11, "at": 4471.320209201813 }, { "type": "C", "frame": 10, "at": 4471.320209201813 }, { "type": "C", "frame": 9, "at": 4471.320209201813 }, { "type": "C", "frame": 8, "at": 4471.320209201813 }, { "type": "C", "frame": 20, "at": 4471.320209201813 }, { "type": "O", "frame": 6, "at": 4471.320209201813 }, { "type": "O", "frame": 7, "at": 4471.320209201813 }, { "type": "O", "frame": 8, "at": 4471.320209201813 }, { "type": "O", "frame": 9, "at": 4471.320209201813 }, { "type": "O", "frame": 10, "at": 4471.320209201813 }, { "type": "O", "frame": 11, "at": 4471.320209201813 }, { "type": "O", "frame": 12, "at": 4471.320209201813 }, { "type": "O", "frame": 13, "at": 4471.320209201813 }, { "type": "O", "frame": 14, "at": 4471.320209201813 }, { "type": "O", "frame": 15, "at": 4471.320209201813 }, { "type": "O", "frame": 16, "at": 4471.320209201813 }, { "type": "O", "frame": 21, "at": 4471.320209201813 }, { "type": "O", "frame": 22, "at": 4471.320209201813 }, { "type": "O", "frame": 23, "at": 4471.320209201813 }, { "type": "O", "frame": 24, "at": 4471.320209201813 }, { "type": "O", "frame": 18, "at": 4471.320209201813 }, { "type": "C", "frame": 18, "at": 4474.015500042328 }, { "type": "C", "frame": 24, "at": 4474.015500042328 }, { "type": "O", "frame": 25, "at": 4474.015500042328 }, { "type": "O", "frame": 18, "at": 4474.015500042328 }, { "type": "C", "frame": 18, "at": 4475.372417023659 }, { "type": "C", "frame": 25, "at": 4475.372417023659 }, { "type": "O", "frame": 24, "at": 4475.372417023659 }, { "type": "O", "frame": 18, "at": 4475.372417023659 }, { "type": "C", "frame": 18, "at": 4480.769917038147 }, { "type": "C", "frame": 24, "at": 4480.769917038147 }, { "type": "C", "frame": 23, "at": 4480.769917038147 }, { "type": "C", "frame": 22, "at": 4480.769917038147 }, { "type": "C", "frame": 21, "at": 4480.769917038147 }, { "type": "O", "frame": 17, "at": 4480.769917038147 }, { "type": "O", "frame": 18, "at": 4480.769917038147 }, { "type": "C", "frame": 18, "at": 4486.296499717895 }, { "type": "C", "frame": 17, "at": 4486.296499717895 }, { "type": "O", "frame": 19, "at": 4486.2965 }, { "type": "O", "frame": 18, "at": 4486.2965 }, { "type": "C", "frame": 18, "at": 4487.629375013352 }, { "type": "C", "frame": 19, "at": 4487.629375013352 }, { "type": "C", "frame": 16, "at": 4487.629375013352 }, { "type": "C", "frame": 15, "at": 4487.629375013352 }, { "type": "C", "frame": 14, "at": 4487.629375013352 }, { "type": "C", "frame": 13, "at": 4487.629375013352 }, { "type": "C", "frame": 12, "at": 4487.629375013352 }, { "type": "C", "frame": 11, "at": 4487.629375013352 }, { "type": "C", "frame": 10, "at": 4487.629375013352 }, { "type": "C", "frame": 9, "at": 4487.629375013352 }, { "type": "C", "frame": 8, "at": 4487.629375013352 }, { "type": "C", "frame": 7, "at": 4487.629375013352 }, { "type": "C", "frame": 6, "at": 4487.629375013352 }, { "type": "O", "frame": 20, "at": 4487.629375013352 }, { "type": "O", "frame": 8, "at": 4487.629375013352 }, { "type": "O", "frame": 9, "at": 4487.629375013352 }, { "type": "O", "frame": 10, "at": 4487.629375013352 }, { "type": "O", "frame": 11, "at": 4487.629375013352 }, { "type": "O", "frame": 12, "at": 4487.629375013352 }, { "type": "O", "frame": 13, "at": 4487.629375013352 }, { "type": "O", "frame": 14, "at": 4487.629375013352 }, { "type": "O", "frame": 15, "at": 4487.629375013352 }, { "type": "O", "frame": 16, "at": 4487.629375013352 }, { "type": "O", "frame": 21, "at": 4487.629375013352 }, { "type": "O", "frame": 22, "at": 4487.629375013352 }, { "type": "O", "frame": 23, "at": 4487.629375013352 }, { "type": "O", "frame": 24, "at": 4487.629375013352 }, { "type": "O", "frame": 18, "at": 4487.629375013352 }, { "type": "C", "frame": 18, "at": 4493.013833541871 }, { "type": "C", "frame": 24, "at": 4493.013833541871 }, { "type": "O", "frame": 26, "at": 4493.013834 }, { "type": "O", "frame": 18, "at": 4493.013834 }, { "type": "C", "frame": 18, "at": 4494.35683405436 }, { "type": "C", "frame": 26, "at": 4494.35683405436 }, { "type": "O", "frame": 24, "at": 4494.35683405436 }, { "type": "O", "frame": 18, "at": 4494.35683405436 }, { "type": "C", "frame": 18, "at": 4495.721417015442 }, { "type": "C", "frame": 24, "at": 4495.721417015442 }, { "type": "C", "frame": 23, "at": 4495.721417015442 }, { "type": "O", "frame": 48, "at": 4495.721417015442 }, { "type": "O", "frame": 18, "at": 4495.721417015442 }, { "type": "C", "frame": 18, "at": 4497.08075003833 }, { "type": "C", "frame": 48, "at": 4497.08075003833 }, { "type": "C", "frame": 22, "at": 4497.08075003833 }, { "type": "C", "frame": 21, "at": 4497.08075003833 }, { "type": "O", "frame": 17, "at": 4497.08075003833 }, { "type": "O", "frame": 18, "at": 4497.08075003833 }, { "type": "C", "frame": 18, "at": 4501.192167293549 }, { "type": "C", "frame": 17, "at": 4501.192167293549 }, { "type": "O", "frame": 19, "at": 4501.192167293549 }, { "type": "O", "frame": 18, "at": 4501.192167293549 }, { "type": "C", "frame": 18, "at": 4506.548541740601 }, { "type": "C", "frame": 19, "at": 4506.548541740601 }, { "type": "C", "frame": 16, "at": 4506.548541740601 }, { "type": "C", "frame": 15, "at": 4506.548541740601 }, { "type": "C", "frame": 14, "at": 4506.548541740601 }, { "type": "C", "frame": 13, "at": 4506.548541740601 }, { "type": "C", "frame": 12, "at": 4506.548541740601 }, { "type": "C", "frame": 11, "at": 4506.548541740601 }, { "type": "C", "frame": 10, "at": 4506.548541740601 }, { "type": "C", "frame": 9, "at": 4506.548541740601 }, { "type": "C", "frame": 8, "at": 4506.548541740601 }, { "type": "C", "frame": 20, "at": 4506.548541740601 }, { "type": "O", "frame": 6, "at": 4506.548542 }, { "type": "O", "frame": 7, "at": 4506.548542 }, { "type": "O", "frame": 8, "at": 4506.548542 }, { "type": "O", "frame": 9, "at": 4506.548542 }, { "type": "O", "frame": 10, "at": 4506.548542 }, { "type": "O", "frame": 11, "at": 4506.548542 }, { "type": "O", "frame": 12, "at": 4506.548542 }, { "type": "O", "frame": 13, "at": 4506.548542 }, { "type": "O", "frame": 14, "at": 4506.548542 }, { "type": "O", "frame": 15, "at": 4506.548542 }, { "type": "O", "frame": 16, "at": 4506.548542 }, { "type": "O", "frame": 21, "at": 4506.548542 }, { "type": "O", "frame": 22, "at": 4506.548542 }, { "type": "O", "frame": 23, "at": 4506.548542 }, { "type": "O", "frame": 24, "at": 4506.548542 }, { "type": "O", "frame": 18, "at": 4506.548542 }, { "type": "C", "frame": 18, "at": 4509.246833778565 }, { "type": "C", "frame": 24, "at": 4509.246833778565 }, { "type": "O", "frame": 29, "at": 4509.246834 }, { "type": "O", "frame": 18, "at": 4509.246834 }, { "type": "C", "frame": 18, "at": 4510.586708982833 }, { "type": "C", "frame": 29, "at": 4510.586708982833 }, { "type": "O", "frame": 24, "at": 4510.586709 }, { "type": "O", "frame": 18, "at": 4510.586709 }, { "type": "C", "frame": 18, "at": 4515.97483394278 }, { "type": "C", "frame": 24, "at": 4515.97483394278 }, { "type": "C", "frame": 23, "at": 4515.97483394278 }, { "type": "C", "frame": 22, "at": 4515.97483394278 }, { "type": "C", "frame": 21, "at": 4515.97483394278 }, { "type": "O", "frame": 17, "at": 4515.974834 }, { "type": "O", "frame": 18, "at": 4515.974834 }, { "type": "C", "frame": 18, "at": 4520.114834343322 }, { "type": "C", "frame": 17, "at": 4520.114834343322 }, { "type": "O", "frame": 19, "at": 4520.114834343322 }, { "type": "O", "frame": 18, "at": 4520.114834343322 }, { "type": "C", "frame": 18, "at": 4528.136959244141 }, { "type": "C", "frame": 19, "at": 4528.136959244141 }, { "type": "C", "frame": 16, "at": 4528.136959244141 }, { "type": "C", "frame": 15, "at": 4528.136959244141 }, { "type": "C", "frame": 14, "at": 4528.136959244141 }, { "type": "C", "frame": 13, "at": 4528.136959244141 }, { "type": "C", "frame": 12, "at": 4528.136959244141 }, { "type": "C", "frame": 11, "at": 4528.136959244141 }, { "type": "C", "frame": 10, "at": 4528.136959244141 }, { "type": "C", "frame": 9, "at": 4528.136959244141 }, { "type": "C", "frame": 8, "at": 4528.136959244141 }, { "type": "C", "frame": 7, "at": 4528.136959244141 }, { "type": "C", "frame": 6, "at": 4528.136959244141 }, { "type": "O", "frame": 20, "at": 4528.136959244141 }, { "type": "O", "frame": 8, "at": 4528.136959244141 }, { "type": "O", "frame": 9, "at": 4528.136959244141 }, { "type": "O", "frame": 10, "at": 4528.136959244141 }, { "type": "O", "frame": 11, "at": 4528.136959244141 }, { "type": "O", "frame": 12, "at": 4528.136959244141 }, { "type": "O", "frame": 13, "at": 4528.136959244141 }, { "type": "O", "frame": 14, "at": 4528.136959244141 }, { "type": "O", "frame": 15, "at": 4528.136959244141 }, { "type": "O", "frame": 16, "at": 4528.136959244141 }, { "type": "O", "frame": 21, "at": 4528.136959244141 }, { "type": "O", "frame": 22, "at": 4528.136959244141 }, { "type": "O", "frame": 23, "at": 4528.136959244141 }, { "type": "O", "frame": 24, "at": 4528.136959244141 }, { "type": "O", "frame": 18, "at": 4528.136959244141 }, { "type": "C", "frame": 18, "at": 4534.864167137513 }, { "type": "C", "frame": 24, "at": 4534.864167137513 }, { "type": "O", "frame": 29, "at": 4534.864167137513 }, { "type": "O", "frame": 18, "at": 4534.864167137513 }, { "type": "C", "frame": 18, "at": 4536.234499956314 }, { "type": "C", "frame": 29, "at": 4536.234499956314 }, { "type": "C", "frame": 23, "at": 4536.234499956314 }, { "type": "C", "frame": 22, "at": 4536.234499956314 }, { "type": "C", "frame": 21, "at": 4536.234499956314 }, { "type": "O", "frame": 17, "at": 4536.2345 }, { "type": "O", "frame": 18, "at": 4536.2345 }, { "type": "C", "frame": 18, "at": 4541.769584247589 }, { "type": "C", "frame": 17, "at": 4541.769584247589 }, { "type": "O", "frame": 19, "at": 4541.769584247589 }, { "type": "O", "frame": 18, "at": 4541.769584247589 }, { "type": "C", "frame": 18, "at": 4543.124458968528 }, { "type": "C", "frame": 19, "at": 4543.124458968528 }, { "type": "C", "frame": 16, "at": 4543.124459190735 }, { "type": "C", "frame": 15, "at": 4543.124459190735 }, { "type": "C", "frame": 14, "at": 4543.124459190735 }, { "type": "C", "frame": 13, "at": 4543.124459190735 }, { "type": "C", "frame": 12, "at": 4543.124459190735 }, { "type": "C", "frame": 11, "at": 4543.124459190735 }, { "type": "C", "frame": 10, "at": 4543.124459190735 }, { "type": "C", "frame": 9, "at": 4543.124459190735 }, { "type": "C", "frame": 8, "at": 4543.124459190735 }, { "type": "C", "frame": 20, "at": 4543.124459190735 }, { "type": "O", "frame": 6, "at": 4543.124459190735 }, { "type": "O", "frame": 7, "at": 4543.124459190735 }, { "type": "O", "frame": 8, "at": 4543.124459190735 }, { "type": "O", "frame": 9, "at": 4543.124459190735 }, { "type": "O", "frame": 10, "at": 4543.124459190735 }, { "type": "O", "frame": 11, "at": 4543.124459190735 }, { "type": "O", "frame": 12, "at": 4543.124459190735 }, { "type": "O", "frame": 13, "at": 4543.124459190735 }, { "type": "O", "frame": 14, "at": 4543.124459190735 }, { "type": "O", "frame": 15, "at": 4543.124459190735 }, { "type": "O", "frame": 16, "at": 4543.124459190735 }, { "type": "O", "frame": 21, "at": 4543.124459190735 }, { "type": "O", "frame": 22, "at": 4543.124459190735 }, { "type": "O", "frame": 23, "at": 4543.124459190735 }, { "type": "O", "frame": 24, "at": 4543.124459190735 }, { "type": "O", "frame": 18, "at": 4543.124459190735 }, { "type": "C", "frame": 18, "at": 4545.81520912207 }, { "type": "C", "frame": 24, "at": 4545.81520912207 }, { "type": "O", "frame": 28, "at": 4545.81520912207 }, { "type": "O", "frame": 18, "at": 4545.81520912207 }, { "type": "C", "frame": 18, "at": 4547.157000033745 }, { "type": "C", "frame": 28, "at": 4547.157000033745 }, { "type": "O", "frame": 24, "at": 4547.157000033745 }, { "type": "O", "frame": 18, "at": 4547.157000033745 }, { "type": "C", "frame": 18, "at": 4548.49900000763 }, { "type": "C", "frame": 24, "at": 4548.49900000763 }, { "type": "O", "frame": 26, "at": 4548.49900000763 }, { "type": "O", "frame": 18, "at": 4548.49900000763 }, { "type": "C", "frame": 18, "at": 4549.849999951362 }, { "type": "C", "frame": 26, "at": 4549.849999951362 }, { "type": "O", "frame": 24, "at": 4549.85 }, { "type": "O", "frame": 18, "at": 4549.85 }, { "type": "C", "frame": 18, "at": 4552.583791828156 }, { "type": "C", "frame": 24, "at": 4552.583791828156 }, { "type": "C", "frame": 23, "at": 4552.5837924197995 }, { "type": "C", "frame": 22, "at": 4552.5837924197995 }, { "type": "C", "frame": 21, "at": 4552.5837924197995 }, { "type": "O", "frame": 17, "at": 4552.5837924197995 }, { "type": "O", "frame": 18, "at": 4552.5837924197995 }, { "type": "C", "frame": 18, "at": 4556.676625042145 }, { "type": "C", "frame": 17, "at": 4556.676625042145 }, { "type": "O", "frame": 19, "at": 4556.676625042145 }, { "type": "O", "frame": 18, "at": 4556.676625042145 }, { "type": "C", "frame": 18, "at": 4564.731583343506 }, { "type": "C", "frame": 19, "at": 4564.731583343506 }, { "type": "C", "frame": 16, "at": 4564.731585235962 }, { "type": "C", "frame": 15, "at": 4564.731585235962 }, { "type": "C", "frame": 14, "at": 4564.731585235962 }, { "type": "C", "frame": 13, "at": 4564.731585235962 }, { "type": "C", "frame": 12, "at": 4564.731585235962 }, { "type": "C", "frame": 11, "at": 4564.731585235962 }, { "type": "C", "frame": 10, "at": 4564.731585235962 }, { "type": "C", "frame": 9, "at": 4564.731585235962 }, { "type": "C", "frame": 8, "at": 4564.731585235962 }, { "type": "C", "frame": 7, "at": 4564.731585235962 }, { "type": "C", "frame": 6, "at": 4564.731585235962 }, { "type": "O", "frame": 20, "at": 4564.731585235962 }, { "type": "O", "frame": 8, "at": 4564.731585235962 }, { "type": "O", "frame": 9, "at": 4564.731585235962 }, { "type": "O", "frame": 10, "at": 4564.731585235962 }, { "type": "O", "frame": 11, "at": 4564.731585235962 }, { "type": "O", "frame": 12, "at": 4564.731585235962 }, { "type": "O", "frame": 13, "at": 4564.731585235962 }, { "type": "O", "frame": 14, "at": 4564.731585235962 }, { "type": "O", "frame": 15, "at": 4564.731585235962 }, { "type": "O", "frame": 16, "at": 4564.731585235962 }, { "type": "O", "frame": 21, "at": 4564.731585235962 }, { "type": "O", "frame": 22, "at": 4564.731585235962 }, { "type": "O", "frame": 23, "at": 4564.731585235962 }, { "type": "O", "frame": 29, "at": 4564.731585235962 }, { "type": "O", "frame": 18, "at": 4564.731585235962 }, { "type": "C", "frame": 18, "at": 4566.081124948868 }, { "type": "C", "frame": 29, "at": 4566.081124948868 }, { "type": "O", "frame": 24, "at": 4566.081125 }, { "type": "O", "frame": 18, "at": 4566.081125 }, { "type": "C", "frame": 18, "at": 4572.78904221344 }, { "type": "C", "frame": 24, "at": 4572.78904221344 }, { "type": "C", "frame": 23, "at": 4572.78904221344 }, { "type": "C", "frame": 22, "at": 4572.78904221344 }, { "type": "C", "frame": 21, "at": 4572.78904221344 }, { "type": "O", "frame": 17, "at": 4572.78904221344 }, { "type": "O", "frame": 18, "at": 4572.78904221344 }, { "type": "C", "frame": 18, "at": 4578.41958427829 }, { "type": "C", "frame": 17, "at": 4578.41958427829 }, { "type": "O", "frame": 19, "at": 4578.41958427829 }, { "type": "O", "frame": 18, "at": 4578.41958427829 }, { "type": "C", "frame": 18, "at": 4579.8091669916 }, { "type": "C", "frame": 19, "at": 4579.8091669916 }, { "type": "C", "frame": 16, "at": 4579.8091669916 }, { "type": "C", "frame": 15, "at": 4579.8091669916 }, { "type": "C", "frame": 14, "at": 4579.8091669916 }, { "type": "C", "frame": 13, "at": 4579.8091669916 }, { "type": "C", "frame": 12, "at": 4579.8091669916 }, { "type": "C", "frame": 11, "at": 4579.8091669916 }, { "type": "C", "frame": 10, "at": 4579.8091669916 }, { "type": "C", "frame": 9, "at": 4579.8091669916 }, { "type": "C", "frame": 8, "at": 4579.8091669916 }, { "type": "C", "frame": 20, "at": 4579.8091669916 }, { "type": "O", "frame": 6, "at": 4579.809167 }, { "type": "O", "frame": 7, "at": 4579.809167 }, { "type": "O", "frame": 8, "at": 4579.809167 }, { "type": "O", "frame": 9, "at": 4579.809167 }, { "type": "O", "frame": 10, "at": 4579.809167 }, { "type": "O", "frame": 11, "at": 4579.809167 }, { "type": "O", "frame": 12, "at": 4579.809167 }, { "type": "O", "frame": 13, "at": 4579.809167 }, { "type": "O", "frame": 14, "at": 4579.809167 }, { "type": "O", "frame": 15, "at": 4579.809167 }, { "type": "O", "frame": 16, "at": 4579.809167 }, { "type": "O", "frame": 21, "at": 4579.809167 }, { "type": "O", "frame": 22, "at": 4579.809167 }, { "type": "O", "frame": 23, "at": 4579.809167 }, { "type": "O", "frame": 24, "at": 4579.809167 }, { "type": "O", "frame": 18, "at": 4579.809167 }, { "type": "C", "frame": 18, "at": 4581.156750055497 }, { "type": "C", "frame": 24, "at": 4581.156750055497 }, { "type": "O", "frame": 25, "at": 4581.156750055497 }, { "type": "O", "frame": 18, "at": 4581.156750055497 }, { "type": "C", "frame": 18, "at": 4582.505209005356 }, { "type": "C", "frame": 25, "at": 4582.505209005356 }, { "type": "O", "frame": 24, "at": 4582.505209005356 }, { "type": "O", "frame": 18, "at": 4582.505209005356 }, { "type": "C", "frame": 18, "at": 4587.8958750079955 }, { "type": "C", "frame": 24, "at": 4587.8958750079955 }, { "type": "C", "frame": 23, "at": 4587.8958750079955 }, { "type": "C", "frame": 22, "at": 4587.8958750079955 }, { "type": "C", "frame": 21, "at": 4587.8958750079955 }, { "type": "O", "frame": 17, "at": 4587.8958750079955 }, { "type": "O", "frame": 18, "at": 4587.8958750079955 }, { "type": "C", "frame": 18, "at": 4593.453500293732 }, { "type": "C", "frame": 17, "at": 4593.453500293732 }, { "type": "O", "frame": 19, "at": 4593.453500293732 }, { "type": "O", "frame": 18, "at": 4593.453500293732 }, { "type": "C", "frame": 18, "at": 4600.134500232696 }, { "type": "C", "frame": 19, "at": 4600.134500232696 }, { "type": "C", "frame": 16, "at": 4600.1345015489505 }, { "type": "C", "frame": 15, "at": 4600.1345015489505 }, { "type": "C", "frame": 14, "at": 4600.1345015489505 }, { "type": "C", "frame": 13, "at": 4600.1345015489505 }, { "type": "C", "frame": 12, "at": 4600.1345015489505 }, { "type": "C", "frame": 11, "at": 4600.1345015489505 }, { "type": "C", "frame": 10, "at": 4600.1345015489505 }, { "type": "C", "frame": 9, "at": 4600.1345015489505 }, { "type": "C", "frame": 8, "at": 4600.1345015489505 }, { "type": "C", "frame": 7, "at": 4600.1345015489505 }, { "type": "C", "frame": 6, "at": 4600.1345015489505 }, { "type": "O", "frame": 20, "at": 4600.1345015489505 }, { "type": "O", "frame": 8, "at": 4600.1345015489505 }, { "type": "O", "frame": 9, "at": 4600.1345015489505 }, { "type": "O", "frame": 10, "at": 4600.1345015489505 }, { "type": "O", "frame": 11, "at": 4600.1345015489505 }, { "type": "O", "frame": 12, "at": 4600.1345015489505 }, { "type": "O", "frame": 13, "at": 4600.1345015489505 }, { "type": "O", "frame": 14, "at": 4600.1345015489505 }, { "type": "O", "frame": 15, "at": 4600.1345015489505 }, { "type": "O", "frame": 16, "at": 4600.1345015489505 }, { "type": "O", "frame": 21, "at": 4600.1345015489505 }, { "type": "O", "frame": 22, "at": 4600.1345015489505 }, { "type": "O", "frame": 23, "at": 4600.1345015489505 }, { "type": "O", "frame": 24, "at": 4600.1345015489505 }, { "type": "O", "frame": 18, "at": 4600.1345015489505 }, { "type": "C", "frame": 18, "at": 4609.5512098999025 }, { "type": "C", "frame": 24, "at": 4609.5512098999025 }, { "type": "C", "frame": 23, "at": 4609.5512098999025 }, { "type": "C", "frame": 22, "at": 4609.5512098999025 }, { "type": "C", "frame": 21, "at": 4609.5512098999025 }, { "type": "O", "frame": 17, "at": 4609.5512098999025 }, { "type": "O", "frame": 18, "at": 4609.5512098999025 }, { "type": "C", "frame": 18, "at": 4613.68379166449 }, { "type": "C", "frame": 17, "at": 4613.68379166449 }, { "type": "O", "frame": 19, "at": 4613.683792 }, { "type": "O", "frame": 18, "at": 4613.683792 }, { "type": "C", "frame": 18, "at": 4621.756000404541 }, { "type": "C", "frame": 19, "at": 4621.756000404541 }, { "type": "C", "frame": 16, "at": 4621.7560019226075 }, { "type": "C", "frame": 15, "at": 4621.7560019226075 }, { "type": "C", "frame": 14, "at": 4621.7560019226075 }, { "type": "C", "frame": 13, "at": 4621.7560019226075 }, { "type": "C", "frame": 12, "at": 4621.7560019226075 }, { "type": "C", "frame": 11, "at": 4621.7560019226075 }, { "type": "C", "frame": 10, "at": 4621.7560019226075 }, { "type": "C", "frame": 9, "at": 4621.7560019226075 }, { "type": "C", "frame": 8, "at": 4621.7560019226075 }, { "type": "C", "frame": 20, "at": 4621.7560019226075 }, { "type": "O", "frame": 6, "at": 4621.7560019226075 }, { "type": "O", "frame": 7, "at": 4621.7560019226075 }, { "type": "O", "frame": 8, "at": 4621.7560019226075 }, { "type": "O", "frame": 9, "at": 4621.7560019226075 }, { "type": "O", "frame": 10, "at": 4621.7560019226075 }, { "type": "O", "frame": 11, "at": 4621.7560019226075 }, { "type": "O", "frame": 12, "at": 4621.7560019226075 }, { "type": "O", "frame": 13, "at": 4621.7560019226075 }, { "type": "O", "frame": 14, "at": 4621.7560019226075 }, { "type": "O", "frame": 15, "at": 4621.7560019226075 }, { "type": "O", "frame": 16, "at": 4621.7560019226075 }, { "type": "O", "frame": 21, "at": 4621.7560019226075 }, { "type": "O", "frame": 22, "at": 4621.7560019226075 }, { "type": "O", "frame": 23, "at": 4621.7560019226075 }, { "type": "O", "frame": 24, "at": 4621.7560019226075 }, { "type": "O", "frame": 18, "at": 4621.7560019226075 }, { "type": "C", "frame": 18, "at": 4623.096667009354 }, { "type": "C", "frame": 24, "at": 4623.096667009354 }, { "type": "O", "frame": 31, "at": 4623.096667009354 }, { "type": "O", "frame": 18, "at": 4623.096667009354 }, { "type": "C", "frame": 18, "at": 4624.447416969482 }, { "type": "C", "frame": 31, "at": 4624.447416969482 }, { "type": "O", "frame": 24, "at": 4624.447417 }, { "type": "O", "frame": 18, "at": 4624.447417 }, { "type": "C", "frame": 18, "at": 4629.8396670610355 }, { "type": "C", "frame": 24, "at": 4629.8396670610355 }, { "type": "C", "frame": 23, "at": 4629.8396670610355 }, { "type": "C", "frame": 22, "at": 4629.8396670610355 }, { "type": "C", "frame": 21, "at": 4629.8396670610355 }, { "type": "O", "frame": 17, "at": 4629.8396670610355 }, { "type": "O", "frame": 18, "at": 4629.8396670610355 }, { "type": "C", "frame": 18, "at": 4635.338708557312 }, { "type": "C", "frame": 17, "at": 4635.338708557312 }, { "type": "O", "frame": 19, "at": 4635.338709 }, { "type": "O", "frame": 18, "at": 4635.338709 }, { "type": "C", "frame": 18, "at": 4636.674209001907 }, { "type": "C", "frame": 19, "at": 4636.674209001907 }, { "type": "C", "frame": 16, "at": 4636.674209075928 }, { "type": "C", "frame": 15, "at": 4636.674209075928 }, { "type": "C", "frame": 14, "at": 4636.674209075928 }, { "type": "C", "frame": 13, "at": 4636.674209075928 }, { "type": "C", "frame": 12, "at": 4636.674209075928 }, { "type": "C", "frame": 11, "at": 4636.674209075928 }, { "type": "C", "frame": 10, "at": 4636.674209075928 }, { "type": "C", "frame": 9, "at": 4636.674209075928 }, { "type": "C", "frame": 8, "at": 4636.674209075928 }, { "type": "C", "frame": 7, "at": 4636.674209075928 }, { "type": "C", "frame": 6, "at": 4636.674209075928 }, { "type": "O", "frame": 20, "at": 4636.674209075928 }, { "type": "O", "frame": 8, "at": 4636.674209075928 }, { "type": "O", "frame": 9, "at": 4636.674209075928 }, { "type": "O", "frame": 10, "at": 4636.674209075928 }, { "type": "O", "frame": 11, "at": 4636.674209075928 }, { "type": "O", "frame": 12, "at": 4636.674209075928 }, { "type": "O", "frame": 13, "at": 4636.674209075928 }, { "type": "O", "frame": 14, "at": 4636.674209075928 }, { "type": "O", "frame": 15, "at": 4636.674209075928 }, { "type": "O", "frame": 16, "at": 4636.674209075928 }, { "type": "O", "frame": 21, "at": 4636.674209075928 }, { "type": "O", "frame": 22, "at": 4636.674209075928 }, { "type": "O", "frame": 23, "at": 4636.674209075928 }, { "type": "O", "frame": 24, "at": 4636.674209075928 }, { "type": "O", "frame": 18, "at": 4636.674209075928 }, { "type": "C", "frame": 18, "at": 4646.118292213806 }, { "type": "C", "frame": 24, "at": 4646.118292213806 }, { "type": "C", "frame": 23, "at": 4646.118292213806 }, { "type": "C", "frame": 22, "at": 4646.118292213806 }, { "type": "C", "frame": 21, "at": 4646.118292213806 }, { "type": "O", "frame": 17, "at": 4646.118292213806 }, { "type": "O", "frame": 18, "at": 4646.118292213806 }, { "type": "C", "frame": 18, "at": 4651.647166874115 }, { "type": "C", "frame": 17, "at": 4651.647166874115 }, { "type": "O", "frame": 19, "at": 4651.647167 }, { "type": "O", "frame": 18, "at": 4651.647167 }, { "type": "C", "frame": 18, "at": 4658.394791874115 }, { "type": "C", "frame": 19, "at": 4658.394791874115 }, { "type": "C", "frame": 16, "at": 4658.394791962036 }, { "type": "C", "frame": 15, "at": 4658.394791962036 }, { "type": "C", "frame": 14, "at": 4658.394791962036 }, { "type": "C", "frame": 13, "at": 4658.394791962036 }, { "type": "C", "frame": 12, "at": 4658.394791962036 }, { "type": "C", "frame": 11, "at": 4658.394791962036 }, { "type": "C", "frame": 10, "at": 4658.394791962036 }, { "type": "C", "frame": 9, "at": 4658.394791962036 }, { "type": "C", "frame": 8, "at": 4658.394791962036 }, { "type": "O", "frame": 18, "at": 4658.394792 }, { "type": "C", "frame": 18, "at": 4659.742334047501 }, { "type": "C", "frame": 20, "at": 4659.742334047501 }, { "type": "O", "frame": 6, "at": 4659.742334047501 }, { "type": "O", "frame": 7, "at": 4659.742334047501 }, { "type": "O", "frame": 8, "at": 4659.742334047501 }, { "type": "O", "frame": 9, "at": 4659.742334047501 }, { "type": "O", "frame": 10, "at": 4659.742334047501 }, { "type": "O", "frame": 11, "at": 4659.742334047501 }, { "type": "O", "frame": 12, "at": 4659.742334047501 }, { "type": "O", "frame": 13, "at": 4659.742334047501 }, { "type": "O", "frame": 14, "at": 4659.742334047501 }, { "type": "O", "frame": 15, "at": 4659.742334047501 }, { "type": "O", "frame": 16, "at": 4659.742334047501 }, { "type": "O", "frame": 21, "at": 4659.742334047501 }, { "type": "O", "frame": 22, "at": 4659.742334047501 }, { "type": "O", "frame": 23, "at": 4659.742334047501 }, { "type": "O", "frame": 24, "at": 4659.742334047501 }, { "type": "O", "frame": 18, "at": 4659.742334047501 }, { "type": "C", "frame": 18, "at": 4662.43150006903 }, { "type": "C", "frame": 24, "at": 4662.43150006903 }, { "type": "O", "frame": 31, "at": 4662.43150006903 }, { "type": "O", "frame": 18, "at": 4662.43150006903 }, { "type": "C", "frame": 18, "at": 4663.773417037964 }, { "type": "C", "frame": 31, "at": 4663.773417037964 }, { "type": "O", "frame": 24, "at": 4663.773417037964 }, { "type": "O", "frame": 18, "at": 4663.773417037964 }, { "type": "C", "frame": 18, "at": 4667.820374969666 }, { "type": "C", "frame": 24, "at": 4667.820374969666 }, { "type": "C", "frame": 23, "at": 4667.82037507666 }, { "type": "C", "frame": 22, "at": 4667.82037507666 }, { "type": "C", "frame": 21, "at": 4667.82037507666 }, { "type": "O", "frame": 17, "at": 4667.82037507666 }, { "type": "O", "frame": 18, "at": 4667.82037507666 }, { "type": "C", "frame": 18, "at": 4673.26120904541 }, { "type": "C", "frame": 17, "at": 4673.26120904541 }, { "type": "O", "frame": 19, "at": 4673.26120904541 }, { "type": "O", "frame": 18, "at": 4673.26120904541 }, { "type": "C", "frame": 18, "at": 4674.593333948502 }, { "type": "C", "frame": 19, "at": 4674.593333948502 }, { "type": "C", "frame": 16, "at": 4674.593333948502 }, { "type": "C", "frame": 15, "at": 4674.593333948502 }, { "type": "C", "frame": 14, "at": 4674.593333948502 }, { "type": "C", "frame": 13, "at": 4674.593333948502 }, { "type": "C", "frame": 12, "at": 4674.593333948502 }, { "type": "C", "frame": 11, "at": 4674.593333948502 }, { "type": "C", "frame": 10, "at": 4674.593333948502 }, { "type": "C", "frame": 9, "at": 4674.593333948502 }, { "type": "C", "frame": 8, "at": 4674.593333948502 }, { "type": "C", "frame": 7, "at": 4674.593333948502 }, { "type": "C", "frame": 6, "at": 4674.593333948502 }, { "type": "O", "frame": 20, "at": 4674.593334 }, { "type": "O", "frame": 8, "at": 4674.593334 }, { "type": "O", "frame": 9, "at": 4674.593334 }, { "type": "O", "frame": 10, "at": 4674.593334 }, { "type": "O", "frame": 11, "at": 4674.593334 }, { "type": "O", "frame": 12, "at": 4674.593334 }, { "type": "O", "frame": 13, "at": 4674.593334 }, { "type": "O", "frame": 14, "at": 4674.593334 }, { "type": "O", "frame": 15, "at": 4674.593334 }, { "type": "O", "frame": 16, "at": 4674.593334 }, { "type": "O", "frame": 21, "at": 4674.593334 }, { "type": "O", "frame": 22, "at": 4674.593334 }, { "type": "O", "frame": 23, "at": 4674.593334 }, { "type": "O", "frame": 24, "at": 4674.593334 }, { "type": "O", "frame": 18, "at": 4674.593334 }, { "type": "C", "frame": 18, "at": 4684.00291804541 }, { "type": "C", "frame": 24, "at": 4684.00291804541 }, { "type": "C", "frame": 23, "at": 4684.00291804541 }, { "type": "C", "frame": 22, "at": 4684.00291804541 }, { "type": "C", "frame": 21, "at": 4684.00291804541 }, { "type": "O", "frame": 17, "at": 4684.00291804541 }, { "type": "O", "frame": 18, "at": 4684.00291804541 }, { "type": "C", "frame": 18, "at": 4688.160375305359 }, { "type": "C", "frame": 17, "at": 4688.160375305359 }, { "type": "O", "frame": 19, "at": 4688.160375305359 }, { "type": "O", "frame": 18, "at": 4688.160375305359 }, { "type": "C", "frame": 18, "at": 4696.226498962403 }, { "type": "C", "frame": 19, "at": 4696.226498962403 }, { "type": "C", "frame": 16, "at": 4696.226501266846 }, { "type": "C", "frame": 15, "at": 4696.226501266846 }, { "type": "C", "frame": 14, "at": 4696.226501266846 }, { "type": "C", "frame": 13, "at": 4696.226501266846 }, { "type": "C", "frame": 12, "at": 4696.226501266846 }, { "type": "C", "frame": 11, "at": 4696.226501266846 }, { "type": "C", "frame": 10, "at": 4696.226501266846 }, { "type": "C", "frame": 9, "at": 4696.226501266846 }, { "type": "C", "frame": 8, "at": 4696.226501266846 }, { "type": "C", "frame": 20, "at": 4696.226501266846 }, { "type": "O", "frame": 6, "at": 4696.226501266846 }, { "type": "O", "frame": 7, "at": 4696.226501266846 }, { "type": "O", "frame": 8, "at": 4696.226501266846 }, { "type": "O", "frame": 9, "at": 4696.226501266846 }, { "type": "O", "frame": 10, "at": 4696.226501266846 }, { "type": "O", "frame": 11, "at": 4696.226501266846 }, { "type": "O", "frame": 12, "at": 4696.226501266846 }, { "type": "O", "frame": 13, "at": 4696.226501266846 }, { "type": "O", "frame": 14, "at": 4696.226501266846 }, { "type": "O", "frame": 15, "at": 4696.226501266846 }, { "type": "O", "frame": 16, "at": 4696.226501266846 }, { "type": "O", "frame": 21, "at": 4696.226501266846 }, { "type": "O", "frame": 22, "at": 4696.226501266846 }, { "type": "O", "frame": 23, "at": 4696.226501266846 }, { "type": "O", "frame": 24, "at": 4696.226501266846 }, { "type": "O", "frame": 18, "at": 4696.226501266846 }, { "type": "C", "frame": 18, "at": 4698.911292041778 }, { "type": "C", "frame": 24, "at": 4698.911292041778 }, { "type": "O", "frame": 25, "at": 4698.911292041778 }, { "type": "O", "frame": 18, "at": 4698.911292041778 }, { "type": "C", "frame": 18, "at": 4700.250834031288 }, { "type": "C", "frame": 25, "at": 4700.250834031288 }, { "type": "O", "frame": 24, "at": 4700.250834031288 }, { "type": "O", "frame": 18, "at": 4700.250834031288 }, { "type": "C", "frame": 18, "at": 4704.295834076294 }, { "type": "C", "frame": 24, "at": 4704.295834076294 }, { "type": "C", "frame": 23, "at": 4704.295834076294 }, { "type": "C", "frame": 22, "at": 4704.295834076294 }, { "type": "C", "frame": 21, "at": 4704.295834076294 }, { "type": "O", "frame": 17, "at": 4704.295834076294 }, { "type": "O", "frame": 18, "at": 4704.295834076294 }, { "type": "C", "frame": 18, "at": 4709.7607921909175 }, { "type": "C", "frame": 17, "at": 4709.7607921909175 }, { "type": "O", "frame": 19, "at": 4709.7607921909175 }, { "type": "O", "frame": 18, "at": 4709.7607921909175 }, { "type": "C", "frame": 18, "at": 4716.460334045593 }, { "type": "C", "frame": 19, "at": 4716.460334045593 }, { "type": "C", "frame": 16, "at": 4716.460334045593 }, { "type": "C", "frame": 15, "at": 4716.460334045593 }, { "type": "C", "frame": 14, "at": 4716.460334045593 }, { "type": "C", "frame": 13, "at": 4716.460334045593 }, { "type": "C", "frame": 12, "at": 4716.460334045593 }, { "type": "C", "frame": 11, "at": 4716.460334045593 }, { "type": "C", "frame": 10, "at": 4716.460334045593 }, { "type": "C", "frame": 9, "at": 4716.460334045593 }, { "type": "C", "frame": 8, "at": 4716.460334045593 }, { "type": "C", "frame": 7, "at": 4716.460334045593 }, { "type": "C", "frame": 6, "at": 4716.460334045593 }, { "type": "O", "frame": 20, "at": 4716.460334045593 }, { "type": "O", "frame": 8, "at": 4716.460334045593 }, { "type": "O", "frame": 9, "at": 4716.460334045593 }, { "type": "O", "frame": 10, "at": 4716.460334045593 }, { "type": "O", "frame": 11, "at": 4716.460334045593 }, { "type": "O", "frame": 12, "at": 4716.460334045593 }, { "type": "O", "frame": 13, "at": 4716.460334045593 }, { "type": "O", "frame": 14, "at": 4716.460334045593 }, { "type": "O", "frame": 15, "at": 4716.460334045593 }, { "type": "O", "frame": 16, "at": 4716.460334045593 }, { "type": "O", "frame": 21, "at": 4716.460334045593 }, { "type": "O", "frame": 22, "at": 4716.460334045593 }, { "type": "O", "frame": 23, "at": 4716.460334045593 }, { "type": "O", "frame": 24, "at": 4716.460334045593 }, { "type": "O", "frame": 18, "at": 4716.460334045593 }, { "type": "C", "frame": 18, "at": 4719.149708923706 }, { "type": "C", "frame": 24, "at": 4719.149708923706 }, { "type": "O", "frame": 31, "at": 4719.149709 }, { "type": "O", "frame": 18, "at": 4719.149709 }, { "type": "C", "frame": 18, "at": 4720.494249953636 }, { "type": "C", "frame": 31, "at": 4720.494249953636 }, { "type": "O", "frame": 24, "at": 4720.49425 }, { "type": "O", "frame": 18, "at": 4720.49425 }, { "type": "C", "frame": 18, "at": 4723.179917037964 }, { "type": "C", "frame": 24, "at": 4723.179917037964 }, { "type": "O", "frame": 31, "at": 4723.179917037964 }, { "type": "O", "frame": 18, "at": 4723.179917037964 }, { "type": "C", "frame": 18, "at": 4724.525833986466 }, { "type": "C", "frame": 31, "at": 4724.525833986466 }, { "type": "O", "frame": 24, "at": 4724.525834 }, { "type": "O", "frame": 18, "at": 4724.525834 }, { "type": "C", "frame": 18, "at": 4725.88670901049 }, { "type": "C", "frame": 24, "at": 4725.88670901049 }, { "type": "C", "frame": 23, "at": 4725.886709389099 }, { "type": "C", "frame": 22, "at": 4725.886709389099 }, { "type": "C", "frame": 21, "at": 4725.886709389099 }, { "type": "O", "frame": 17, "at": 4725.886709389099 }, { "type": "O", "frame": 18, "at": 4725.886709389099 }, { "type": "C", "frame": 18, "at": 4730.000666881928 }, { "type": "C", "frame": 17, "at": 4730.000666881928 }, { "type": "O", "frame": 19, "at": 4730.000667 }, { "type": "O", "frame": 18, "at": 4730.000667 }, { "type": "C", "frame": 18, "at": 4731.347749972527 }, { "type": "C", "frame": 19, "at": 4731.347749972527 }, { "type": "C", "frame": 16, "at": 4731.3477508396 }, { "type": "C", "frame": 15, "at": 4731.3477508396 }, { "type": "C", "frame": 14, "at": 4731.3477508396 }, { "type": "C", "frame": 13, "at": 4731.3477508396 }, { "type": "C", "frame": 12, "at": 4731.3477508396 }, { "type": "C", "frame": 11, "at": 4731.3477508396 }, { "type": "C", "frame": 10, "at": 4731.3477508396 }, { "type": "C", "frame": 9, "at": 4731.3477508396 }, { "type": "C", "frame": 8, "at": 4731.3477508396 }, { "type": "C", "frame": 20, "at": 4731.3477508396 }, { "type": "O", "frame": 6, "at": 4731.3477508396 }, { "type": "O", "frame": 7, "at": 4731.3477508396 }, { "type": "O", "frame": 8, "at": 4731.3477508396 }, { "type": "O", "frame": 9, "at": 4731.3477508396 }, { "type": "O", "frame": 10, "at": 4731.3477508396 }, { "type": "O", "frame": 11, "at": 4731.3477508396 }, { "type": "O", "frame": 12, "at": 4731.3477508396 }, { "type": "O", "frame": 13, "at": 4731.3477508396 }, { "type": "O", "frame": 14, "at": 4731.3477508396 }, { "type": "O", "frame": 15, "at": 4731.3477508396 }, { "type": "O", "frame": 16, "at": 4731.3477508396 }, { "type": "O", "frame": 21, "at": 4731.3477508396 }, { "type": "O", "frame": 22, "at": 4731.3477508396 }, { "type": "O", "frame": 23, "at": 4731.3477508396 }, { "type": "O", "frame": 24, "at": 4731.3477508396 }, { "type": "O", "frame": 18, "at": 4731.3477508396 }, { "type": "C", "frame": 18, "at": 4740.751834205627 }, { "type": "C", "frame": 24, "at": 4740.751834205627 }, { "type": "C", "frame": 23, "at": 4740.751834205627 }, { "type": "C", "frame": 22, "at": 4740.751834205627 }, { "type": "C", "frame": 21, "at": 4740.751834205627 }, { "type": "O", "frame": 17, "at": 4740.751834205627 }, { "type": "O", "frame": 18, "at": 4740.751834205627 }, { "type": "C", "frame": 18, "at": 4744.937292183288 }, { "type": "C", "frame": 17, "at": 4744.937292183288 }, { "type": "O", "frame": 19, "at": 4744.937292183288 }, { "type": "O", "frame": 18, "at": 4744.937292183288 }, { "type": "C", "frame": 18, "at": 4752.999459167663 }, { "type": "C", "frame": 19, "at": 4752.999459167663 }, { "type": "C", "frame": 16, "at": 4752.999459167663 }, { "type": "C", "frame": 15, "at": 4752.999459167663 }, { "type": "C", "frame": 14, "at": 4752.999459167663 }, { "type": "C", "frame": 13, "at": 4752.999459167663 }, { "type": "C", "frame": 12, "at": 4752.999459167663 }, { "type": "C", "frame": 11, "at": 4752.999459167663 }, { "type": "C", "frame": 10, "at": 4752.999459167663 }, { "type": "C", "frame": 9, "at": 4752.999459167663 }, { "type": "C", "frame": 8, "at": 4752.999459167663 }, { "type": "C", "frame": 7, "at": 4752.999459167663 }, { "type": "C", "frame": 6, "at": 4752.999459167663 }, { "type": "O", "frame": 20, "at": 4752.999459167663 }, { "type": "O", "frame": 8, "at": 4752.999459167663 }, { "type": "O", "frame": 9, "at": 4752.999459167663 }, { "type": "O", "frame": 10, "at": 4752.999459167663 }, { "type": "O", "frame": 11, "at": 4752.999459167663 }, { "type": "O", "frame": 12, "at": 4752.999459167663 }, { "type": "O", "frame": 13, "at": 4752.999459167663 }, { "type": "O", "frame": 14, "at": 4752.999459167663 }, { "type": "O", "frame": 15, "at": 4752.999459167663 }, { "type": "O", "frame": 16, "at": 4752.999459167663 }, { "type": "O", "frame": 21, "at": 4752.999459167663 }, { "type": "O", "frame": 22, "at": 4752.999459167663 }, { "type": "O", "frame": 23, "at": 4752.999459167663 }, { "type": "O", "frame": 24, "at": 4752.999459167663 }, { "type": "O", "frame": 18, "at": 4752.999459167663 }, { "type": "C", "frame": 18, "at": 4759.708791942962 }, { "type": "C", "frame": 24, "at": 4759.708791942962 }, { "type": "O", "frame": 29, "at": 4759.708792 }, { "type": "O", "frame": 18, "at": 4759.708792 }, { "type": "C", "frame": 18, "at": 4761.071041970436 }, { "type": "C", "frame": 29, "at": 4761.071041970436 }, { "type": "C", "frame": 23, "at": 4761.071041970436 }, { "type": "C", "frame": 22, "at": 4761.071041970436 }, { "type": "C", "frame": 21, "at": 4761.071041970436 }, { "type": "O", "frame": 17, "at": 4761.071042 }, { "type": "O", "frame": 18, "at": 4761.071042 }, { "type": "C", "frame": 18, "at": 4765.184041916076 }, { "type": "C", "frame": 17, "at": 4765.184041916076 }, { "type": "O", "frame": 19, "at": 4765.184042 }, { "type": "O", "frame": 18, "at": 4765.184042 }, { "type": "C", "frame": 18, "at": 4767.877334140961 }, { "type": "C", "frame": 19, "at": 4767.877334140961 }, { "type": "C", "frame": 16, "at": 4767.877334140961 }, { "type": "C", "frame": 15, "at": 4767.877334140961 }, { "type": "C", "frame": 14, "at": 4767.877334140961 }, { "type": "C", "frame": 13, "at": 4767.877334140961 }, { "type": "C", "frame": 12, "at": 4767.877334140961 }, { "type": "C", "frame": 11, "at": 4767.877334140961 }, { "type": "C", "frame": 10, "at": 4767.877334140961 }, { "type": "C", "frame": 9, "at": 4767.877334140961 }, { "type": "C", "frame": 8, "at": 4767.877334140961 }, { "type": "C", "frame": 20, "at": 4767.877334140961 }, { "type": "O", "frame": 6, "at": 4767.877334140961 }, { "type": "O", "frame": 7, "at": 4767.877334140961 }, { "type": "O", "frame": 8, "at": 4767.877334140961 }, { "type": "O", "frame": 9, "at": 4767.877334140961 }, { "type": "O", "frame": 10, "at": 4767.877334140961 }, { "type": "O", "frame": 11, "at": 4767.877334140961 }, { "type": "O", "frame": 12, "at": 4767.877334140961 }, { "type": "O", "frame": 13, "at": 4767.877334140961 }, { "type": "O", "frame": 14, "at": 4767.877334140961 }, { "type": "O", "frame": 15, "at": 4767.877334140961 }, { "type": "O", "frame": 16, "at": 4767.877334140961 }, { "type": "O", "frame": 21, "at": 4767.877334140961 }, { "type": "O", "frame": 22, "at": 4767.877334140961 }, { "type": "O", "frame": 23, "at": 4767.877334140961 }, { "type": "O", "frame": 38, "at": 4767.877334140961 }, { "type": "O", "frame": 18, "at": 4767.877334140961 }, { "type": "C", "frame": 18, "at": 4769.21924996508 }, { "type": "C", "frame": 38, "at": 4769.21924996508 }, { "type": "O", "frame": 24, "at": 4769.21925 }, { "type": "O", "frame": 18, "at": 4769.21925 }, { "type": "C", "frame": 18, "at": 4775.9350836639405 }, { "type": "C", "frame": 24, "at": 4775.9350836639405 }, { "type": "C", "frame": 23, "at": 4775.93508374823 }, { "type": "C", "frame": 22, "at": 4775.93508374823 }, { "type": "C", "frame": 21, "at": 4775.93508374823 }, { "type": "O", "frame": 17, "at": 4775.935084 }, { "type": "O", "frame": 18, "at": 4775.935084 }, { "type": "C", "frame": 18, "at": 4780.0480419544065 }, { "type": "C", "frame": 17, "at": 4780.0480419544065 }, { "type": "O", "frame": 19, "at": 4780.048042 }, { "type": "O", "frame": 18, "at": 4780.048042 }, { "type": "C", "frame": 18, "at": 4788.062542617981 }, { "type": "C", "frame": 19, "at": 4788.062542617981 }, { "type": "C", "frame": 16, "at": 4788.062542617981 }, { "type": "C", "frame": 15, "at": 4788.062542617981 }, { "type": "C", "frame": 14, "at": 4788.062542617981 }, { "type": "C", "frame": 13, "at": 4788.062542617981 }, { "type": "C", "frame": 12, "at": 4788.062542617981 }, { "type": "C", "frame": 11, "at": 4788.062542617981 }, { "type": "C", "frame": 10, "at": 4788.062542617981 }, { "type": "C", "frame": 9, "at": 4788.062542617981 }, { "type": "C", "frame": 8, "at": 4788.062542617981 }, { "type": "C", "frame": 7, "at": 4788.062542617981 }, { "type": "C", "frame": 6, "at": 4788.062542617981 }, { "type": "O", "frame": 20, "at": 4788.062542617981 }, { "type": "O", "frame": 8, "at": 4788.062542617981 }, { "type": "O", "frame": 9, "at": 4788.062542617981 }, { "type": "O", "frame": 10, "at": 4788.062542617981 }, { "type": "O", "frame": 11, "at": 4788.062542617981 }, { "type": "O", "frame": 12, "at": 4788.062542617981 }, { "type": "O", "frame": 13, "at": 4788.062542617981 }, { "type": "O", "frame": 14, "at": 4788.062542617981 }, { "type": "O", "frame": 15, "at": 4788.062542617981 }, { "type": "O", "frame": 16, "at": 4788.062542617981 }, { "type": "O", "frame": 21, "at": 4788.062542617981 }, { "type": "O", "frame": 22, "at": 4788.062542617981 }, { "type": "O", "frame": 23, "at": 4788.062542617981 }, { "type": "O", "frame": 24, "at": 4788.062542617981 }, { "type": "O", "frame": 18, "at": 4788.062542617981 }, { "type": "C", "frame": 18, "at": 4797.465874710266 }, { "type": "C", "frame": 24, "at": 4797.465874710266 }, { "type": "C", "frame": 23, "at": 4797.465874710266 }, { "type": "C", "frame": 22, "at": 4797.465874710266 }, { "type": "C", "frame": 21, "at": 4797.465874710266 }, { "type": "O", "frame": 17, "at": 4797.465875 }, { "type": "O", "frame": 18, "at": 4797.465875 }, { "type": "C", "frame": 18, "at": 4801.532959312439 }, { "type": "C", "frame": 17, "at": 4801.532959312439 }, { "type": "O", "frame": 19, "at": 4801.532959312439 }, { "type": "O", "frame": 18, "at": 4801.532959312439 }, { "type": "C", "frame": 18, "at": 4802.871209041008 }, { "type": "C", "frame": 19, "at": 4802.871209041008 }, { "type": "C", "frame": 16, "at": 4802.871209182922 }, { "type": "C", "frame": 15, "at": 4802.871209182922 }, { "type": "C", "frame": 14, "at": 4802.871209182922 }, { "type": "C", "frame": 13, "at": 4802.871209182922 }, { "type": "C", "frame": 12, "at": 4802.871209182922 }, { "type": "C", "frame": 11, "at": 4802.871209182922 }, { "type": "C", "frame": 10, "at": 4802.871209182922 }, { "type": "C", "frame": 9, "at": 4802.871209182922 }, { "type": "C", "frame": 8, "at": 4802.871209182922 }, { "type": "C", "frame": 20, "at": 4802.871209182922 }, { "type": "O", "frame": 6, "at": 4802.871209182922 }, { "type": "O", "frame": 7, "at": 4802.871209182922 }, { "type": "O", "frame": 18, "at": 4802.871209182922 }, { "type": "C", "frame": 18, "at": 4804.232917045006 }, { "type": "O", "frame": 8, "at": 4804.232917045006 }, { "type": "O", "frame": 9, "at": 4804.232917045006 }, { "type": "O", "frame": 10, "at": 4804.232917045006 }, { "type": "O", "frame": 11, "at": 4804.232917045006 }, { "type": "O", "frame": 12, "at": 4804.232917045006 }, { "type": "O", "frame": 13, "at": 4804.232917045006 }, { "type": "O", "frame": 14, "at": 4804.232917045006 }, { "type": "O", "frame": 15, "at": 4804.232917045006 }, { "type": "O", "frame": 16, "at": 4804.232917045006 }, { "type": "O", "frame": 21, "at": 4804.232917045006 }, { "type": "O", "frame": 22, "at": 4804.232917045006 }, { "type": "O", "frame": 23, "at": 4804.232917045006 }, { "type": "O", "frame": 24, "at": 4804.232917045006 }, { "type": "O", "frame": 18, "at": 4804.232917045006 }, { "type": "C", "frame": 18, "at": 4806.939792085831 }, { "type": "C", "frame": 24, "at": 4806.939792085831 }, { "type": "O", "frame": 38, "at": 4806.939792085831 }, { "type": "O", "frame": 18, "at": 4806.939792085831 }, { "type": "C", "frame": 18, "at": 4808.287124954407 }, { "type": "C", "frame": 38, "at": 4808.287124954407 }, { "type": "O", "frame": 24, "at": 4808.287125 }, { "type": "O", "frame": 18, "at": 4808.287125 }, { "type": "C", "frame": 18, "at": 4812.3355001296995 }, { "type": "C", "frame": 24, "at": 4812.3355001296995 }, { "type": "C", "frame": 23, "at": 4812.3355001296995 }, { "type": "C", "frame": 22, "at": 4812.3355001296995 }, { "type": "C", "frame": 21, "at": 4812.3355001296995 }, { "type": "O", "frame": 17, "at": 4812.3355001296995 }, { "type": "O", "frame": 18, "at": 4812.3355001296995 }, { "type": "C", "frame": 18, "at": 4816.425041912079 }, { "type": "C", "frame": 17, "at": 4816.425041912079 }, { "type": "O", "frame": 19, "at": 4816.425042 }, { "type": "O", "frame": 18, "at": 4816.425042 }, { "type": "C", "frame": 18, "at": 4824.444374885742 }, { "type": "C", "frame": 19, "at": 4824.444374885742 }, { "type": "C", "frame": 16, "at": 4824.444374885742 }, { "type": "C", "frame": 15, "at": 4824.444374885742 }, { "type": "C", "frame": 14, "at": 4824.444374885742 }, { "type": "C", "frame": 13, "at": 4824.444374885742 }, { "type": "C", "frame": 12, "at": 4824.444374885742 }, { "type": "C", "frame": 11, "at": 4824.444374885742 }, { "type": "C", "frame": 10, "at": 4824.444374885742 }, { "type": "C", "frame": 9, "at": 4824.444374885742 }, { "type": "C", "frame": 8, "at": 4824.444374885742 }, { "type": "C", "frame": 7, "at": 4824.444374885742 }, { "type": "C", "frame": 6, "at": 4824.444374885742 }, { "type": "O", "frame": 20, "at": 4824.444375 }, { "type": "O", "frame": 8, "at": 4824.444375 }, { "type": "O", "frame": 9, "at": 4824.444375 }, { "type": "O", "frame": 10, "at": 4824.444375 }, { "type": "O", "frame": 11, "at": 4824.444375 }, { "type": "O", "frame": 12, "at": 4824.444375 }, { "type": "O", "frame": 13, "at": 4824.444375 }, { "type": "O", "frame": 14, "at": 4824.444375 }, { "type": "O", "frame": 15, "at": 4824.444375 }, { "type": "O", "frame": 16, "at": 4824.444375 }, { "type": "O", "frame": 21, "at": 4824.444375 }, { "type": "O", "frame": 22, "at": 4824.444375 }, { "type": "O", "frame": 23, "at": 4824.444375 }, { "type": "O", "frame": 29, "at": 4824.444375 }, { "type": "O", "frame": 18, "at": 4824.444375 }, { "type": "C", "frame": 18, "at": 4825.7909589624405 }, { "type": "C", "frame": 29, "at": 4825.7909589624405 }, { "type": "O", "frame": 24, "at": 4825.790959 }, { "type": "O", "frame": 18, "at": 4825.790959 }, { "type": "C", "frame": 18, "at": 4832.50270855368 }, { "type": "C", "frame": 24, "at": 4832.50270855368 }, { "type": "C", "frame": 23, "at": 4832.50270855368 }, { "type": "C", "frame": 22, "at": 4832.50270855368 }, { "type": "C", "frame": 21, "at": 4832.50270855368 }, { "type": "O", "frame": 17, "at": 4832.502709 }, { "type": "O", "frame": 18, "at": 4832.502709 }, { "type": "C", "frame": 18, "at": 4838.077167122254 }, { "type": "C", "frame": 17, "at": 4838.077167122254 }, { "type": "O", "frame": 19, "at": 4838.077167122254 }, { "type": "O", "frame": 18, "at": 4838.077167122254 }, { "type": "C", "frame": 18, "at": 4839.42145904464 }, { "type": "C", "frame": 19, "at": 4839.42145904464 }, { "type": "C", "frame": 16, "at": 4839.42145904464 }, { "type": "C", "frame": 15, "at": 4839.42145904464 }, { "type": "C", "frame": 14, "at": 4839.42145904464 }, { "type": "C", "frame": 13, "at": 4839.42145904464 }, { "type": "C", "frame": 12, "at": 4839.42145904464 }, { "type": "C", "frame": 11, "at": 4839.42145904464 }, { "type": "C", "frame": 10, "at": 4839.42145904464 }, { "type": "C", "frame": 9, "at": 4839.42145904464 }, { "type": "C", "frame": 8, "at": 4839.42145904464 }, { "type": "C", "frame": 20, "at": 4839.42145904464 }, { "type": "O", "frame": 6, "at": 4839.42145904464 }, { "type": "O", "frame": 7, "at": 4839.42145904464 }, { "type": "O", "frame": 8, "at": 4839.42145904464 }, { "type": "O", "frame": 9, "at": 4839.42145904464 }, { "type": "O", "frame": 10, "at": 4839.42145904464 }, { "type": "O", "frame": 11, "at": 4839.42145904464 }, { "type": "O", "frame": 12, "at": 4839.42145904464 }, { "type": "O", "frame": 13, "at": 4839.42145904464 }, { "type": "O", "frame": 14, "at": 4839.42145904464 }, { "type": "O", "frame": 15, "at": 4839.42145904464 }, { "type": "O", "frame": 16, "at": 4839.42145904464 }, { "type": "O", "frame": 21, "at": 4839.42145904464 }, { "type": "O", "frame": 22, "at": 4839.42145904464 }, { "type": "O", "frame": 23, "at": 4839.42145904464 }, { "type": "O", "frame": 24, "at": 4839.42145904464 }, { "type": "O", "frame": 18, "at": 4839.42145904464 }, { "type": "C", "frame": 18, "at": 4848.854209701904 }, { "type": "C", "frame": 24, "at": 4848.854209701904 }, { "type": "C", "frame": 23, "at": 4848.854209701904 }, { "type": "C", "frame": 22, "at": 4848.854209701904 }, { "type": "C", "frame": 21, "at": 4848.854209701904 }, { "type": "O", "frame": 17, "at": 4848.854209701904 }, { "type": "O", "frame": 18, "at": 4848.854209701904 }, { "type": "C", "frame": 18, "at": 4852.941875034699 }, { "type": "C", "frame": 17, "at": 4852.941875034699 }, { "type": "O", "frame": 19, "at": 4852.941875034699 }, { "type": "O", "frame": 18, "at": 4852.941875034699 }, { "type": "C", "frame": 18, "at": 4860.9307923507695 }, { "type": "C", "frame": 19, "at": 4860.9307923507695 }, { "type": "C", "frame": 16, "at": 4860.930793564209 }, { "type": "C", "frame": 15, "at": 4860.930793564209 }, { "type": "C", "frame": 14, "at": 4860.930793564209 }, { "type": "C", "frame": 13, "at": 4860.930793564209 }, { "type": "C", "frame": 12, "at": 4860.930793564209 }, { "type": "C", "frame": 11, "at": 4860.930793564209 }, { "type": "C", "frame": 10, "at": 4860.930793564209 }, { "type": "C", "frame": 9, "at": 4860.930793564209 }, { "type": "C", "frame": 8, "at": 4860.930793564209 }, { "type": "C", "frame": 7, "at": 4860.930793564209 }, { "type": "C", "frame": 6, "at": 4860.930793564209 }, { "type": "O", "frame": 20, "at": 4860.930793564209 }, { "type": "O", "frame": 8, "at": 4860.930793564209 }, { "type": "O", "frame": 9, "at": 4860.930793564209 }, { "type": "O", "frame": 10, "at": 4860.930793564209 }, { "type": "O", "frame": 11, "at": 4860.930793564209 }, { "type": "O", "frame": 12, "at": 4860.930793564209 }, { "type": "O", "frame": 13, "at": 4860.930793564209 }, { "type": "O", "frame": 14, "at": 4860.930793564209 }, { "type": "O", "frame": 15, "at": 4860.930793564209 }, { "type": "O", "frame": 16, "at": 4860.930793564209 }, { "type": "O", "frame": 21, "at": 4860.930793564209 }, { "type": "O", "frame": 22, "at": 4860.930793564209 }, { "type": "O", "frame": 23, "at": 4860.930793564209 }, { "type": "O", "frame": 24, "at": 4860.930793564209 }, { "type": "O", "frame": 18, "at": 4860.930793564209 }, { "type": "C", "frame": 18, "at": 4864.919541980927 }, { "type": "C", "frame": 24, "at": 4864.919541980927 }, { "type": "O", "frame": 49, "at": 4864.919542 }, { "type": "O", "frame": 18, "at": 4864.919542 }, { "type": "C", "frame": 18, "at": 4866.271083996002 }, { "type": "C", "frame": 49, "at": 4866.271083996002 }, { "type": "O", "frame": 24, "at": 4866.271084 }, { "type": "O", "frame": 18, "at": 4866.271084 }, { "type": "C", "frame": 18, "at": 4867.62916700972 }, { "type": "C", "frame": 24, "at": 4867.62916700972 }, { "type": "O", "frame": 31, "at": 4867.62916700972 }, { "type": "O", "frame": 18, "at": 4867.62916700972 }, { "type": "C", "frame": 18, "at": 4868.969375053589 }, { "type": "C", "frame": 31, "at": 4868.969375053589 }, { "type": "O", "frame": 24, "at": 4868.969375053589 }, { "type": "O", "frame": 18, "at": 4868.969375053589 }, { "type": "C", "frame": 18, "at": 4870.319666967392 }, { "type": "C", "frame": 24, "at": 4870.319666967392 }, { "type": "C", "frame": 23, "at": 4870.3196670076295 }, { "type": "C", "frame": 22, "at": 4870.3196670076295 }, { "type": "C", "frame": 21, "at": 4870.3196670076295 }, { "type": "O", "frame": 17, "at": 4870.3196670076295 }, { "type": "O", "frame": 18, "at": 4870.3196670076295 }, { "type": "C", "frame": 18, "at": 4874.402459282104 }, { "type": "C", "frame": 17, "at": 4874.402459282104 }, { "type": "O", "frame": 19, "at": 4874.402459282104 }, { "type": "O", "frame": 18, "at": 4874.402459282104 }, { "type": "C", "frame": 18, "at": 4875.739708994278 }, { "type": "C", "frame": 19, "at": 4875.739708994278 }, { "type": "C", "frame": 16, "at": 4875.739709045593 }, { "type": "C", "frame": 15, "at": 4875.739709045593 }, { "type": "C", "frame": 14, "at": 4875.739709045593 }, { "type": "C", "frame": 13, "at": 4875.739709045593 }, { "type": "C", "frame": 12, "at": 4875.739709045593 }, { "type": "C", "frame": 11, "at": 4875.739709045593 }, { "type": "C", "frame": 10, "at": 4875.739709045593 }, { "type": "C", "frame": 9, "at": 4875.739709045593 }, { "type": "C", "frame": 8, "at": 4875.739709045593 }, { "type": "O", "frame": 18, "at": 4875.739709045593 }, { "type": "C", "frame": 18, "at": 4877.083708981881 }, { "type": "C", "frame": 20, "at": 4877.083709861939 }, { "type": "O", "frame": 6, "at": 4877.083709861939 }, { "type": "O", "frame": 7, "at": 4877.083709861939 }, { "type": "O", "frame": 8, "at": 4877.083709861939 }, { "type": "O", "frame": 9, "at": 4877.083709861939 }, { "type": "O", "frame": 10, "at": 4877.083709861939 }, { "type": "O", "frame": 11, "at": 4877.083709861939 }, { "type": "O", "frame": 12, "at": 4877.083709861939 }, { "type": "O", "frame": 13, "at": 4877.083709861939 }, { "type": "O", "frame": 14, "at": 4877.083709861939 }, { "type": "O", "frame": 15, "at": 4877.083709861939 }, { "type": "O", "frame": 16, "at": 4877.083709861939 }, { "type": "O", "frame": 21, "at": 4877.083709861939 }, { "type": "O", "frame": 22, "at": 4877.083709861939 }, { "type": "O", "frame": 23, "at": 4877.083709861939 }, { "type": "O", "frame": 38, "at": 4877.083709861939 }, { "type": "O", "frame": 18, "at": 4877.083709861939 }, { "type": "C", "frame": 18, "at": 4878.429959057221 }, { "type": "C", "frame": 38, "at": 4878.429959057221 }, { "type": "O", "frame": 24, "at": 4878.429959057221 }, { "type": "O", "frame": 18, "at": 4878.429959057221 }, { "type": "C", "frame": 18, "at": 4883.791291893372 }, { "type": "C", "frame": 24, "at": 4883.791291893372 }, { "type": "O", "frame": 29, "at": 4883.791292 }, { "type": "O", "frame": 18, "at": 4883.791292 }, { "type": "C", "frame": 18, "at": 4885.142875003998 }, { "type": "C", "frame": 29, "at": 4885.142875003998 }, { "type": "C", "frame": 23, "at": 4885.142875003998 }, { "type": "C", "frame": 22, "at": 4885.142875003998 }, { "type": "C", "frame": 21, "at": 4885.142875003998 }, { "type": "O", "frame": 17, "at": 4885.142875003998 }, { "type": "O", "frame": 18, "at": 4885.142875003998 }, { "type": "C", "frame": 18, "at": 4890.931249900817 }, { "type": "C", "frame": 17, "at": 4890.931249900817 }, { "type": "O", "frame": 19, "at": 4890.93125 }, { "type": "O", "frame": 18, "at": 4890.93125 }, { "type": "C", "frame": 18, "at": 4897.713667297363 }, { "type": "C", "frame": 19, "at": 4897.713667297363 }, { "type": "C", "frame": 16, "at": 4897.713667297363 }, { "type": "C", "frame": 15, "at": 4897.713667297363 }, { "type": "C", "frame": 14, "at": 4897.713667297363 }, { "type": "C", "frame": 13, "at": 4897.713667297363 }, { "type": "C", "frame": 12, "at": 4897.713667297363 }, { "type": "C", "frame": 11, "at": 4897.713667297363 }, { "type": "C", "frame": 10, "at": 4897.713667297363 }, { "type": "C", "frame": 9, "at": 4897.713667297363 }, { "type": "C", "frame": 8, "at": 4897.713667297363 }, { "type": "C", "frame": 7, "at": 4897.713667297363 }, { "type": "C", "frame": 6, "at": 4897.713667297363 }, { "type": "O", "frame": 20, "at": 4897.713667297363 }, { "type": "O", "frame": 8, "at": 4897.713667297363 }, { "type": "O", "frame": 9, "at": 4897.713667297363 }, { "type": "O", "frame": 10, "at": 4897.713667297363 }, { "type": "O", "frame": 11, "at": 4897.713667297363 }, { "type": "O", "frame": 12, "at": 4897.713667297363 }, { "type": "O", "frame": 13, "at": 4897.713667297363 }, { "type": "O", "frame": 14, "at": 4897.713667297363 }, { "type": "O", "frame": 15, "at": 4897.713667297363 }, { "type": "O", "frame": 16, "at": 4897.713667297363 }, { "type": "O", "frame": 21, "at": 4897.713667297363 }, { "type": "O", "frame": 22, "at": 4897.713667297363 }, { "type": "O", "frame": 23, "at": 4897.713667297363 }, { "type": "O", "frame": 24, "at": 4897.713667297363 }, { "type": "O", "frame": 18, "at": 4897.713667297363 }, { "type": "C", "frame": 18, "at": 4904.541542137329 }, { "type": "C", "frame": 24, "at": 4904.541542137329 }, { "type": "O", "frame": 28, "at": 4904.541542137329 }, { "type": "O", "frame": 18, "at": 4904.541542137329 }, { "type": "C", "frame": 18, "at": 4905.914542025749 }, { "type": "C", "frame": 28, "at": 4905.914542025749 }, { "type": "O", "frame": 24, "at": 4905.914542025749 }, { "type": "O", "frame": 18, "at": 4905.914542025749 }, { "type": "C", "frame": 18, "at": 4907.290709058945 }, { "type": "C", "frame": 24, "at": 4907.290709058945 }, { "type": "C", "frame": 23, "at": 4907.290709579651 }, { "type": "C", "frame": 22, "at": 4907.290709579651 }, { "type": "C", "frame": 21, "at": 4907.290709579651 }, { "type": "O", "frame": 17, "at": 4907.290709579651 }, { "type": "O", "frame": 18, "at": 4907.290709579651 }, { "type": "C", "frame": 18, "at": 4912.843542080292 }, { "type": "C", "frame": 17, "at": 4912.843542080292 }, { "type": "O", "frame": 19, "at": 4912.843542080292 }, { "type": "O", "frame": 18, "at": 4912.843542080292 }, { "type": "C", "frame": 18, "at": 4914.189667006675 }, { "type": "C", "frame": 19, "at": 4914.189667006675 }, { "type": "C", "frame": 16, "at": 4914.189667006675 }, { "type": "C", "frame": 15, "at": 4914.189667006675 }, { "type": "C", "frame": 14, "at": 4914.189667006675 }, { "type": "C", "frame": 13, "at": 4914.189667006675 }, { "type": "C", "frame": 12, "at": 4914.189667006675 }, { "type": "C", "frame": 11, "at": 4914.189667006675 }, { "type": "C", "frame": 10, "at": 4914.189667006675 }, { "type": "C", "frame": 9, "at": 4914.189667006675 }, { "type": "C", "frame": 8, "at": 4914.189667006675 }, { "type": "C", "frame": 20, "at": 4914.189667006675 }, { "type": "O", "frame": 6, "at": 4914.189667006675 }, { "type": "O", "frame": 7, "at": 4914.189667006675 }, { "type": "O", "frame": 8, "at": 4914.189667006675 }, { "type": "O", "frame": 9, "at": 4914.189667006675 }, { "type": "O", "frame": 10, "at": 4914.189667006675 }, { "type": "O", "frame": 11, "at": 4914.189667006675 }, { "type": "O", "frame": 12, "at": 4914.189667006675 }, { "type": "O", "frame": 13, "at": 4914.189667006675 }, { "type": "O", "frame": 14, "at": 4914.189667006675 }, { "type": "O", "frame": 15, "at": 4914.189667006675 }, { "type": "O", "frame": 16, "at": 4914.189667006675 }, { "type": "O", "frame": 21, "at": 4914.189667006675 }, { "type": "O", "frame": 22, "at": 4914.189667006675 }, { "type": "O", "frame": 23, "at": 4914.189667006675 }, { "type": "O", "frame": 24, "at": 4914.189667006675 }, { "type": "O", "frame": 18, "at": 4914.189667006675 }, { "type": "C", "frame": 18, "at": 4923.682334198181 }, { "type": "C", "frame": 24, "at": 4923.682334198181 }, { "type": "C", "frame": 23, "at": 4923.682334198181 }, { "type": "C", "frame": 22, "at": 4923.682334198181 }, { "type": "C", "frame": 21, "at": 4923.682334198181 }, { "type": "O", "frame": 17, "at": 4923.682334198181 }, { "type": "O", "frame": 18, "at": 4923.682334198181 }, { "type": "C", "frame": 18, "at": 4929.1519170345155 }, { "type": "C", "frame": 17, "at": 4929.1519170345155 }, { "type": "O", "frame": 19, "at": 4929.1519170345155 }, { "type": "O", "frame": 18, "at": 4929.1519170345155 }, { "type": "C", "frame": 18, "at": 4935.711709518616 }, { "type": "C", "frame": 19, "at": 4935.711709518616 }, { "type": "C", "frame": 16, "at": 4935.711710228149 }, { "type": "C", "frame": 15, "at": 4935.711710228149 }, { "type": "C", "frame": 14, "at": 4935.711710228149 }, { "type": "C", "frame": 13, "at": 4935.711710228149 }, { "type": "C", "frame": 12, "at": 4935.711710228149 }, { "type": "C", "frame": 11, "at": 4935.711710228149 }, { "type": "C", "frame": 10, "at": 4935.711710228149 }, { "type": "C", "frame": 9, "at": 4935.711710228149 }, { "type": "C", "frame": 8, "at": 4935.711710228149 }, { "type": "C", "frame": 7, "at": 4935.711710228149 }, { "type": "C", "frame": 6, "at": 4935.711710228149 }, { "type": "O", "frame": 20, "at": 4935.711710228149 }, { "type": "O", "frame": 8, "at": 4935.711710228149 }, { "type": "O", "frame": 9, "at": 4935.711710228149 }, { "type": "O", "frame": 10, "at": 4935.711710228149 }, { "type": "O", "frame": 11, "at": 4935.711710228149 }, { "type": "O", "frame": 12, "at": 4935.711710228149 }, { "type": "O", "frame": 13, "at": 4935.711710228149 }, { "type": "O", "frame": 14, "at": 4935.711710228149 }, { "type": "O", "frame": 15, "at": 4935.711710228149 }, { "type": "O", "frame": 16, "at": 4935.711710228149 }, { "type": "O", "frame": 21, "at": 4935.711710228149 }, { "type": "O", "frame": 22, "at": 4935.711710228149 }, { "type": "O", "frame": 23, "at": 4935.711710228149 }, { "type": "O", "frame": 41, "at": 4935.711710228149 }, { "type": "O", "frame": 18, "at": 4935.711710228149 }, { "type": "C", "frame": 18, "at": 4936.858291961083 }, { "type": "C", "frame": 41, "at": 4936.858291961083 }, { "type": "O", "frame": 24, "at": 4936.858292 }, { "type": "O", "frame": 18, "at": 4936.858292 }, { "type": "C", "frame": 18, "at": 4939.549209015076 }, { "type": "C", "frame": 24, "at": 4939.549209015076 }, { "type": "O", "frame": 26, "at": 4939.549209015076 }, { "type": "O", "frame": 18, "at": 4939.549209015076 }, { "type": "C", "frame": 18, "at": 4940.898916961082 }, { "type": "C", "frame": 26, "at": 4940.898916961082 }, { "type": "O", "frame": 24, "at": 4940.898917 }, { "type": "O", "frame": 18, "at": 4940.898917 }, { "type": "C", "frame": 18, "at": 4946.330374996369 }, { "type": "C", "frame": 24, "at": 4946.330374996369 }, { "type": "C", "frame": 23, "at": 4946.330375648865 }, { "type": "C", "frame": 22, "at": 4946.330375648865 }, { "type": "C", "frame": 21, "at": 4946.330375648865 }, { "type": "O", "frame": 17, "at": 4946.330375648865 }, { "type": "O", "frame": 18, "at": 4946.330375648865 }, { "type": "C", "frame": 18, "at": 4951.998208805084 }, { "type": "C", "frame": 17, "at": 4951.998208805084 }, { "type": "O", "frame": 19, "at": 4951.998209 }, { "type": "O", "frame": 18, "at": 4951.998209 }, { "type": "C", "frame": 18, "at": 4958.854125023255 }, { "type": "C", "frame": 19, "at": 4958.854125023255 }, { "type": "C", "frame": 16, "at": 4958.854126907715 }, { "type": "C", "frame": 15, "at": 4958.854126907715 }, { "type": "C", "frame": 14, "at": 4958.854126907715 }, { "type": "C", "frame": 13, "at": 4958.854126907715 }, { "type": "C", "frame": 12, "at": 4958.854126907715 }, { "type": "C", "frame": 11, "at": 4958.854126907715 }, { "type": "C", "frame": 10, "at": 4958.854126907715 }, { "type": "C", "frame": 9, "at": 4958.854126907715 }, { "type": "C", "frame": 8, "at": 4958.854126907715 }, { "type": "C", "frame": 20, "at": 4958.854126907715 }, { "type": "O", "frame": 6, "at": 4958.854126907715 }, { "type": "O", "frame": 7, "at": 4958.854126907715 }, { "type": "O", "frame": 8, "at": 4958.854126907715 }, { "type": "O", "frame": 9, "at": 4958.854126907715 }, { "type": "O", "frame": 10, "at": 4958.854126907715 }, { "type": "O", "frame": 11, "at": 4958.854126907715 }, { "type": "O", "frame": 12, "at": 4958.854126907715 }, { "type": "O", "frame": 13, "at": 4958.854126907715 }, { "type": "O", "frame": 14, "at": 4958.854126907715 }, { "type": "O", "frame": 15, "at": 4958.854126907715 }, { "type": "O", "frame": 16, "at": 4958.854126907715 }, { "type": "O", "frame": 21, "at": 4958.854126907715 }, { "type": "O", "frame": 22, "at": 4958.854126907715 }, { "type": "O", "frame": 23, "at": 4958.854126907715 }, { "type": "O", "frame": 24, "at": 4958.854126907715 }, { "type": "O", "frame": 18, "at": 4958.854126907715 }, { "type": "C", "frame": 18, "at": 4968.342584587097 }, { "type": "C", "frame": 24, "at": 4968.342584587097 }, { "type": "C", "frame": 23, "at": 4968.342584587097 }, { "type": "C", "frame": 22, "at": 4968.342584587097 }, { "type": "C", "frame": 21, "at": 4968.342584587097 }, { "type": "O", "frame": 17, "at": 4968.342584587097 }, { "type": "O", "frame": 18, "at": 4968.342584587097 }, { "type": "C", "frame": 18, "at": 4974.04091678656 }, { "type": "C", "frame": 17, "at": 4974.04091678656 }, { "type": "O", "frame": 19, "at": 4974.040917 }, { "type": "O", "frame": 18, "at": 4974.040917 }, { "type": "C", "frame": 18, "at": 4975.4295420257495 }, { "type": "C", "frame": 19, "at": 4975.4295420257495 }, { "type": "C", "frame": 16, "at": 4975.4295420257495 }, { "type": "C", "frame": 15, "at": 4975.4295420257495 }, { "type": "C", "frame": 14, "at": 4975.4295420257495 }, { "type": "C", "frame": 13, "at": 4975.4295420257495 }, { "type": "C", "frame": 12, "at": 4975.4295420257495 }, { "type": "C", "frame": 11, "at": 4975.4295420257495 }, { "type": "C", "frame": 10, "at": 4975.4295420257495 }, { "type": "C", "frame": 9, "at": 4975.4295420257495 }, { "type": "C", "frame": 8, "at": 4975.4295420257495 }, { "type": "C", "frame": 7, "at": 4975.4295420257495 }, { "type": "C", "frame": 6, "at": 4975.4295420257495 }, { "type": "O", "frame": 20, "at": 4975.4295420257495 }, { "type": "O", "frame": 8, "at": 4975.4295420257495 }, { "type": "O", "frame": 9, "at": 4975.4295420257495 }, { "type": "O", "frame": 10, "at": 4975.4295420257495 }, { "type": "O", "frame": 11, "at": 4975.4295420257495 }, { "type": "O", "frame": 12, "at": 4975.4295420257495 }, { "type": "O", "frame": 13, "at": 4975.4295420257495 }, { "type": "O", "frame": 14, "at": 4975.4295420257495 }, { "type": "O", "frame": 15, "at": 4975.4295420257495 }, { "type": "O", "frame": 16, "at": 4975.4295420257495 }, { "type": "O", "frame": 21, "at": 4975.4295420257495 }, { "type": "O", "frame": 22, "at": 4975.4295420257495 }, { "type": "O", "frame": 23, "at": 4975.4295420257495 }, { "type": "O", "frame": 24, "at": 4975.4295420257495 }, { "type": "O", "frame": 18, "at": 4975.4295420257495 }, { "type": "C", "frame": 18, "at": 4984.885292465393 }, { "type": "C", "frame": 24, "at": 4984.885292465393 }, { "type": "C", "frame": 23, "at": 4984.885292465393 }, { "type": "C", "frame": 22, "at": 4984.885292465393 }, { "type": "C", "frame": 21, "at": 4984.885292465393 }, { "type": "O", "frame": 17, "at": 4984.885292465393 }, { "type": "O", "frame": 18, "at": 4984.885292465393 }, { "type": "C", "frame": 18, "at": 4990.50704187793 }, { "type": "C", "frame": 17, "at": 4990.50704187793 }, { "type": "O", "frame": 19, "at": 4990.507042 }, { "type": "O", "frame": 18, "at": 4990.507042 }, { "type": "C", "frame": 18, "at": 4997.264875003998 }, { "type": "C", "frame": 19, "at": 4997.264875003998 }, { "type": "C", "frame": 16, "at": 4997.264875003998 }, { "type": "C", "frame": 15, "at": 4997.264875003998 }, { "type": "C", "frame": 14, "at": 4997.264875003998 }, { "type": "C", "frame": 13, "at": 4997.264875003998 }, { "type": "C", "frame": 12, "at": 4997.264875003998 }, { "type": "C", "frame": 11, "at": 4997.264875003998 }, { "type": "C", "frame": 10, "at": 4997.264875003998 }, { "type": "C", "frame": 9, "at": 4997.264875003998 }, { "type": "C", "frame": 8, "at": 4997.264875003998 }, { "type": "C", "frame": 20, "at": 4997.264875003998 }, { "type": "O", "frame": 6, "at": 4997.264875003998 }, { "type": "O", "frame": 7, "at": 4997.264875003998 }, { "type": "O", "frame": 8, "at": 4997.264875003998 }, { "type": "O", "frame": 9, "at": 4997.264875003998 }, { "type": "O", "frame": 10, "at": 4997.264875003998 }, { "type": "O", "frame": 11, "at": 4997.264875003998 }, { "type": "O", "frame": 12, "at": 4997.264875003998 }, { "type": "O", "frame": 13, "at": 4997.264875003998 }, { "type": "O", "frame": 14, "at": 4997.264875003998 }, { "type": "O", "frame": 15, "at": 4997.264875003998 }, { "type": "O", "frame": 16, "at": 4997.264875003998 }, { "type": "O", "frame": 21, "at": 4997.264875003998 }, { "type": "O", "frame": 22, "at": 4997.264875003998 }, { "type": "O", "frame": 23, "at": 4997.264875003998 }, { "type": "O", "frame": 24, "at": 4997.264875003998 }, { "type": "O", "frame": 18, "at": 4997.264875003998 }, { "type": "C", "frame": 18, "at": 5006.946792190552 }, { "type": "C", "frame": 24, "at": 5006.946792190552 }, { "type": "C", "frame": 23, "at": 5006.946792190552 }, { "type": "C", "frame": 22, "at": 5006.946792190552 }, { "type": "C", "frame": 21, "at": 5006.946792190552 }, { "type": "O", "frame": 17, "at": 5006.946792190552 }, { "type": "O", "frame": 18, "at": 5006.946792190552 }, { "type": "C", "frame": 18, "at": 5012.9591249162595 }, { "type": "C", "frame": 17, "at": 5012.9591249162595 }, { "type": "O", "frame": 19, "at": 5012.959125 }, { "type": "O", "frame": 18, "at": 5012.959125 }, { "type": "C", "frame": 18, "at": 5021.029334503174 }, { "type": "C", "frame": 19, "at": 5021.029334503174 }, { "type": "C", "frame": 16, "at": 5021.029336517334 }, { "type": "C", "frame": 15, "at": 5021.029336517334 }, { "type": "C", "frame": 14, "at": 5021.029336517334 }, { "type": "C", "frame": 13, "at": 5021.029336517334 }, { "type": "C", "frame": 12, "at": 5021.029336517334 }, { "type": "C", "frame": 11, "at": 5021.029336517334 }, { "type": "C", "frame": 10, "at": 5021.029336517334 }, { "type": "C", "frame": 9, "at": 5021.029336517334 }, { "type": "C", "frame": 8, "at": 5021.029336517334 }, { "type": "C", "frame": 7, "at": 5021.029336517334 }, { "type": "C", "frame": 6, "at": 5021.029336517334 }, { "type": "O", "frame": 20, "at": 5021.029336517334 }, { "type": "O", "frame": 8, "at": 5021.029336517334 }, { "type": "O", "frame": 9, "at": 5021.029336517334 }, { "type": "O", "frame": 10, "at": 5021.029336517334 }, { "type": "O", "frame": 11, "at": 5021.029336517334 }, { "type": "O", "frame": 12, "at": 5021.029336517334 }, { "type": "O", "frame": 13, "at": 5021.029336517334 }, { "type": "O", "frame": 14, "at": 5021.029336517334 }, { "type": "O", "frame": 15, "at": 5021.029336517334 }, { "type": "O", "frame": 16, "at": 5021.029336517334 }, { "type": "O", "frame": 21, "at": 5021.029336517334 }, { "type": "O", "frame": 22, "at": 5021.029336517334 }, { "type": "O", "frame": 23, "at": 5021.029336517334 }, { "type": "O", "frame": 24, "at": 5021.029336517334 }, { "type": "O", "frame": 18, "at": 5021.029336517334 }, { "type": "C", "frame": 18, "at": 5030.512041977295 }, { "type": "C", "frame": 24, "at": 5030.512041977295 }, { "type": "C", "frame": 23, "at": 5030.512041977295 }, { "type": "C", "frame": 22, "at": 5030.512041977295 }, { "type": "C", "frame": 21, "at": 5030.512041977295 }, { "type": "O", "frame": 17, "at": 5030.512042 }, { "type": "O", "frame": 18, "at": 5030.512042 }, { "type": "C", "frame": 18, "at": 5036.22599978656 }, { "type": "C", "frame": 17, "at": 5036.22599978656 }, { "type": "O", "frame": 19, "at": 5036.226 }, { "type": "O", "frame": 18, "at": 5036.226 }, { "type": "C", "frame": 18, "at": 5037.616208959579 }, { "type": "C", "frame": 19, "at": 5037.616208959579 }, { "type": "C", "frame": 16, "at": 5037.616209915527 }, { "type": "C", "frame": 15, "at": 5037.616209915527 }, { "type": "C", "frame": 14, "at": 5037.616209915527 }, { "type": "C", "frame": 13, "at": 5037.616209915527 }, { "type": "C", "frame": 12, "at": 5037.616209915527 }, { "type": "C", "frame": 11, "at": 5037.616209915527 }, { "type": "C", "frame": 10, "at": 5037.616209915527 }, { "type": "C", "frame": 9, "at": 5037.616209915527 }, { "type": "C", "frame": 8, "at": 5037.616209915527 }, { "type": "C", "frame": 20, "at": 5037.616209915527 }, { "type": "O", "frame": 6, "at": 5037.616209915527 }, { "type": "O", "frame": 7, "at": 5037.616209915527 }, { "type": "O", "frame": 8, "at": 5037.616209915527 }, { "type": "O", "frame": 9, "at": 5037.616209915527 }, { "type": "O", "frame": 10, "at": 5037.616209915527 }, { "type": "O", "frame": 11, "at": 5037.616209915527 }, { "type": "O", "frame": 12, "at": 5037.616209915527 }, { "type": "O", "frame": 13, "at": 5037.616209915527 }, { "type": "O", "frame": 14, "at": 5037.616209915527 }, { "type": "O", "frame": 15, "at": 5037.616209915527 }, { "type": "O", "frame": 16, "at": 5037.616209915527 }, { "type": "O", "frame": 21, "at": 5037.616209915527 }, { "type": "O", "frame": 22, "at": 5037.616209915527 }, { "type": "O", "frame": 23, "at": 5037.616209915527 }, { "type": "O", "frame": 24, "at": 5037.616209915527 }, { "type": "O", "frame": 18, "at": 5037.616209915527 }, { "type": "C", "frame": 18, "at": 5047.049041717895 }, { "type": "C", "frame": 24, "at": 5047.049041717895 }, { "type": "C", "frame": 23, "at": 5047.049041717895 }, { "type": "C", "frame": 22, "at": 5047.049041717895 }, { "type": "C", "frame": 21, "at": 5047.049041717895 }, { "type": "O", "frame": 17, "at": 5047.049042 }, { "type": "O", "frame": 18, "at": 5047.049042 }, { "type": "C", "frame": 18, "at": 5052.599166645233 }, { "type": "C", "frame": 17, "at": 5052.599166645233 }, { "type": "O", "frame": 19, "at": 5052.599167 }, { "type": "O", "frame": 18, "at": 5052.599167 }, { "type": "C", "frame": 18, "at": 5059.313374649231 }, { "type": "C", "frame": 19, "at": 5059.313374649231 }, { "type": "C", "frame": 16, "at": 5059.313374649231 }, { "type": "C", "frame": 15, "at": 5059.313374649231 }, { "type": "C", "frame": 14, "at": 5059.313374649231 }, { "type": "C", "frame": 13, "at": 5059.313374649231 }, { "type": "C", "frame": 12, "at": 5059.313374649231 }, { "type": "C", "frame": 11, "at": 5059.313374649231 }, { "type": "C", "frame": 10, "at": 5059.313374649231 }, { "type": "C", "frame": 9, "at": 5059.313374649231 }, { "type": "C", "frame": 8, "at": 5059.313374649231 }, { "type": "C", "frame": 7, "at": 5059.313374649231 }, { "type": "C", "frame": 6, "at": 5059.313374649231 }, { "type": "O", "frame": 20, "at": 5059.313375 }, { "type": "O", "frame": 8, "at": 5059.313375 }, { "type": "O", "frame": 9, "at": 5059.313375 }, { "type": "O", "frame": 10, "at": 5059.313375 }, { "type": "O", "frame": 11, "at": 5059.313375 }, { "type": "O", "frame": 12, "at": 5059.313375 }, { "type": "O", "frame": 13, "at": 5059.313375 }, { "type": "O", "frame": 14, "at": 5059.313375 }, { "type": "O", "frame": 15, "at": 5059.313375 }, { "type": "O", "frame": 16, "at": 5059.313375 }, { "type": "O", "frame": 21, "at": 5059.313375 }, { "type": "O", "frame": 22, "at": 5059.313375 }, { "type": "O", "frame": 23, "at": 5059.313375 }, { "type": "O", "frame": 24, "at": 5059.313375 }, { "type": "O", "frame": 18, "at": 5059.313375 }, { "type": "C", "frame": 18, "at": 5068.724625114441 }, { "type": "C", "frame": 24, "at": 5068.724625114441 }, { "type": "C", "frame": 23, "at": 5068.724625114441 }, { "type": "C", "frame": 22, "at": 5068.724625114441 }, { "type": "C", "frame": 21, "at": 5068.724625114441 }, { "type": "O", "frame": 17, "at": 5068.724625114441 }, { "type": "O", "frame": 18, "at": 5068.724625114441 }, { "type": "C", "frame": 18, "at": 5074.261458763122 }, { "type": "C", "frame": 17, "at": 5074.261458763122 }, { "type": "O", "frame": 19, "at": 5074.261459 }, { "type": "O", "frame": 18, "at": 5074.261459 }, { "type": "C", "frame": 18, "at": 5082.356000549683 }, { "type": "C", "frame": 19, "at": 5082.356000549683 }, { "type": "C", "frame": 16, "at": 5082.356000549683 }, { "type": "C", "frame": 15, "at": 5082.356000549683 }, { "type": "C", "frame": 14, "at": 5082.356000549683 }, { "type": "C", "frame": 13, "at": 5082.356000549683 }, { "type": "C", "frame": 12, "at": 5082.356000549683 }, { "type": "C", "frame": 11, "at": 5082.356000549683 }, { "type": "C", "frame": 10, "at": 5082.356000549683 }, { "type": "C", "frame": 9, "at": 5082.356000549683 }, { "type": "C", "frame": 8, "at": 5082.356000549683 }, { "type": "C", "frame": 20, "at": 5082.356000549683 }, { "type": "O", "frame": 6, "at": 5082.356000549683 }, { "type": "O", "frame": 7, "at": 5082.356000549683 }, { "type": "O", "frame": 8, "at": 5082.356000549683 }, { "type": "O", "frame": 9, "at": 5082.356000549683 }, { "type": "O", "frame": 10, "at": 5082.356000549683 }, { "type": "O", "frame": 11, "at": 5082.356000549683 }, { "type": "O", "frame": 12, "at": 5082.356000549683 }, { "type": "O", "frame": 13, "at": 5082.356000549683 }, { "type": "O", "frame": 14, "at": 5082.356000549683 }, { "type": "O", "frame": 15, "at": 5082.356000549683 }, { "type": "O", "frame": 16, "at": 5082.356000549683 }, { "type": "O", "frame": 21, "at": 5082.356000549683 }, { "type": "O", "frame": 22, "at": 5082.356000549683 }, { "type": "O", "frame": 23, "at": 5082.356000549683 }, { "type": "O", "frame": 24, "at": 5082.356000549683 }, { "type": "O", "frame": 18, "at": 5082.356000549683 }, { "type": "C", "frame": 18, "at": 5090.442333274841 }, { "type": "C", "frame": 24, "at": 5090.442333274841 }, { "type": "C", "frame": 23, "at": 5090.442333274841 }, { "type": "C", "frame": 22, "at": 5090.442333274841 }, { "type": "C", "frame": 21, "at": 5090.442333274841 }, { "type": "O", "frame": 17, "at": 5090.442334 }, { "type": "O", "frame": 18, "at": 5090.442334 }, { "type": "C", "frame": 18, "at": 5096.464208904633 }, { "type": "C", "frame": 17, "at": 5096.464208904633 }, { "type": "O", "frame": 19, "at": 5096.464209 }, { "type": "O", "frame": 18, "at": 5096.464209 }, { "type": "C", "frame": 18, "at": 5097.802292028793 }, { "type": "C", "frame": 19, "at": 5097.802292028793 }, { "type": "C", "frame": 16, "at": 5097.802292028793 }, { "type": "C", "frame": 15, "at": 5097.802292028793 }, { "type": "C", "frame": 14, "at": 5097.802292028793 }, { "type": "C", "frame": 13, "at": 5097.802292028793 }, { "type": "C", "frame": 12, "at": 5097.802292028793 }, { "type": "C", "frame": 11, "at": 5097.802292028793 }, { "type": "C", "frame": 10, "at": 5097.802292028793 }, { "type": "C", "frame": 9, "at": 5097.802292028793 }, { "type": "C", "frame": 8, "at": 5097.802292028793 }, { "type": "C", "frame": 7, "at": 5097.802292028793 }, { "type": "C", "frame": 6, "at": 5097.802292028793 }, { "type": "O", "frame": 20, "at": 5097.802292028793 }, { "type": "O", "frame": 8, "at": 5097.802292028793 }, { "type": "O", "frame": 9, "at": 5097.802292028793 }, { "type": "O", "frame": 10, "at": 5097.802292028793 }, { "type": "O", "frame": 11, "at": 5097.802292028793 }, { "type": "O", "frame": 12, "at": 5097.802292028793 }, { "type": "O", "frame": 13, "at": 5097.802292028793 }, { "type": "O", "frame": 14, "at": 5097.802292028793 }, { "type": "O", "frame": 15, "at": 5097.802292028793 }, { "type": "O", "frame": 16, "at": 5097.802292028793 }, { "type": "O", "frame": 21, "at": 5097.802292028793 }, { "type": "O", "frame": 22, "at": 5097.802292028793 }, { "type": "O", "frame": 23, "at": 5097.802292028793 }, { "type": "O", "frame": 24, "at": 5097.802292028793 }, { "type": "O", "frame": 18, "at": 5097.802292028793 }, { "type": "C", "frame": 18, "at": 5101.84995902652 }, { "type": "C", "frame": 24, "at": 5101.84995902652 }, { "type": "O", "frame": 29, "at": 5101.84995902652 }, { "type": "O", "frame": 18, "at": 5101.84995902652 }, { "type": "C", "frame": 18, "at": 5103.195458992371 }, { "type": "C", "frame": 29, "at": 5103.195458992371 }, { "type": "O", "frame": 24, "at": 5103.195459 }, { "type": "O", "frame": 18, "at": 5103.195459 }, { "type": "C", "frame": 18, "at": 5107.232542148956 }, { "type": "C", "frame": 24, "at": 5107.232542148956 }, { "type": "C", "frame": 23, "at": 5107.232542167847 }, { "type": "C", "frame": 22, "at": 5107.232542167847 }, { "type": "C", "frame": 21, "at": 5107.232542167847 }, { "type": "O", "frame": 17, "at": 5107.232542167847 }, { "type": "O", "frame": 18, "at": 5107.232542167847 }, { "type": "C", "frame": 18, "at": 5111.384458980743 }, { "type": "C", "frame": 17, "at": 5111.384458980743 }, { "type": "O", "frame": 19, "at": 5111.384459 }, { "type": "O", "frame": 18, "at": 5111.384459 }, { "type": "C", "frame": 18, "at": 5118.04683349646 }, { "type": "C", "frame": 19, "at": 5118.04683349646 }, { "type": "C", "frame": 16, "at": 5118.046835075562 }, { "type": "C", "frame": 15, "at": 5118.046835075562 }, { "type": "C", "frame": 14, "at": 5118.046835075562 }, { "type": "C", "frame": 13, "at": 5118.046835075562 }, { "type": "C", "frame": 12, "at": 5118.046835075562 }, { "type": "C", "frame": 11, "at": 5118.046835075562 }, { "type": "C", "frame": 10, "at": 5118.046835075562 }, { "type": "C", "frame": 9, "at": 5118.046835075562 }, { "type": "C", "frame": 8, "at": 5118.046835075562 }, { "type": "O", "frame": 18, "at": 5118.046835075562 }, { "type": "C", "frame": 18, "at": 5119.426499970802 }, { "type": "C", "frame": 20, "at": 5119.426500450318 }, { "type": "O", "frame": 6, "at": 5119.426500450318 }, { "type": "O", "frame": 7, "at": 5119.426500450318 }, { "type": "O", "frame": 8, "at": 5119.426500450318 }, { "type": "O", "frame": 9, "at": 5119.426500450318 }, { "type": "O", "frame": 10, "at": 5119.426500450318 }, { "type": "O", "frame": 11, "at": 5119.426500450318 }, { "type": "O", "frame": 12, "at": 5119.426500450318 }, { "type": "O", "frame": 13, "at": 5119.426500450318 }, { "type": "O", "frame": 14, "at": 5119.426500450318 }, { "type": "O", "frame": 15, "at": 5119.426500450318 }, { "type": "O", "frame": 16, "at": 5119.426500450318 }, { "type": "O", "frame": 21, "at": 5119.426500450318 }, { "type": "O", "frame": 22, "at": 5119.426500450318 }, { "type": "O", "frame": 23, "at": 5119.426500450318 }, { "type": "O", "frame": 24, "at": 5119.426500450318 }, { "type": "O", "frame": 18, "at": 5119.426500450318 }, { "type": "C", "frame": 18, "at": 5128.121291793823 }, { "type": "C", "frame": 24, "at": 5128.121291793823 }, { "type": "C", "frame": 23, "at": 5128.121291793823 }, { "type": "C", "frame": 22, "at": 5128.121291793823 }, { "type": "C", "frame": 21, "at": 5128.121291793823 }, { "type": "O", "frame": 17, "at": 5128.121292 }, { "type": "O", "frame": 18, "at": 5128.121292 }, { "type": "C", "frame": 18, "at": 5133.770666961853 }, { "type": "C", "frame": 17, "at": 5133.770666961853 }, { "type": "O", "frame": 19, "at": 5133.770667 }, { "type": "O", "frame": 18, "at": 5133.770667 }, { "type": "C", "frame": 18, "at": 5135.119792027656 }, { "type": "C", "frame": 19, "at": 5135.119792027656 }, { "type": "C", "frame": 16, "at": 5135.119792027656 }, { "type": "C", "frame": 15, "at": 5135.119792027656 }, { "type": "C", "frame": 14, "at": 5135.119792027656 }, { "type": "C", "frame": 13, "at": 5135.119792027656 }, { "type": "C", "frame": 12, "at": 5135.119792027656 }, { "type": "C", "frame": 11, "at": 5135.119792027656 }, { "type": "C", "frame": 10, "at": 5135.119792027656 }, { "type": "C", "frame": 9, "at": 5135.119792027656 }, { "type": "C", "frame": 8, "at": 5135.119792027656 }, { "type": "C", "frame": 7, "at": 5135.119792027656 }, { "type": "C", "frame": 6, "at": 5135.119792027656 }, { "type": "O", "frame": 20, "at": 5135.119792027656 }, { "type": "O", "frame": 8, "at": 5135.119792027656 }, { "type": "O", "frame": 9, "at": 5135.119792027656 }, { "type": "O", "frame": 10, "at": 5135.119792027656 }, { "type": "O", "frame": 11, "at": 5135.119792027656 }, { "type": "O", "frame": 12, "at": 5135.119792027656 }, { "type": "O", "frame": 13, "at": 5135.119792027656 }, { "type": "O", "frame": 14, "at": 5135.119792027656 }, { "type": "O", "frame": 15, "at": 5135.119792027656 }, { "type": "O", "frame": 16, "at": 5135.119792027656 }, { "type": "O", "frame": 21, "at": 5135.119792027656 }, { "type": "O", "frame": 22, "at": 5135.119792027656 }, { "type": "O", "frame": 23, "at": 5135.119792027656 }, { "type": "O", "frame": 24, "at": 5135.119792027656 }, { "type": "O", "frame": 18, "at": 5135.119792027656 }, { "type": "C", "frame": 18, "at": 5136.4762089406895 }, { "type": "C", "frame": 24, "at": 5136.4762089406895 }, { "type": "O", "frame": 29, "at": 5136.476209 }, { "type": "O", "frame": 18, "at": 5136.476209 }, { "type": "C", "frame": 18, "at": 5137.821083978066 }, { "type": "C", "frame": 29, "at": 5137.821083978066 }, { "type": "O", "frame": 24, "at": 5137.821084 }, { "type": "O", "frame": 18, "at": 5137.821084 }, { "type": "C", "frame": 18, "at": 5143.2146668208925 }, { "type": "C", "frame": 24, "at": 5143.2146668208925 }, { "type": "C", "frame": 23, "at": 5143.214667335694 }, { "type": "C", "frame": 22, "at": 5143.214667335694 }, { "type": "C", "frame": 21, "at": 5143.214667335694 }, { "type": "O", "frame": 17, "at": 5143.214667335694 }, { "type": "O", "frame": 18, "at": 5143.214667335694 }, { "type": "C", "frame": 18, "at": 5148.835834182923 }, { "type": "C", "frame": 17, "at": 5148.835834182923 }, { "type": "O", "frame": 19, "at": 5148.835834182923 }, { "type": "O", "frame": 18, "at": 5148.835834182923 }, { "type": "C", "frame": 18, "at": 5155.519916984925 }, { "type": "C", "frame": 19, "at": 5155.519916984925 }, { "type": "C", "frame": 16, "at": 5155.519919410889 }, { "type": "C", "frame": 15, "at": 5155.519919410889 }, { "type": "C", "frame": 14, "at": 5155.519919410889 }, { "type": "C", "frame": 13, "at": 5155.519919410889 }, { "type": "C", "frame": 12, "at": 5155.519919410889 }, { "type": "C", "frame": 11, "at": 5155.519919410889 }, { "type": "C", "frame": 10, "at": 5155.519919410889 }, { "type": "C", "frame": 9, "at": 5155.519919410889 }, { "type": "C", "frame": 8, "at": 5155.519919410889 }, { "type": "O", "frame": 18, "at": 5155.519919410889 }, { "type": "C", "frame": 18, "at": 5156.86466704673 }, { "type": "C", "frame": 20, "at": 5156.864668861573 }, { "type": "O", "frame": 6, "at": 5156.864668861573 }, { "type": "O", "frame": 7, "at": 5156.864668861573 }, { "type": "O", "frame": 8, "at": 5156.864668861573 }, { "type": "O", "frame": 9, "at": 5156.864668861573 }, { "type": "O", "frame": 10, "at": 5156.864668861573 }, { "type": "O", "frame": 11, "at": 5156.864668861573 }, { "type": "O", "frame": 12, "at": 5156.864668861573 }, { "type": "O", "frame": 13, "at": 5156.864668861573 }, { "type": "O", "frame": 14, "at": 5156.864668861573 }, { "type": "O", "frame": 15, "at": 5156.864668861573 }, { "type": "O", "frame": 16, "at": 5156.864668861573 }, { "type": "O", "frame": 21, "at": 5156.864668861573 }, { "type": "O", "frame": 22, "at": 5156.864668861573 }, { "type": "O", "frame": 23, "at": 5156.864668861573 }, { "type": "O", "frame": 24, "at": 5156.864668861573 }, { "type": "O", "frame": 18, "at": 5156.864668861573 }, { "type": "C", "frame": 18, "at": 5163.527542175476 }, { "type": "C", "frame": 24, "at": 5163.527542175476 }, { "type": "O", "frame": 25, "at": 5163.527542175476 }, { "type": "O", "frame": 18, "at": 5163.527542175476 }, { "type": "C", "frame": 18, "at": 5164.868333940689 }, { "type": "C", "frame": 25, "at": 5164.868333940689 }, { "type": "C", "frame": 23, "at": 5164.868333940689 }, { "type": "O", "frame": 40, "at": 5164.868334 }, { "type": "O", "frame": 18, "at": 5164.868334 }, { "type": "C", "frame": 18, "at": 5166.218416993507 }, { "type": "C", "frame": 40, "at": 5166.218416993507 }, { "type": "C", "frame": 22, "at": 5166.218417228882 }, { "type": "C", "frame": 21, "at": 5166.218417228882 }, { "type": "O", "frame": 17, "at": 5166.218417228882 }, { "type": "O", "frame": 18, "at": 5166.218417228882 }, { "type": "C", "frame": 18, "at": 5171.734999965851 }, { "type": "C", "frame": 17, "at": 5171.734999965851 }, { "type": "O", "frame": 19, "at": 5171.735 }, { "type": "O", "frame": 18, "at": 5171.735 }, { "type": "C", "frame": 18, "at": 5173.088459000587 }, { "type": "C", "frame": 19, "at": 5173.088459000587 }, { "type": "C", "frame": 16, "at": 5173.088459000587 }, { "type": "C", "frame": 15, "at": 5173.088459000587 }, { "type": "C", "frame": 14, "at": 5173.088459000587 }, { "type": "C", "frame": 13, "at": 5173.088459000587 }, { "type": "C", "frame": 12, "at": 5173.088459000587 }, { "type": "C", "frame": 11, "at": 5173.088459000587 }, { "type": "C", "frame": 10, "at": 5173.088459000587 }, { "type": "C", "frame": 9, "at": 5173.088459000587 }, { "type": "C", "frame": 8, "at": 5173.088459000587 }, { "type": "C", "frame": 7, "at": 5173.088459000587 }, { "type": "C", "frame": 6, "at": 5173.088459000587 }, { "type": "O", "frame": 20, "at": 5173.088459000587 }, { "type": "O", "frame": 8, "at": 5173.088459000587 }, { "type": "O", "frame": 9, "at": 5173.088459000587 }, { "type": "O", "frame": 10, "at": 5173.088459000587 }, { "type": "O", "frame": 11, "at": 5173.088459000587 }, { "type": "O", "frame": 12, "at": 5173.088459000587 }, { "type": "O", "frame": 13, "at": 5173.088459000587 }, { "type": "O", "frame": 14, "at": 5173.088459000587 }, { "type": "O", "frame": 15, "at": 5173.088459000587 }, { "type": "O", "frame": 16, "at": 5173.088459000587 }, { "type": "O", "frame": 21, "at": 5173.088459000587 }, { "type": "O", "frame": 22, "at": 5173.088459000587 }, { "type": "O", "frame": 23, "at": 5173.088459000587 }, { "type": "O", "frame": 24, "at": 5173.088459000587 }, { "type": "O", "frame": 18, "at": 5173.088459000587 }, { "type": "C", "frame": 18, "at": 5182.519374832519 }, { "type": "C", "frame": 24, "at": 5182.519374832519 }, { "type": "C", "frame": 23, "at": 5182.519374832519 }, { "type": "C", "frame": 22, "at": 5182.519374832519 }, { "type": "C", "frame": 21, "at": 5182.519374832519 }, { "type": "O", "frame": 17, "at": 5182.519375 }, { "type": "O", "frame": 18, "at": 5182.519375 }, { "type": "C", "frame": 18, "at": 5186.633667144775 }, { "type": "C", "frame": 17, "at": 5186.633667144775 }, { "type": "O", "frame": 19, "at": 5186.633667144775 }, { "type": "O", "frame": 18, "at": 5186.633667144775 }, { "type": "C", "frame": 18, "at": 5194.603250034515 }, { "type": "C", "frame": 19, "at": 5194.603250034515 }, { "type": "C", "frame": 16, "at": 5194.603250034515 }, { "type": "C", "frame": 15, "at": 5194.603250034515 }, { "type": "C", "frame": 14, "at": 5194.603250034515 }, { "type": "C", "frame": 13, "at": 5194.603250034515 }, { "type": "C", "frame": 12, "at": 5194.603250034515 }, { "type": "C", "frame": 11, "at": 5194.603250034515 }, { "type": "C", "frame": 10, "at": 5194.603250034515 }, { "type": "C", "frame": 9, "at": 5194.603250034515 }, { "type": "C", "frame": 8, "at": 5194.603250034515 }, { "type": "C", "frame": 20, "at": 5194.603250034515 }, { "type": "O", "frame": 6, "at": 5194.603250034515 }, { "type": "O", "frame": 7, "at": 5194.603250034515 }, { "type": "O", "frame": 8, "at": 5194.603250034515 }, { "type": "O", "frame": 9, "at": 5194.603250034515 }, { "type": "O", "frame": 10, "at": 5194.603250034515 }, { "type": "O", "frame": 11, "at": 5194.603250034515 }, { "type": "O", "frame": 12, "at": 5194.603250034515 }, { "type": "O", "frame": 13, "at": 5194.603250034515 }, { "type": "O", "frame": 14, "at": 5194.603250034515 }, { "type": "O", "frame": 15, "at": 5194.603250034515 }, { "type": "O", "frame": 16, "at": 5194.603250034515 }, { "type": "O", "frame": 21, "at": 5194.603250034515 }, { "type": "O", "frame": 22, "at": 5194.603250034515 }, { "type": "O", "frame": 23, "at": 5194.603250034515 }, { "type": "O", "frame": 24, "at": 5194.603250034515 }, { "type": "O", "frame": 18, "at": 5194.603250034515 }, { "type": "C", "frame": 18, "at": 5202.682624313355 }, { "type": "C", "frame": 24, "at": 5202.682624313355 }, { "type": "O", "frame": 49, "at": 5202.682625 }, { "type": "O", "frame": 18, "at": 5202.682625 }, { "type": "C", "frame": 18, "at": 5204.0475840015415 }, { "type": "C", "frame": 49, "at": 5204.0475840015415 }, { "type": "C", "frame": 23, "at": 5204.0475840015415 }, { "type": "C", "frame": 22, "at": 5204.0475840015415 }, { "type": "C", "frame": 21, "at": 5204.0475840015415 }, { "type": "O", "frame": 17, "at": 5204.0475840015415 }, { "type": "O", "frame": 18, "at": 5204.0475840015415 }, { "type": "C", "frame": 18, "at": 5209.534041824707 }, { "type": "C", "frame": 17, "at": 5209.534041824707 }, { "type": "O", "frame": 19, "at": 5209.534042 }, { "type": "O", "frame": 18, "at": 5209.534042 }, { "type": "C", "frame": 18, "at": 5210.883916973297 }, { "type": "C", "frame": 19, "at": 5210.883916973297 }, { "type": "C", "frame": 16, "at": 5210.883916973297 }, { "type": "C", "frame": 15, "at": 5210.883916973297 }, { "type": "C", "frame": 14, "at": 5210.883916973297 }, { "type": "C", "frame": 13, "at": 5210.883916973297 }, { "type": "C", "frame": 12, "at": 5210.883916973297 }, { "type": "C", "frame": 11, "at": 5210.883916973297 }, { "type": "C", "frame": 10, "at": 5210.883916973297 }, { "type": "C", "frame": 9, "at": 5210.883916973297 }, { "type": "C", "frame": 8, "at": 5210.883916973297 }, { "type": "C", "frame": 7, "at": 5210.883916973297 }, { "type": "C", "frame": 6, "at": 5210.883916973297 }, { "type": "O", "frame": 20, "at": 5210.883917 }, { "type": "O", "frame": 8, "at": 5210.883917 }, { "type": "O", "frame": 9, "at": 5210.883917 }, { "type": "O", "frame": 10, "at": 5210.883917 }, { "type": "O", "frame": 11, "at": 5210.883917 }, { "type": "O", "frame": 12, "at": 5210.883917 }, { "type": "O", "frame": 13, "at": 5210.883917 }, { "type": "O", "frame": 14, "at": 5210.883917 }, { "type": "O", "frame": 15, "at": 5210.883917 }, { "type": "O", "frame": 16, "at": 5210.883917 }, { "type": "O", "frame": 21, "at": 5210.883917 }, { "type": "O", "frame": 22, "at": 5210.883917 }, { "type": "O", "frame": 23, "at": 5210.883917 }, { "type": "O", "frame": 38, "at": 5210.883917 }, { "type": "O", "frame": 18, "at": 5210.883917 }, { "type": "C", "frame": 18, "at": 5212.22762503833 }, { "type": "C", "frame": 38, "at": 5212.22762503833 }, { "type": "O", "frame": 24, "at": 5212.22762503833 }, { "type": "O", "frame": 18, "at": 5212.22762503833 }, { "type": "C", "frame": 18, "at": 5213.576500045777 }, { "type": "C", "frame": 24, "at": 5213.576500045777 }, { "type": "O", "frame": 31, "at": 5213.576500045777 }, { "type": "O", "frame": 18, "at": 5213.576500045777 }, { "type": "C", "frame": 18, "at": 5214.92000001812 }, { "type": "C", "frame": 31, "at": 5214.92000001812 }, { "type": "O", "frame": 24, "at": 5214.92000001812 }, { "type": "O", "frame": 18, "at": 5214.92000001812 }, { "type": "C", "frame": 18, "at": 5218.95279209137 }, { "type": "C", "frame": 24, "at": 5218.95279209137 }, { "type": "C", "frame": 23, "at": 5218.952792312805 }, { "type": "C", "frame": 22, "at": 5218.952792312805 }, { "type": "C", "frame": 21, "at": 5218.952792312805 }, { "type": "O", "frame": 17, "at": 5218.952792312805 }, { "type": "O", "frame": 18, "at": 5218.952792312805 }, { "type": "C", "frame": 18, "at": 5224.408542465393 }, { "type": "C", "frame": 17, "at": 5224.408542465393 }, { "type": "O", "frame": 19, "at": 5224.408542465393 }, { "type": "O", "frame": 18, "at": 5224.408542465393 }, { "type": "C", "frame": 18, "at": 5231.091625534241 }, { "type": "C", "frame": 19, "at": 5231.091625534241 }, { "type": "C", "frame": 16, "at": 5231.091625534241 }, { "type": "C", "frame": 15, "at": 5231.091625534241 }, { "type": "C", "frame": 14, "at": 5231.091625534241 }, { "type": "C", "frame": 13, "at": 5231.091625534241 }, { "type": "C", "frame": 12, "at": 5231.091625534241 }, { "type": "C", "frame": 11, "at": 5231.091625534241 }, { "type": "C", "frame": 10, "at": 5231.091625534241 }, { "type": "C", "frame": 9, "at": 5231.091625534241 }, { "type": "C", "frame": 8, "at": 5231.091625534241 }, { "type": "C", "frame": 20, "at": 5231.091625534241 }, { "type": "O", "frame": 6, "at": 5231.091625534241 }, { "type": "O", "frame": 7, "at": 5231.091625534241 }, { "type": "O", "frame": 8, "at": 5231.091625534241 }, { "type": "O", "frame": 9, "at": 5231.091625534241 }, { "type": "O", "frame": 10, "at": 5231.091625534241 }, { "type": "O", "frame": 11, "at": 5231.091625534241 }, { "type": "O", "frame": 12, "at": 5231.091625534241 }, { "type": "O", "frame": 13, "at": 5231.091625534241 }, { "type": "O", "frame": 14, "at": 5231.091625534241 }, { "type": "O", "frame": 15, "at": 5231.091625534241 }, { "type": "O", "frame": 16, "at": 5231.091625534241 }, { "type": "O", "frame": 21, "at": 5231.091625534241 }, { "type": "O", "frame": 22, "at": 5231.091625534241 }, { "type": "O", "frame": 23, "at": 5231.091625534241 }, { "type": "O", "frame": 24, "at": 5231.091625534241 }, { "type": "O", "frame": 18, "at": 5231.091625534241 }, { "type": "C", "frame": 18, "at": 5240.517249847412 }, { "type": "C", "frame": 24, "at": 5240.517249847412 }, { "type": "C", "frame": 23, "at": 5240.517249847412 }, { "type": "C", "frame": 22, "at": 5240.517249847412 }, { "type": "C", "frame": 21, "at": 5240.517249847412 }, { "type": "O", "frame": 17, "at": 5240.51725 }, { "type": "O", "frame": 18, "at": 5240.51725 }, { "type": "C", "frame": 18, "at": 5244.719250141144 }, { "type": "C", "frame": 17, "at": 5244.719250141144 }, { "type": "O", "frame": 19, "at": 5244.719250141144 }, { "type": "O", "frame": 18, "at": 5244.719250141144 }, { "type": "C", "frame": 18, "at": 5252.797209060669 }, { "type": "C", "frame": 19, "at": 5252.797209060669 }, { "type": "C", "frame": 16, "at": 5252.797209060669 }, { "type": "C", "frame": 15, "at": 5252.797209060669 }, { "type": "C", "frame": 14, "at": 5252.797209060669 }, { "type": "C", "frame": 13, "at": 5252.797209060669 }, { "type": "C", "frame": 12, "at": 5252.797209060669 }, { "type": "C", "frame": 11, "at": 5252.797209060669 }, { "type": "C", "frame": 10, "at": 5252.797209060669 }, { "type": "C", "frame": 9, "at": 5252.797209060669 }, { "type": "C", "frame": 8, "at": 5252.797209060669 }, { "type": "C", "frame": 7, "at": 5252.797209060669 }, { "type": "C", "frame": 6, "at": 5252.797209060669 }, { "type": "O", "frame": 20, "at": 5252.797209060669 }, { "type": "O", "frame": 8, "at": 5252.797209060669 }, { "type": "O", "frame": 9, "at": 5252.797209060669 }, { "type": "O", "frame": 10, "at": 5252.797209060669 }, { "type": "O", "frame": 11, "at": 5252.797209060669 }, { "type": "O", "frame": 12, "at": 5252.797209060669 }, { "type": "O", "frame": 13, "at": 5252.797209060669 }, { "type": "O", "frame": 14, "at": 5252.797209060669 }, { "type": "O", "frame": 15, "at": 5252.797209060669 }, { "type": "O", "frame": 16, "at": 5252.797209060669 }, { "type": "O", "frame": 21, "at": 5252.797209060669 }, { "type": "O", "frame": 22, "at": 5252.797209060669 }, { "type": "O", "frame": 23, "at": 5252.797209060669 }, { "type": "O", "frame": 24, "at": 5252.797209060669 }, { "type": "O", "frame": 18, "at": 5252.797209060669 }, { "type": "C", "frame": 18, "at": 5260.891208862671 }, { "type": "C", "frame": 24, "at": 5260.891208862671 }, { "type": "C", "frame": 23, "at": 5260.891208862671 }, { "type": "C", "frame": 22, "at": 5260.891208862671 }, { "type": "C", "frame": 21, "at": 5260.891208862671 }, { "type": "O", "frame": 17, "at": 5260.891209 }, { "type": "O", "frame": 18, "at": 5260.891209 }, { "type": "C", "frame": 18, "at": 5266.346708649048 }, { "type": "C", "frame": 17, "at": 5266.346708649048 }, { "type": "C", "frame": 16, "at": 5266.346708649048 }, { "type": "C", "frame": 15, "at": 5266.346708649048 }, { "type": "C", "frame": 14, "at": 5266.346708649048 }, { "type": "C", "frame": 13, "at": 5266.346708649048 }, { "type": "C", "frame": 12, "at": 5266.346708649048 }, { "type": "C", "frame": 11, "at": 5266.346708649048 }, { "type": "C", "frame": 10, "at": 5266.346708649048 }, { "type": "C", "frame": 9, "at": 5266.346708649048 }, { "type": "C", "frame": 8, "at": 5266.346708649048 }, { "type": "C", "frame": 20, "at": 5266.346708649048 }, { "type": "O", "frame": 6, "at": 5266.346709 }, { "type": "O", "frame": 7, "at": 5266.346709 }, { "type": "O", "frame": 8, "at": 5266.346709 }, { "type": "O", "frame": 9, "at": 5266.346709 }, { "type": "O", "frame": 10, "at": 5266.346709 }, { "type": "O", "frame": 11, "at": 5266.346709 }, { "type": "O", "frame": 12, "at": 5266.346709 }, { "type": "O", "frame": 13, "at": 5266.346709 }, { "type": "O", "frame": 14, "at": 5266.346709 }, { "type": "O", "frame": 15, "at": 5266.346709 }, { "type": "O", "frame": 16, "at": 5266.346709 }, { "type": "O", "frame": 18, "at": 5266.346709 }, { "type": "C", "frame": 18, "at": 5267.694833980927 }, { "type": "O", "frame": 21, "at": 5267.694834 }, { "type": "O", "frame": 22, "at": 5267.694834 }, { "type": "O", "frame": 23, "at": 5267.694834 }, { "type": "O", "frame": 31, "at": 5267.694834 }, { "type": "O", "frame": 18, "at": 5267.694834 }, { "type": "C", "frame": 18, "at": 5269.036167031654 }, { "type": "C", "frame": 31, "at": 5269.036167031654 }, { "type": "O", "frame": 24, "at": 5269.036167031654 }, { "type": "O", "frame": 18, "at": 5269.036167031654 }, { "type": "C", "frame": 18, "at": 5271.72291693515 }, { "type": "C", "frame": 24, "at": 5271.72291693515 }, { "type": "O", "frame": 26, "at": 5271.722917 }, { "type": "O", "frame": 18, "at": 5271.722917 }, { "type": "C", "frame": 18, "at": 5273.061334053223 }, { "type": "C", "frame": 26, "at": 5273.061334053223 }, { "type": "O", "frame": 24, "at": 5273.061334053223 }, { "type": "O", "frame": 18, "at": 5273.061334053223 }, { "type": "C", "frame": 18, "at": 5275.79287491835 }, { "type": "C", "frame": 24, "at": 5275.79287491835 }, { "type": "C", "frame": 23, "at": 5275.79287491835 }, { "type": "C", "frame": 22, "at": 5275.79287491835 }, { "type": "C", "frame": 21, "at": 5275.79287491835 }, { "type": "O", "frame": 17, "at": 5275.792875 }, { "type": "O", "frame": 18, "at": 5275.792875 }, { "type": "C", "frame": 18, "at": 5279.905125328064 }, { "type": "C", "frame": 17, "at": 5279.905125328064 }, { "type": "O", "frame": 19, "at": 5279.905125328064 }, { "type": "O", "frame": 18, "at": 5279.905125328064 }, { "type": "C", "frame": 18, "at": 5286.605584003449 }, { "type": "C", "frame": 19, "at": 5286.605584003449 }, { "type": "C", "frame": 16, "at": 5286.605584003449 }, { "type": "C", "frame": 15, "at": 5286.605584003449 }, { "type": "C", "frame": 14, "at": 5286.605584003449 }, { "type": "C", "frame": 13, "at": 5286.605584003449 }, { "type": "C", "frame": 12, "at": 5286.605584003449 }, { "type": "C", "frame": 11, "at": 5286.605584003449 }, { "type": "C", "frame": 10, "at": 5286.605584003449 }, { "type": "C", "frame": 9, "at": 5286.605584003449 }, { "type": "C", "frame": 8, "at": 5286.605584003449 }, { "type": "C", "frame": 7, "at": 5286.605584003449 }, { "type": "C", "frame": 6, "at": 5286.605584003449 }, { "type": "O", "frame": 20, "at": 5286.605584003449 }, { "type": "O", "frame": 8, "at": 5286.605584003449 }, { "type": "O", "frame": 9, "at": 5286.605584003449 }, { "type": "O", "frame": 10, "at": 5286.605584003449 }, { "type": "O", "frame": 11, "at": 5286.605584003449 }, { "type": "O", "frame": 12, "at": 5286.605584003449 }, { "type": "O", "frame": 13, "at": 5286.605584003449 }, { "type": "O", "frame": 14, "at": 5286.605584003449 }, { "type": "O", "frame": 15, "at": 5286.605584003449 }, { "type": "O", "frame": 16, "at": 5286.605584003449 }, { "type": "O", "frame": 21, "at": 5286.605584003449 }, { "type": "O", "frame": 22, "at": 5286.605584003449 }, { "type": "O", "frame": 23, "at": 5286.605584003449 }, { "type": "O", "frame": 24, "at": 5286.605584003449 }, { "type": "O", "frame": 18, "at": 5286.605584003449 }, { "type": "C", "frame": 18, "at": 5290.627250049957 }, { "type": "C", "frame": 24, "at": 5290.627250049957 }, { "type": "O", "frame": 38, "at": 5290.627250049957 }, { "type": "O", "frame": 18, "at": 5290.627250049957 }, { "type": "C", "frame": 18, "at": 5291.967083974838 }, { "type": "C", "frame": 38, "at": 5291.967083974838 }, { "type": "O", "frame": 24, "at": 5291.967084 }, { "type": "O", "frame": 18, "at": 5291.967084 }, { "type": "C", "frame": 18, "at": 5294.674250194916 }, { "type": "C", "frame": 24, "at": 5294.674250194916 }, { "type": "C", "frame": 23, "at": 5294.674250194916 }, { "type": "C", "frame": 22, "at": 5294.674250194916 }, { "type": "C", "frame": 21, "at": 5294.674250194916 }, { "type": "O", "frame": 17, "at": 5294.674250194916 }, { "type": "O", "frame": 18, "at": 5294.674250194916 }, { "type": "C", "frame": 18, "at": 5300.242834442139 }, { "type": "C", "frame": 17, "at": 5300.242834442139 }, { "type": "O", "frame": 19, "at": 5300.242834442139 }, { "type": "O", "frame": 18, "at": 5300.242834442139 }, { "type": "C", "frame": 18, "at": 5301.578416971573 }, { "type": "C", "frame": 19, "at": 5301.578416971573 }, { "type": "C", "frame": 16, "at": 5301.578416971573 }, { "type": "C", "frame": 15, "at": 5301.578416971573 }, { "type": "C", "frame": 14, "at": 5301.578416971573 }, { "type": "C", "frame": 13, "at": 5301.578416971573 }, { "type": "C", "frame": 12, "at": 5301.578416971573 }, { "type": "C", "frame": 11, "at": 5301.578416971573 }, { "type": "C", "frame": 10, "at": 5301.578416971573 }, { "type": "C", "frame": 9, "at": 5301.578416971573 }, { "type": "C", "frame": 8, "at": 5301.578416971573 }, { "type": "C", "frame": 20, "at": 5301.578416971573 }, { "type": "O", "frame": 6, "at": 5301.578417 }, { "type": "O", "frame": 7, "at": 5301.578417 }, { "type": "O", "frame": 8, "at": 5301.578417 }, { "type": "O", "frame": 9, "at": 5301.578417 }, { "type": "O", "frame": 10, "at": 5301.578417 }, { "type": "O", "frame": 11, "at": 5301.578417 }, { "type": "O", "frame": 12, "at": 5301.578417 }, { "type": "O", "frame": 13, "at": 5301.578417 }, { "type": "O", "frame": 14, "at": 5301.578417 }, { "type": "O", "frame": 15, "at": 5301.578417 }, { "type": "O", "frame": 16, "at": 5301.578417 }, { "type": "O", "frame": 21, "at": 5301.578417 }, { "type": "O", "frame": 22, "at": 5301.578417 }, { "type": "O", "frame": 23, "at": 5301.578417 }, { "type": "O", "frame": 24, "at": 5301.578417 }, { "type": "O", "frame": 18, "at": 5301.578417 }, { "type": "C", "frame": 18, "at": 5309.673416313354 }, { "type": "C", "frame": 24, "at": 5309.673416313354 }, { "type": "C", "frame": 23, "at": 5309.673416313354 }, { "type": "C", "frame": 22, "at": 5309.673416313354 }, { "type": "C", "frame": 21, "at": 5309.673416313354 }, { "type": "O", "frame": 17, "at": 5309.673417 }, { "type": "O", "frame": 18, "at": 5309.673417 }, { "type": "C", "frame": 18, "at": 5315.015583900635 }, { "type": "C", "frame": 17, "at": 5315.015583900635 }, { "type": "O", "frame": 19, "at": 5315.015584 }, { "type": "O", "frame": 18, "at": 5315.015584 }, { "type": "C", "frame": 18, "at": 5320.409334190735 }, { "type": "C", "frame": 19, "at": 5320.409334190735 }, { "type": "C", "frame": 16, "at": 5320.409334190735 }, { "type": "C", "frame": 15, "at": 5320.409334190735 }, { "type": "C", "frame": 14, "at": 5320.409334190735 }, { "type": "C", "frame": 13, "at": 5320.409334190735 }, { "type": "C", "frame": 12, "at": 5320.409334190735 }, { "type": "C", "frame": 11, "at": 5320.409334190735 }, { "type": "C", "frame": 10, "at": 5320.409334190735 }, { "type": "C", "frame": 9, "at": 5320.409334190735 }, { "type": "C", "frame": 8, "at": 5320.409334190735 }, { "type": "C", "frame": 7, "at": 5320.409334190735 }, { "type": "C", "frame": 6, "at": 5320.409334190735 }, { "type": "O", "frame": 20, "at": 5320.409334190735 }, { "type": "O", "frame": 8, "at": 5320.409334190735 }, { "type": "O", "frame": 9, "at": 5320.409334190735 }, { "type": "O", "frame": 10, "at": 5320.409334190735 }, { "type": "O", "frame": 11, "at": 5320.409334190735 }, { "type": "O", "frame": 12, "at": 5320.409334190735 }, { "type": "O", "frame": 13, "at": 5320.409334190735 }, { "type": "O", "frame": 14, "at": 5320.409334190735 }, { "type": "O", "frame": 15, "at": 5320.409334190735 }, { "type": "O", "frame": 16, "at": 5320.409334190735 }, { "type": "O", "frame": 21, "at": 5320.409334190735 }, { "type": "O", "frame": 22, "at": 5320.409334190735 }, { "type": "O", "frame": 23, "at": 5320.409334190735 }, { "type": "O", "frame": 24, "at": 5320.409334190735 }, { "type": "O", "frame": 18, "at": 5320.409334190735 }, { "type": "C", "frame": 18, "at": 5328.477166946777 }, { "type": "C", "frame": 24, "at": 5328.477166946777 }, { "type": "C", "frame": 23, "at": 5328.477166946777 }, { "type": "C", "frame": 22, "at": 5328.477166946777 }, { "type": "C", "frame": 21, "at": 5328.477166946777 }, { "type": "O", "frame": 17, "at": 5328.477167 }, { "type": "O", "frame": 18, "at": 5328.477167 }, { "type": "C", "frame": 18, "at": 5333.9444168703 }, { "type": "C", "frame": 17, "at": 5333.9444168703 }, { "type": "O", "frame": 19, "at": 5333.944417 }, { "type": "O", "frame": 18, "at": 5333.944417 }, { "type": "C", "frame": 18, "at": 5340.642624855224 }, { "type": "C", "frame": 19, "at": 5340.642624855224 }, { "type": "C", "frame": 16, "at": 5340.642624855224 }, { "type": "C", "frame": 15, "at": 5340.642624855224 }, { "type": "C", "frame": 14, "at": 5340.642624855224 }, { "type": "C", "frame": 13, "at": 5340.642624855224 }, { "type": "C", "frame": 12, "at": 5340.642624855224 }, { "type": "C", "frame": 11, "at": 5340.642624855224 }, { "type": "C", "frame": 10, "at": 5340.642624855224 }, { "type": "C", "frame": 9, "at": 5340.642624855224 }, { "type": "C", "frame": 8, "at": 5340.642624855224 }, { "type": "C", "frame": 20, "at": 5340.642624855224 }, { "type": "O", "frame": 6, "at": 5340.642625 }, { "type": "O", "frame": 7, "at": 5340.642625 }, { "type": "O", "frame": 8, "at": 5340.642625 }, { "type": "O", "frame": 9, "at": 5340.642625 }, { "type": "O", "frame": 10, "at": 5340.642625 }, { "type": "O", "frame": 11, "at": 5340.642625 }, { "type": "O", "frame": 12, "at": 5340.642625 }, { "type": "O", "frame": 13, "at": 5340.642625 }, { "type": "O", "frame": 14, "at": 5340.642625 }, { "type": "O", "frame": 15, "at": 5340.642625 }, { "type": "O", "frame": 16, "at": 5340.642625 }, { "type": "O", "frame": 21, "at": 5340.642625 }, { "type": "O", "frame": 22, "at": 5340.642625 }, { "type": "O", "frame": 23, "at": 5340.642625 }, { "type": "O", "frame": 24, "at": 5340.642625 }, { "type": "O", "frame": 18, "at": 5340.642625 }, { "type": "C", "frame": 18, "at": 5344.670959140778 }, { "type": "C", "frame": 24, "at": 5344.670959140778 }, { "type": "O", "frame": 29, "at": 5344.670959140778 }, { "type": "O", "frame": 18, "at": 5344.670959140778 }, { "type": "C", "frame": 18, "at": 5346.01287496508 }, { "type": "C", "frame": 29, "at": 5346.01287496508 }, { "type": "O", "frame": 24, "at": 5346.012875 }, { "type": "O", "frame": 18, "at": 5346.012875 }, { "type": "C", "frame": 18, "at": 5348.713292041779 }, { "type": "C", "frame": 24, "at": 5348.713292041779 }, { "type": "C", "frame": 23, "at": 5348.713292266846 }, { "type": "C", "frame": 22, "at": 5348.713292266846 }, { "type": "C", "frame": 21, "at": 5348.713292266846 }, { "type": "O", "frame": 17, "at": 5348.713292266846 }, { "type": "O", "frame": 18, "at": 5348.713292266846 }, { "type": "C", "frame": 18, "at": 5354.258084175293 }, { "type": "C", "frame": 17, "at": 5354.258084175293 }, { "type": "O", "frame": 19, "at": 5354.258084175293 }, { "type": "O", "frame": 18, "at": 5354.258084175293 }, { "type": "C", "frame": 18, "at": 5355.611749947914 }, { "type": "C", "frame": 19, "at": 5355.611749947914 }, { "type": "C", "frame": 16, "at": 5355.611750747681 }, { "type": "C", "frame": 15, "at": 5355.611750747681 }, { "type": "C", "frame": 14, "at": 5355.611750747681 }, { "type": "C", "frame": 13, "at": 5355.611750747681 }, { "type": "C", "frame": 12, "at": 5355.611750747681 }, { "type": "C", "frame": 11, "at": 5355.611750747681 }, { "type": "C", "frame": 10, "at": 5355.611750747681 }, { "type": "C", "frame": 9, "at": 5355.611750747681 }, { "type": "C", "frame": 8, "at": 5355.611750747681 }, { "type": "C", "frame": 7, "at": 5355.611750747681 }, { "type": "C", "frame": 6, "at": 5355.611750747681 }, { "type": "O", "frame": 20, "at": 5355.611750747681 }, { "type": "O", "frame": 8, "at": 5355.611750747681 }, { "type": "O", "frame": 9, "at": 5355.611750747681 }, { "type": "O", "frame": 10, "at": 5355.611750747681 }, { "type": "O", "frame": 11, "at": 5355.611750747681 }, { "type": "O", "frame": 12, "at": 5355.611750747681 }, { "type": "O", "frame": 13, "at": 5355.611750747681 }, { "type": "O", "frame": 14, "at": 5355.611750747681 }, { "type": "O", "frame": 15, "at": 5355.611750747681 }, { "type": "O", "frame": 16, "at": 5355.611750747681 }, { "type": "O", "frame": 21, "at": 5355.611750747681 }, { "type": "O", "frame": 22, "at": 5355.611750747681 }, { "type": "O", "frame": 23, "at": 5355.611750747681 }, { "type": "O", "frame": 24, "at": 5355.611750747681 }, { "type": "O", "frame": 18, "at": 5355.611750747681 }, { "type": "C", "frame": 18, "at": 5359.648917072296 }, { "type": "C", "frame": 24, "at": 5359.648917072296 }, { "type": "O", "frame": 31, "at": 5359.648917072296 }, { "type": "O", "frame": 18, "at": 5359.648917072296 }, { "type": "C", "frame": 18, "at": 5360.990000049775 }, { "type": "C", "frame": 31, "at": 5360.990000049775 }, { "type": "O", "frame": 24, "at": 5360.990000049775 }, { "type": "O", "frame": 18, "at": 5360.990000049775 }, { "type": "C", "frame": 18, "at": 5363.681874980926 }, { "type": "C", "frame": 24, "at": 5363.681874980926 }, { "type": "C", "frame": 23, "at": 5363.681875579834 }, { "type": "C", "frame": 22, "at": 5363.681875579834 }, { "type": "C", "frame": 21, "at": 5363.681875579834 }, { "type": "O", "frame": 17, "at": 5363.681875579834 }, { "type": "O", "frame": 18, "at": 5363.681875579834 }, { "type": "C", "frame": 18, "at": 5369.145791778565 }, { "type": "C", "frame": 17, "at": 5369.145791778565 }, { "type": "O", "frame": 19, "at": 5369.145792 }, { "type": "O", "frame": 18, "at": 5369.145792 }, { "type": "C", "frame": 18, "at": 5375.811292164032 }, { "type": "C", "frame": 19, "at": 5375.811292164032 }, { "type": "C", "frame": 16, "at": 5375.811292999268 }, { "type": "C", "frame": 15, "at": 5375.811292999268 }, { "type": "C", "frame": 14, "at": 5375.811292999268 }, { "type": "C", "frame": 13, "at": 5375.811292999268 }, { "type": "C", "frame": 12, "at": 5375.811292999268 }, { "type": "C", "frame": 11, "at": 5375.811292999268 }, { "type": "C", "frame": 10, "at": 5375.811292999268 }, { "type": "C", "frame": 9, "at": 5375.811292999268 }, { "type": "C", "frame": 8, "at": 5375.811292999268 }, { "type": "C", "frame": 20, "at": 5375.811292999268 }, { "type": "O", "frame": 6, "at": 5375.811292999268 }, { "type": "O", "frame": 7, "at": 5375.811292999268 }, { "type": "O", "frame": 8, "at": 5375.811292999268 }, { "type": "O", "frame": 9, "at": 5375.811292999268 }, { "type": "O", "frame": 10, "at": 5375.811292999268 }, { "type": "O", "frame": 11, "at": 5375.811292999268 }, { "type": "O", "frame": 12, "at": 5375.811292999268 }, { "type": "O", "frame": 13, "at": 5375.811292999268 }, { "type": "O", "frame": 14, "at": 5375.811292999268 }, { "type": "O", "frame": 15, "at": 5375.811292999268 }, { "type": "O", "frame": 16, "at": 5375.811292999268 }, { "type": "O", "frame": 21, "at": 5375.811292999268 }, { "type": "O", "frame": 22, "at": 5375.811292999268 }, { "type": "O", "frame": 23, "at": 5375.811292999268 }, { "type": "O", "frame": 24, "at": 5375.811292999268 }, { "type": "O", "frame": 18, "at": 5375.811292999268 }, { "type": "C", "frame": 18, "at": 5385.281958885376 }, { "type": "C", "frame": 24, "at": 5385.281958885376 }, { "type": "C", "frame": 23, "at": 5385.281958885376 }, { "type": "C", "frame": 22, "at": 5385.281958885376 }, { "type": "C", "frame": 21, "at": 5385.281958885376 }, { "type": "O", "frame": 17, "at": 5385.281959 }, { "type": "O", "frame": 18, "at": 5385.281959 }, { "type": "C", "frame": 18, "at": 5391.134084167847 }, { "type": "C", "frame": 17, "at": 5391.134084167847 }, { "type": "O", "frame": 19, "at": 5391.134084167847 }, { "type": "O", "frame": 18, "at": 5391.134084167847 }, { "type": "C", "frame": 18, "at": 5395.28708387793 }, { "type": "C", "frame": 19, "at": 5395.28708387793 }, { "type": "C", "frame": 16, "at": 5395.287083931153 }, { "type": "C", "frame": 15, "at": 5395.287083931153 }, { "type": "C", "frame": 14, "at": 5395.287083931153 }, { "type": "C", "frame": 13, "at": 5395.287083931153 }, { "type": "C", "frame": 12, "at": 5395.287083931153 }, { "type": "C", "frame": 11, "at": 5395.287083931153 }, { "type": "C", "frame": 10, "at": 5395.287083931153 }, { "type": "C", "frame": 9, "at": 5395.287083931153 }, { "type": "C", "frame": 8, "at": 5395.287083931153 }, { "type": "C", "frame": 7, "at": 5395.287083931153 }, { "type": "C", "frame": 6, "at": 5395.287083931153 }, { "type": "O", "frame": 20, "at": 5395.287084 }, { "type": "O", "frame": 8, "at": 5395.287084 }, { "type": "O", "frame": 9, "at": 5395.287084 }, { "type": "O", "frame": 10, "at": 5395.287084 }, { "type": "O", "frame": 11, "at": 5395.287084 }, { "type": "O", "frame": 12, "at": 5395.287084 }, { "type": "O", "frame": 13, "at": 5395.287084 }, { "type": "O", "frame": 14, "at": 5395.287084 }, { "type": "O", "frame": 15, "at": 5395.287084 }, { "type": "O", "frame": 16, "at": 5395.287084 }, { "type": "O", "frame": 21, "at": 5395.287084 }, { "type": "O", "frame": 22, "at": 5395.287084 }, { "type": "O", "frame": 23, "at": 5395.287084 }, { "type": "O", "frame": 24, "at": 5395.287084 }, { "type": "O", "frame": 18, "at": 5395.287084 }, { "type": "C", "frame": 18, "at": 5396.623958961853 }, { "type": "C", "frame": 24, "at": 5396.623958961853 }, { "type": "O", "frame": 25, "at": 5396.623959 }, { "type": "O", "frame": 18, "at": 5396.623959 }, { "type": "C", "frame": 18, "at": 5397.997334058174 }, { "type": "C", "frame": 25, "at": 5397.997334058174 }, { "type": "O", "frame": 24, "at": 5397.997334058174 }, { "type": "O", "frame": 18, "at": 5397.997334058174 }, { "type": "C", "frame": 18, "at": 5404.7087502445065 }, { "type": "C", "frame": 24, "at": 5404.7087502445065 }, { "type": "C", "frame": 23, "at": 5404.7087502445065 }, { "type": "C", "frame": 22, "at": 5404.7087502445065 }, { "type": "C", "frame": 21, "at": 5404.7087502445065 }, { "type": "O", "frame": 17, "at": 5404.7087502445065 }, { "type": "O", "frame": 18, "at": 5404.7087502445065 }, { "type": "C", "frame": 18, "at": 5410.225917091369 }, { "type": "C", "frame": 17, "at": 5410.225917091369 }, { "type": "O", "frame": 19, "at": 5410.225917091369 }, { "type": "O", "frame": 18, "at": 5410.225917091369 }, { "type": "C", "frame": 18, "at": 5416.9992090646665 }, { "type": "C", "frame": 19, "at": 5416.9992090646665 }, { "type": "C", "frame": 16, "at": 5416.9992116855465 }, { "type": "C", "frame": 15, "at": 5416.9992116855465 }, { "type": "C", "frame": 14, "at": 5416.9992116855465 }, { "type": "C", "frame": 13, "at": 5416.9992116855465 }, { "type": "C", "frame": 12, "at": 5416.9992116855465 }, { "type": "C", "frame": 11, "at": 5416.9992116855465 }, { "type": "C", "frame": 10, "at": 5416.9992116855465 }, { "type": "C", "frame": 9, "at": 5416.9992116855465 }, { "type": "C", "frame": 8, "at": 5416.9992116855465 }, { "type": "C", "frame": 20, "at": 5416.9992116855465 }, { "type": "O", "frame": 6, "at": 5416.9992116855465 }, { "type": "O", "frame": 7, "at": 5416.9992116855465 }, { "type": "O", "frame": 8, "at": 5416.9992116855465 }, { "type": "O", "frame": 9, "at": 5416.9992116855465 }, { "type": "O", "frame": 10, "at": 5416.9992116855465 }, { "type": "O", "frame": 11, "at": 5416.9992116855465 }, { "type": "O", "frame": 12, "at": 5416.9992116855465 }, { "type": "O", "frame": 13, "at": 5416.9992116855465 }, { "type": "O", "frame": 14, "at": 5416.9992116855465 }, { "type": "O", "frame": 15, "at": 5416.9992116855465 }, { "type": "O", "frame": 16, "at": 5416.9992116855465 }, { "type": "O", "frame": 21, "at": 5416.9992116855465 }, { "type": "O", "frame": 22, "at": 5416.9992116855465 }, { "type": "O", "frame": 23, "at": 5416.9992116855465 }, { "type": "O", "frame": 24, "at": 5416.9992116855465 }, { "type": "O", "frame": 18, "at": 5416.9992116855465 }, { "type": "C", "frame": 18, "at": 5418.398750020393 }, { "type": "C", "frame": 24, "at": 5418.398750020393 }, { "type": "O", "frame": 31, "at": 5418.398750020393 }, { "type": "O", "frame": 18, "at": 5418.398750020393 }, { "type": "C", "frame": 18, "at": 5419.734584026337 }, { "type": "C", "frame": 31, "at": 5419.734584026337 }, { "type": "O", "frame": 24, "at": 5419.734584026337 }, { "type": "O", "frame": 18, "at": 5419.734584026337 }, { "type": "C", "frame": 18, "at": 5426.457749988922 }, { "type": "C", "frame": 24, "at": 5426.457749988922 }, { "type": "C", "frame": 23, "at": 5426.457749988922 }, { "type": "C", "frame": 22, "at": 5426.457749988922 }, { "type": "C", "frame": 21, "at": 5426.457749988922 }, { "type": "O", "frame": 17, "at": 5426.45775 }, { "type": "O", "frame": 18, "at": 5426.45775 }, { "type": "C", "frame": 18, "at": 5431.912208713531 }, { "type": "C", "frame": 17, "at": 5431.912208713531 }, { "type": "O", "frame": 19, "at": 5431.912209 }, { "type": "O", "frame": 18, "at": 5431.912209 }, { "type": "C", "frame": 18, "at": 5433.245917047867 }, { "type": "C", "frame": 19, "at": 5433.245917047867 }, { "type": "C", "frame": 16, "at": 5433.245917047867 }, { "type": "C", "frame": 15, "at": 5433.245917047867 }, { "type": "C", "frame": 14, "at": 5433.245917047867 }, { "type": "C", "frame": 13, "at": 5433.245917047867 }, { "type": "C", "frame": 12, "at": 5433.245917047867 }, { "type": "C", "frame": 11, "at": 5433.245917047867 }, { "type": "C", "frame": 10, "at": 5433.245917047867 }, { "type": "C", "frame": 9, "at": 5433.245917047867 }, { "type": "C", "frame": 8, "at": 5433.245917047867 }, { "type": "C", "frame": 7, "at": 5433.245917047867 }, { "type": "C", "frame": 6, "at": 5433.245917047867 }, { "type": "O", "frame": 20, "at": 5433.245917047867 }, { "type": "O", "frame": 8, "at": 5433.245917047867 }, { "type": "O", "frame": 9, "at": 5433.245917047867 }, { "type": "O", "frame": 10, "at": 5433.245917047867 }, { "type": "O", "frame": 11, "at": 5433.245917047867 }, { "type": "O", "frame": 12, "at": 5433.245917047867 }, { "type": "O", "frame": 13, "at": 5433.245917047867 }, { "type": "O", "frame": 14, "at": 5433.245917047867 }, { "type": "O", "frame": 15, "at": 5433.245917047867 }, { "type": "O", "frame": 16, "at": 5433.245917047867 }, { "type": "O", "frame": 21, "at": 5433.245917047867 }, { "type": "O", "frame": 22, "at": 5433.245917047867 }, { "type": "O", "frame": 23, "at": 5433.245917047867 }, { "type": "O", "frame": 24, "at": 5433.245917047867 }, { "type": "O", "frame": 18, "at": 5433.245917047867 }, { "type": "C", "frame": 18, "at": 5442.65037504596 }, { "type": "C", "frame": 24, "at": 5442.65037504596 }, { "type": "C", "frame": 23, "at": 5442.65037504596 }, { "type": "C", "frame": 22, "at": 5442.65037504596 }, { "type": "C", "frame": 21, "at": 5442.65037504596 }, { "type": "O", "frame": 17, "at": 5442.65037504596 }, { "type": "O", "frame": 18, "at": 5442.65037504596 }, { "type": "C", "frame": 18, "at": 5448.259417167664 }, { "type": "C", "frame": 17, "at": 5448.259417167664 }, { "type": "O", "frame": 19, "at": 5448.259417167664 }, { "type": "O", "frame": 18, "at": 5448.259417167664 }, { "type": "C", "frame": 18, "at": 5454.958249988739 }, { "type": "C", "frame": 19, "at": 5454.958249988739 }, { "type": "C", "frame": 16, "at": 5454.958250679199 }, { "type": "C", "frame": 15, "at": 5454.958250679199 }, { "type": "C", "frame": 14, "at": 5454.958250679199 }, { "type": "C", "frame": 13, "at": 5454.958250679199 }, { "type": "C", "frame": 12, "at": 5454.958250679199 }, { "type": "C", "frame": 11, "at": 5454.958250679199 }, { "type": "C", "frame": 10, "at": 5454.958250679199 }, { "type": "C", "frame": 9, "at": 5454.958250679199 }, { "type": "C", "frame": 8, "at": 5454.958250679199 }, { "type": "C", "frame": 20, "at": 5454.958250679199 }, { "type": "O", "frame": 6, "at": 5454.958250679199 }, { "type": "O", "frame": 7, "at": 5454.958250679199 }, { "type": "O", "frame": 8, "at": 5454.958250679199 }, { "type": "O", "frame": 9, "at": 5454.958250679199 }, { "type": "O", "frame": 10, "at": 5454.958250679199 }, { "type": "O", "frame": 11, "at": 5454.958250679199 }, { "type": "O", "frame": 12, "at": 5454.958250679199 }, { "type": "O", "frame": 13, "at": 5454.958250679199 }, { "type": "O", "frame": 14, "at": 5454.958250679199 }, { "type": "O", "frame": 15, "at": 5454.958250679199 }, { "type": "O", "frame": 16, "at": 5454.958250679199 }, { "type": "O", "frame": 21, "at": 5454.958250679199 }, { "type": "O", "frame": 22, "at": 5454.958250679199 }, { "type": "O", "frame": 23, "at": 5454.958250679199 }, { "type": "O", "frame": 24, "at": 5454.958250679199 }, { "type": "O", "frame": 18, "at": 5454.958250679199 }, { "type": "C", "frame": 18, "at": 5464.323333694458 }, { "type": "C", "frame": 24, "at": 5464.323333694458 }, { "type": "C", "frame": 23, "at": 5464.323333694458 }, { "type": "C", "frame": 22, "at": 5464.323333694458 }, { "type": "C", "frame": 21, "at": 5464.323333694458 }, { "type": "O", "frame": 17, "at": 5464.323334 }, { "type": "O", "frame": 18, "at": 5464.323334 }, { "type": "C", "frame": 18, "at": 5469.898792049774 }, { "type": "C", "frame": 17, "at": 5469.898792049774 }, { "type": "O", "frame": 19, "at": 5469.898792049774 }, { "type": "O", "frame": 18, "at": 5469.898792049774 }, { "type": "C", "frame": 18, "at": 5476.5910002901 }, { "type": "C", "frame": 19, "at": 5476.5910002901 }, { "type": "C", "frame": 16, "at": 5476.5910002901 }, { "type": "C", "frame": 15, "at": 5476.5910002901 }, { "type": "C", "frame": 14, "at": 5476.5910002901 }, { "type": "C", "frame": 13, "at": 5476.5910002901 }, { "type": "C", "frame": 12, "at": 5476.5910002901 }, { "type": "C", "frame": 11, "at": 5476.5910002901 }, { "type": "C", "frame": 10, "at": 5476.5910002901 }, { "type": "C", "frame": 9, "at": 5476.5910002901 }, { "type": "C", "frame": 8, "at": 5476.5910002901 }, { "type": "C", "frame": 7, "at": 5476.5910002901 }, { "type": "C", "frame": 6, "at": 5476.5910002901 }, { "type": "O", "frame": 20, "at": 5476.5910002901 }, { "type": "O", "frame": 8, "at": 5476.5910002901 }, { "type": "O", "frame": 9, "at": 5476.5910002901 }, { "type": "O", "frame": 10, "at": 5476.5910002901 }, { "type": "O", "frame": 11, "at": 5476.5910002901 }, { "type": "O", "frame": 12, "at": 5476.5910002901 }, { "type": "O", "frame": 13, "at": 5476.5910002901 }, { "type": "O", "frame": 14, "at": 5476.5910002901 }, { "type": "O", "frame": 15, "at": 5476.5910002901 }, { "type": "O", "frame": 16, "at": 5476.5910002901 }, { "type": "O", "frame": 21, "at": 5476.5910002901 }, { "type": "O", "frame": 22, "at": 5476.5910002901 }, { "type": "O", "frame": 23, "at": 5476.5910002901 }, { "type": "O", "frame": 24, "at": 5476.5910002901 }, { "type": "O", "frame": 18, "at": 5476.5910002901 }, { "type": "C", "frame": 18, "at": 5484.994458595276 }, { "type": "C", "frame": 24, "at": 5484.994458595276 }, { "type": "O", "frame": 25, "at": 5484.994459 }, { "type": "O", "frame": 18, "at": 5484.994459 }, { "type": "C", "frame": 18, "at": 5486.348666992553 }, { "type": "C", "frame": 25, "at": 5486.348666992553 }, { "type": "C", "frame": 23, "at": 5486.348666992553 }, { "type": "C", "frame": 22, "at": 5486.348666992553 }, { "type": "C", "frame": 21, "at": 5486.348666992553 }, { "type": "O", "frame": 17, "at": 5486.348667 }, { "type": "O", "frame": 18, "at": 5486.348667 }, { "type": "C", "frame": 18, "at": 5493.336916778748 }, { "type": "C", "frame": 17, "at": 5493.336916778748 }, { "type": "C", "frame": 16, "at": 5493.336916778748 }, { "type": "C", "frame": 15, "at": 5493.336916778748 }, { "type": "C", "frame": 14, "at": 5493.336916778748 }, { "type": "C", "frame": 13, "at": 5493.336916778748 }, { "type": "C", "frame": 12, "at": 5493.336916778748 }, { "type": "C", "frame": 11, "at": 5493.336916778748 }, { "type": "C", "frame": 10, "at": 5493.336916778748 }, { "type": "C", "frame": 9, "at": 5493.336916778748 }, { "type": "C", "frame": 8, "at": 5493.336916778748 }, { "type": "C", "frame": 20, "at": 5493.336916778748 }, { "type": "O", "frame": 6, "at": 5493.336917 }, { "type": "O", "frame": 27, "at": 5493.336917 }, { "type": "O", "frame": 18, "at": 5493.336917 }, { "type": "C", "frame": 18, "at": 5494.685499983017 }, { "type": "C", "frame": 27, "at": 5494.685499983017 }, { "type": "O", "frame": 7, "at": 5494.6855 }, { "type": "O", "frame": 8, "at": 5494.6855 }, { "type": "O", "frame": 9, "at": 5494.6855 }, { "type": "O", "frame": 10, "at": 5494.6855 }, { "type": "O", "frame": 11, "at": 5494.6855 }, { "type": "O", "frame": 12, "at": 5494.6855 }, { "type": "O", "frame": 13, "at": 5494.6855 }, { "type": "O", "frame": 14, "at": 5494.6855 }, { "type": "O", "frame": 15, "at": 5494.6855 }, { "type": "O", "frame": 16, "at": 5494.6855 }, { "type": "O", "frame": 21, "at": 5494.6855 }, { "type": "O", "frame": 22, "at": 5494.6855 }, { "type": "O", "frame": 23, "at": 5494.6855 }, { "type": "O", "frame": 24, "at": 5494.6855 }, { "type": "O", "frame": 18, "at": 5494.6855 }, { "type": "C", "frame": 18, "at": 5501.403042171478 }, { "type": "C", "frame": 24, "at": 5501.403042171478 }, { "type": "O", "frame": 25, "at": 5501.403042171478 }, { "type": "O", "frame": 18, "at": 5501.403042171478 }, { "type": "C", "frame": 18, "at": 5502.774874966804 }, { "type": "C", "frame": 25, "at": 5502.774874966804 }, { "type": "C", "frame": 23, "at": 5502.77487549591 }, { "type": "C", "frame": 22, "at": 5502.77487549591 }, { "type": "C", "frame": 21, "at": 5502.77487549591 }, { "type": "O", "frame": 17, "at": 5502.77487549591 }, { "type": "O", "frame": 18, "at": 5502.77487549591 }, { "type": "C", "frame": 18, "at": 5508.215459182739 }, { "type": "C", "frame": 17, "at": 5508.215459182739 }, { "type": "O", "frame": 19, "at": 5508.215459182739 }, { "type": "O", "frame": 18, "at": 5508.215459182739 }, { "type": "C", "frame": 18, "at": 5516.221124779114 }, { "type": "C", "frame": 19, "at": 5516.221124779114 }, { "type": "C", "frame": 16, "at": 5516.221125457763 }, { "type": "C", "frame": 15, "at": 5516.221125457763 }, { "type": "C", "frame": 14, "at": 5516.221125457763 }, { "type": "C", "frame": 13, "at": 5516.221125457763 }, { "type": "C", "frame": 12, "at": 5516.221125457763 }, { "type": "C", "frame": 11, "at": 5516.221125457763 }, { "type": "C", "frame": 10, "at": 5516.221125457763 }, { "type": "C", "frame": 9, "at": 5516.221125457763 }, { "type": "C", "frame": 8, "at": 5516.221125457763 }, { "type": "C", "frame": 7, "at": 5516.221125457763 }, { "type": "C", "frame": 6, "at": 5516.221125457763 }, { "type": "O", "frame": 20, "at": 5516.221125457763 }, { "type": "O", "frame": 8, "at": 5516.221125457763 }, { "type": "O", "frame": 9, "at": 5516.221125457763 }, { "type": "O", "frame": 10, "at": 5516.221125457763 }, { "type": "O", "frame": 11, "at": 5516.221125457763 }, { "type": "O", "frame": 12, "at": 5516.221125457763 }, { "type": "O", "frame": 13, "at": 5516.221125457763 }, { "type": "O", "frame": 14, "at": 5516.221125457763 }, { "type": "O", "frame": 15, "at": 5516.221125457763 }, { "type": "O", "frame": 16, "at": 5516.221125457763 }, { "type": "O", "frame": 21, "at": 5516.221125457763 }, { "type": "O", "frame": 22, "at": 5516.221125457763 }, { "type": "O", "frame": 23, "at": 5516.221125457763 }, { "type": "O", "frame": 24, "at": 5516.221125457763 }, { "type": "O", "frame": 18, "at": 5516.221125457763 }, { "type": "C", "frame": 18, "at": 5525.53687512207 }, { "type": "C", "frame": 24, "at": 5525.53687512207 }, { "type": "C", "frame": 23, "at": 5525.53687512207 }, { "type": "C", "frame": 22, "at": 5525.53687512207 }, { "type": "C", "frame": 21, "at": 5525.53687512207 }, { "type": "O", "frame": 17, "at": 5525.53687512207 }, { "type": "O", "frame": 18, "at": 5525.53687512207 }, { "type": "C", "frame": 18, "at": 5531.015042057037 }, { "type": "C", "frame": 17, "at": 5531.015042057037 }, { "type": "O", "frame": 19, "at": 5531.015042057037 }, { "type": "O", "frame": 18, "at": 5531.015042057037 }, { "type": "C", "frame": 18, "at": 5537.605999641602 }, { "type": "C", "frame": 19, "at": 5537.605999641602 }, { "type": "C", "frame": 16, "at": 5537.605999641602 }, { "type": "C", "frame": 15, "at": 5537.605999641602 }, { "type": "C", "frame": 14, "at": 5537.605999641602 }, { "type": "C", "frame": 13, "at": 5537.605999641602 }, { "type": "C", "frame": 12, "at": 5537.605999641602 }, { "type": "C", "frame": 11, "at": 5537.605999641602 }, { "type": "C", "frame": 10, "at": 5537.605999641602 }, { "type": "C", "frame": 9, "at": 5537.605999641602 }, { "type": "C", "frame": 8, "at": 5537.605999641602 }, { "type": "C", "frame": 20, "at": 5537.605999641602 }, { "type": "O", "frame": 6, "at": 5537.606 }, { "type": "O", "frame": 7, "at": 5537.606 }, { "type": "O", "frame": 8, "at": 5537.606 }, { "type": "O", "frame": 9, "at": 5537.606 }, { "type": "O", "frame": 10, "at": 5537.606 }, { "type": "O", "frame": 11, "at": 5537.606 }, { "type": "O", "frame": 12, "at": 5537.606 }, { "type": "O", "frame": 13, "at": 5537.606 }, { "type": "O", "frame": 14, "at": 5537.606 }, { "type": "O", "frame": 15, "at": 5537.606 }, { "type": "O", "frame": 16, "at": 5537.606 }, { "type": "O", "frame": 21, "at": 5537.606 }, { "type": "O", "frame": 22, "at": 5537.606 }, { "type": "O", "frame": 23, "at": 5537.606 }, { "type": "O", "frame": 24, "at": 5537.606 }, { "type": "O", "frame": 18, "at": 5537.606 }, { "type": "C", "frame": 18, "at": 5540.292500072479 }, { "type": "C", "frame": 24, "at": 5540.292500072479 }, { "type": "O", "frame": 25, "at": 5540.292500072479 }, { "type": "O", "frame": 18, "at": 5540.292500072479 }, { "type": "C", "frame": 18, "at": 5541.638666968345 }, { "type": "C", "frame": 25, "at": 5541.638666968345 }, { "type": "O", "frame": 24, "at": 5541.638667 }, { "type": "O", "frame": 18, "at": 5541.638667 }, { "type": "C", "frame": 18, "at": 5546.99404181308 }, { "type": "C", "frame": 24, "at": 5546.99404181308 }, { "type": "C", "frame": 23, "at": 5546.994042449951 }, { "type": "C", "frame": 22, "at": 5546.994042449951 }, { "type": "C", "frame": 21, "at": 5546.994042449951 }, { "type": "O", "frame": 17, "at": 5546.994042449951 }, { "type": "O", "frame": 18, "at": 5546.994042449951 }, { "type": "C", "frame": 18, "at": 5552.56812485141 }, { "type": "C", "frame": 17, "at": 5552.56812485141 }, { "type": "O", "frame": 19, "at": 5552.568125 }, { "type": "O", "frame": 18, "at": 5552.568125 }, { "type": "C", "frame": 18, "at": 5553.9142500066755 }, { "type": "C", "frame": 19, "at": 5553.9142500066755 }, { "type": "C", "frame": 16, "at": 5553.914250427246 }, { "type": "C", "frame": 15, "at": 5553.914250427246 }, { "type": "C", "frame": 14, "at": 5553.914250427246 }, { "type": "C", "frame": 13, "at": 5553.914250427246 }, { "type": "C", "frame": 12, "at": 5553.914250427246 }, { "type": "C", "frame": 11, "at": 5553.914250427246 }, { "type": "C", "frame": 10, "at": 5553.914250427246 }, { "type": "C", "frame": 9, "at": 5553.914250427246 }, { "type": "C", "frame": 8, "at": 5553.914250427246 }, { "type": "C", "frame": 7, "at": 5553.914250427246 }, { "type": "C", "frame": 6, "at": 5553.914250427246 }, { "type": "O", "frame": 50, "at": 5553.914250427246 }, { "type": "O", "frame": 18, "at": 5553.914250427246 }, { "type": "C", "frame": 18, "at": 5555.263375027656 }, { "type": "C", "frame": 50, "at": 5555.263375027656 }, { "type": "O", "frame": 20, "at": 5555.263375027656 }, { "type": "O", "frame": 8, "at": 5555.263375027656 }, { "type": "O", "frame": 9, "at": 5555.263375027656 }, { "type": "O", "frame": 10, "at": 5555.263375027656 }, { "type": "O", "frame": 11, "at": 5555.263375027656 }, { "type": "O", "frame": 12, "at": 5555.263375027656 }, { "type": "O", "frame": 13, "at": 5555.263375027656 }, { "type": "O", "frame": 14, "at": 5555.263375027656 }, { "type": "O", "frame": 15, "at": 5555.263375027656 }, { "type": "O", "frame": 16, "at": 5555.263375027656 }, { "type": "O", "frame": 21, "at": 5555.263375027656 }, { "type": "O", "frame": 22, "at": 5555.263375027656 }, { "type": "O", "frame": 23, "at": 5555.263375027656 }, { "type": "O", "frame": 26, "at": 5555.263375027656 }, { "type": "O", "frame": 18, "at": 5555.263375027656 }, { "type": "C", "frame": 18, "at": 5556.597833947182 }, { "type": "C", "frame": 26, "at": 5556.597833947182 }, { "type": "O", "frame": 24, "at": 5556.597834 }, { "type": "O", "frame": 18, "at": 5556.597834 }, { "type": "C", "frame": 18, "at": 5563.3200000614015 }, { "type": "C", "frame": 24, "at": 5563.3200000614015 }, { "type": "C", "frame": 23, "at": 5563.3200000614015 }, { "type": "C", "frame": 22, "at": 5563.3200000614015 }, { "type": "C", "frame": 21, "at": 5563.3200000614015 }, { "type": "O", "frame": 17, "at": 5563.3200000614015 }, { "type": "O", "frame": 18, "at": 5563.3200000614015 }, { "type": "C", "frame": 18, "at": 5568.754208869934 }, { "type": "C", "frame": 17, "at": 5568.754208869934 }, { "type": "O", "frame": 19, "at": 5568.754209 }, { "type": "O", "frame": 18, "at": 5568.754209 }, { "type": "C", "frame": 18, "at": 5576.865167099365 }, { "type": "C", "frame": 19, "at": 5576.865167099365 }, { "type": "C", "frame": 16, "at": 5576.865167099365 }, { "type": "C", "frame": 15, "at": 5576.865167099365 }, { "type": "C", "frame": 14, "at": 5576.865167099365 }, { "type": "C", "frame": 13, "at": 5576.865167099365 }, { "type": "C", "frame": 12, "at": 5576.865167099365 }, { "type": "C", "frame": 11, "at": 5576.865167099365 }, { "type": "C", "frame": 10, "at": 5576.865167099365 }, { "type": "C", "frame": 9, "at": 5576.865167099365 }, { "type": "C", "frame": 8, "at": 5576.865167099365 }, { "type": "C", "frame": 20, "at": 5576.865167099365 }, { "type": "O", "frame": 6, "at": 5576.865167099365 }, { "type": "O", "frame": 7, "at": 5576.865167099365 }, { "type": "O", "frame": 8, "at": 5576.865167099365 }, { "type": "O", "frame": 9, "at": 5576.865167099365 }, { "type": "O", "frame": 10, "at": 5576.865167099365 }, { "type": "O", "frame": 11, "at": 5576.865167099365 }, { "type": "O", "frame": 12, "at": 5576.865167099365 }, { "type": "O", "frame": 13, "at": 5576.865167099365 }, { "type": "O", "frame": 14, "at": 5576.865167099365 }, { "type": "O", "frame": 15, "at": 5576.865167099365 }, { "type": "O", "frame": 16, "at": 5576.865167099365 }, { "type": "O", "frame": 21, "at": 5576.865167099365 }, { "type": "O", "frame": 22, "at": 5576.865167099365 }, { "type": "O", "frame": 23, "at": 5576.865167099365 }, { "type": "O", "frame": 24, "at": 5576.865167099365 }, { "type": "O", "frame": 18, "at": 5576.865167099365 }, { "type": "C", "frame": 18, "at": 5586.302417137329 }, { "type": "C", "frame": 24, "at": 5586.302417137329 }, { "type": "C", "frame": 23, "at": 5586.302417137329 }, { "type": "C", "frame": 22, "at": 5586.302417137329 }, { "type": "C", "frame": 21, "at": 5586.302417137329 }, { "type": "O", "frame": 17, "at": 5586.302417137329 }, { "type": "O", "frame": 18, "at": 5586.302417137329 }, { "type": "C", "frame": 18, "at": 5591.926124771301 }, { "type": "C", "frame": 17, "at": 5591.926124771301 }, { "type": "O", "frame": 19, "at": 5591.926125 }, { "type": "O", "frame": 18, "at": 5591.926125 }, { "type": "C", "frame": 18, "at": 5593.258833954811 }, { "type": "C", "frame": 19, "at": 5593.258833954811 }, { "type": "C", "frame": 16, "at": 5593.258834221069 }, { "type": "C", "frame": 15, "at": 5593.258834221069 }, { "type": "C", "frame": 14, "at": 5593.258834221069 }, { "type": "C", "frame": 13, "at": 5593.258834221069 }, { "type": "C", "frame": 12, "at": 5593.258834221069 }, { "type": "C", "frame": 11, "at": 5593.258834221069 }, { "type": "C", "frame": 10, "at": 5593.258834221069 }, { "type": "C", "frame": 9, "at": 5593.258834221069 }, { "type": "C", "frame": 8, "at": 5593.258834221069 }, { "type": "C", "frame": 7, "at": 5593.258834221069 }, { "type": "C", "frame": 6, "at": 5593.258834221069 }, { "type": "O", "frame": 20, "at": 5593.258834221069 }, { "type": "O", "frame": 8, "at": 5593.258834221069 }, { "type": "O", "frame": 9, "at": 5593.258834221069 }, { "type": "O", "frame": 10, "at": 5593.258834221069 }, { "type": "O", "frame": 11, "at": 5593.258834221069 }, { "type": "O", "frame": 12, "at": 5593.258834221069 }, { "type": "O", "frame": 13, "at": 5593.258834221069 }, { "type": "O", "frame": 14, "at": 5593.258834221069 }, { "type": "O", "frame": 15, "at": 5593.258834221069 }, { "type": "O", "frame": 16, "at": 5593.258834221069 }, { "type": "O", "frame": 21, "at": 5593.258834221069 }, { "type": "O", "frame": 22, "at": 5593.258834221069 }, { "type": "O", "frame": 23, "at": 5593.258834221069 }, { "type": "O", "frame": 24, "at": 5593.258834221069 }, { "type": "O", "frame": 18, "at": 5593.258834221069 }, { "type": "C", "frame": 18, "at": 5602.682709808716 }, { "type": "C", "frame": 24, "at": 5602.682709808716 }, { "type": "C", "frame": 23, "at": 5602.682709808716 }, { "type": "C", "frame": 22, "at": 5602.682709808716 }, { "type": "C", "frame": 21, "at": 5602.682709808716 }, { "type": "O", "frame": 17, "at": 5602.682709808716 }, { "type": "O", "frame": 18, "at": 5602.682709808716 }, { "type": "C", "frame": 18, "at": 5608.18887545813 }, { "type": "C", "frame": 17, "at": 5608.18887545813 }, { "type": "O", "frame": 19, "at": 5608.18887545813 }, { "type": "O", "frame": 18, "at": 5608.18887545813 }, { "type": "C", "frame": 18, "at": 5616.361042778015 }, { "type": "C", "frame": 19, "at": 5616.361042778015 }, { "type": "C", "frame": 16, "at": 5616.361043091187 }, { "type": "C", "frame": 15, "at": 5616.361043091187 }, { "type": "C", "frame": 14, "at": 5616.361043091187 }, { "type": "C", "frame": 13, "at": 5616.361043091187 }, { "type": "C", "frame": 12, "at": 5616.361043091187 }, { "type": "C", "frame": 11, "at": 5616.361043091187 }, { "type": "C", "frame": 10, "at": 5616.361043091187 }, { "type": "C", "frame": 9, "at": 5616.361043091187 }, { "type": "C", "frame": 8, "at": 5616.361043091187 }, { "type": "C", "frame": 20, "at": 5616.361043091187 }, { "type": "O", "frame": 6, "at": 5616.361043091187 }, { "type": "O", "frame": 7, "at": 5616.361043091187 }, { "type": "O", "frame": 8, "at": 5616.361043091187 }, { "type": "O", "frame": 9, "at": 5616.361043091187 }, { "type": "O", "frame": 10, "at": 5616.361043091187 }, { "type": "O", "frame": 11, "at": 5616.361043091187 }, { "type": "O", "frame": 12, "at": 5616.361043091187 }, { "type": "O", "frame": 13, "at": 5616.361043091187 }, { "type": "O", "frame": 14, "at": 5616.361043091187 }, { "type": "O", "frame": 15, "at": 5616.361043091187 }, { "type": "O", "frame": 16, "at": 5616.361043091187 }, { "type": "O", "frame": 21, "at": 5616.361043091187 }, { "type": "O", "frame": 22, "at": 5616.361043091187 }, { "type": "O", "frame": 23, "at": 5616.361043091187 }, { "type": "O", "frame": 24, "at": 5616.361043091187 }, { "type": "O", "frame": 18, "at": 5616.361043091187 }, { "type": "C", "frame": 18, "at": 5619.127874828522 }, { "type": "C", "frame": 24, "at": 5619.127874828522 }, { "type": "O", "frame": 25, "at": 5619.127875 }, { "type": "O", "frame": 18, "at": 5619.127875 }, { "type": "C", "frame": 18, "at": 5620.481084018707 }, { "type": "C", "frame": 25, "at": 5620.481084018707 }, { "type": "O", "frame": 24, "at": 5620.481084018707 }, { "type": "O", "frame": 18, "at": 5620.481084018707 }, { "type": "C", "frame": 18, "at": 5625.960750233063 }, { "type": "C", "frame": 24, "at": 5625.960750233063 }, { "type": "C", "frame": 23, "at": 5625.960750557129 }, { "type": "C", "frame": 22, "at": 5625.960750557129 }, { "type": "C", "frame": 21, "at": 5625.960750557129 }, { "type": "O", "frame": 17, "at": 5625.960750557129 }, { "type": "O", "frame": 18, "at": 5625.960750557129 }, { "type": "C", "frame": 18, "at": 5631.548666851044 }, { "type": "C", "frame": 17, "at": 5631.548666851044 }, { "type": "O", "frame": 19, "at": 5631.548667 }, { "type": "O", "frame": 18, "at": 5631.548667 }, { "type": "C", "frame": 18, "at": 5632.894416974251 }, { "type": "C", "frame": 19, "at": 5632.894416974251 }, { "type": "C", "frame": 16, "at": 5632.894416974251 }, { "type": "C", "frame": 15, "at": 5632.894416974251 }, { "type": "C", "frame": 14, "at": 5632.894416974251 }, { "type": "C", "frame": 13, "at": 5632.894416974251 }, { "type": "C", "frame": 12, "at": 5632.894416974251 }, { "type": "C", "frame": 11, "at": 5632.894416974251 }, { "type": "C", "frame": 10, "at": 5632.894416974251 }, { "type": "C", "frame": 9, "at": 5632.894416974251 }, { "type": "C", "frame": 8, "at": 5632.894416974251 }, { "type": "C", "frame": 7, "at": 5632.894416974251 }, { "type": "C", "frame": 6, "at": 5632.894416974251 }, { "type": "O", "frame": 20, "at": 5632.894417 }, { "type": "O", "frame": 8, "at": 5632.894417 }, { "type": "O", "frame": 9, "at": 5632.894417 }, { "type": "O", "frame": 10, "at": 5632.894417 }, { "type": "O", "frame": 11, "at": 5632.894417 }, { "type": "O", "frame": 12, "at": 5632.894417 }, { "type": "O", "frame": 13, "at": 5632.894417 }, { "type": "O", "frame": 14, "at": 5632.894417 }, { "type": "O", "frame": 15, "at": 5632.894417 }, { "type": "O", "frame": 16, "at": 5632.894417 }, { "type": "O", "frame": 21, "at": 5632.894417 }, { "type": "O", "frame": 22, "at": 5632.894417 }, { "type": "O", "frame": 23, "at": 5632.894417 }, { "type": "O", "frame": 24, "at": 5632.894417 }, { "type": "O", "frame": 18, "at": 5632.894417 }, { "type": "C", "frame": 18, "at": 5640.949459266846 }, { "type": "C", "frame": 24, "at": 5640.949459266846 }, { "type": "O", "frame": 28, "at": 5640.949459266846 }, { "type": "O", "frame": 18, "at": 5640.949459266846 }, { "type": "C", "frame": 18, "at": 5642.332667036423 }, { "type": "C", "frame": 28, "at": 5642.332667036423 }, { "type": "O", "frame": 24, "at": 5642.332667036423 }, { "type": "O", "frame": 18, "at": 5642.332667036423 }, { "type": "C", "frame": 18, "at": 5643.8187500307 }, { "type": "C", "frame": 24, "at": 5643.8187500307 }, { "type": "C", "frame": 23, "at": 5643.818750572388 }, { "type": "C", "frame": 22, "at": 5643.818750572388 }, { "type": "C", "frame": 21, "at": 5643.818750572388 }, { "type": "O", "frame": 17, "at": 5643.818750572388 }, { "type": "O", "frame": 18, "at": 5643.818750572388 }, { "type": "C", "frame": 18, "at": 5649.45000038147 }, { "type": "C", "frame": 17, "at": 5649.45000038147 }, { "type": "O", "frame": 19, "at": 5649.45000038147 }, { "type": "O", "frame": 18, "at": 5649.45000038147 }, { "type": "C", "frame": 18, "at": 5656.387208652496 }, { "type": "C", "frame": 19, "at": 5656.387208652496 }, { "type": "C", "frame": 16, "at": 5656.387211036866 }, { "type": "C", "frame": 15, "at": 5656.387211036866 }, { "type": "C", "frame": 14, "at": 5656.387211036866 }, { "type": "C", "frame": 13, "at": 5656.387211036866 }, { "type": "C", "frame": 12, "at": 5656.387211036866 }, { "type": "C", "frame": 11, "at": 5656.387211036866 }, { "type": "C", "frame": 10, "at": 5656.387211036866 }, { "type": "C", "frame": 9, "at": 5656.387211036866 }, { "type": "C", "frame": 8, "at": 5656.387211036866 }, { "type": "C", "frame": 20, "at": 5656.387211036866 }, { "type": "O", "frame": 6, "at": 5656.387211036866 }, { "type": "O", "frame": 7, "at": 5656.387211036866 }, { "type": "O", "frame": 8, "at": 5656.387211036866 }, { "type": "O", "frame": 9, "at": 5656.387211036866 }, { "type": "O", "frame": 10, "at": 5656.387211036866 }, { "type": "O", "frame": 11, "at": 5656.387211036866 }, { "type": "O", "frame": 12, "at": 5656.387211036866 }, { "type": "O", "frame": 13, "at": 5656.387211036866 }, { "type": "O", "frame": 14, "at": 5656.387211036866 }, { "type": "O", "frame": 15, "at": 5656.387211036866 }, { "type": "O", "frame": 16, "at": 5656.387211036866 }, { "type": "O", "frame": 21, "at": 5656.387211036866 }, { "type": "O", "frame": 22, "at": 5656.387211036866 }, { "type": "O", "frame": 23, "at": 5656.387211036866 }, { "type": "O", "frame": 24, "at": 5656.387211036866 }, { "type": "O", "frame": 18, "at": 5656.387211036866 }, { "type": "C", "frame": 18, "at": 5665.868624748597 }, { "type": "C", "frame": 24, "at": 5665.868624748597 }, { "type": "C", "frame": 23, "at": 5665.868624748597 }, { "type": "O", "frame": 42, "at": 5665.868625 }, { "type": "O", "frame": 18, "at": 5665.868625 }, { "type": "C", "frame": 18, "at": 5667.283083990097 }, { "type": "C", "frame": 42, "at": 5667.283083990097 }, { "type": "C", "frame": 22, "at": 5667.283083990097 }, { "type": "C", "frame": 21, "at": 5667.283083990097 }, { "type": "O", "frame": 17, "at": 5667.283084 }, { "type": "O", "frame": 18, "at": 5667.283084 }, { "type": "C", "frame": 18, "at": 5672.902624691375 }, { "type": "C", "frame": 17, "at": 5672.902624691375 }, { "type": "O", "frame": 19, "at": 5672.902625 }, { "type": "O", "frame": 18, "at": 5672.902625 }, { "type": "C", "frame": 18, "at": 5679.686499988556 }, { "type": "C", "frame": 19, "at": 5679.686499988556 }, { "type": "C", "frame": 16, "at": 5679.686500610718 }, { "type": "C", "frame": 15, "at": 5679.686500610718 }, { "type": "C", "frame": 14, "at": 5679.686500610718 }, { "type": "C", "frame": 13, "at": 5679.686500610718 }, { "type": "C", "frame": 12, "at": 5679.686500610718 }, { "type": "C", "frame": 11, "at": 5679.686500610718 }, { "type": "C", "frame": 10, "at": 5679.686500610718 }, { "type": "C", "frame": 9, "at": 5679.686500610718 }, { "type": "C", "frame": 8, "at": 5679.686500610718 }, { "type": "C", "frame": 7, "at": 5679.686500610718 }, { "type": "C", "frame": 6, "at": 5679.686500610718 }, { "type": "O", "frame": 20, "at": 5679.686500610718 }, { "type": "O", "frame": 8, "at": 5679.686500610718 }, { "type": "O", "frame": 9, "at": 5679.686500610718 }, { "type": "O", "frame": 10, "at": 5679.686500610718 }, { "type": "O", "frame": 11, "at": 5679.686500610718 }, { "type": "O", "frame": 12, "at": 5679.686500610718 }, { "type": "O", "frame": 13, "at": 5679.686500610718 }, { "type": "O", "frame": 14, "at": 5679.686500610718 }, { "type": "O", "frame": 15, "at": 5679.686500610718 }, { "type": "O", "frame": 16, "at": 5679.686500610718 }, { "type": "O", "frame": 21, "at": 5679.686500610718 }, { "type": "O", "frame": 22, "at": 5679.686500610718 }, { "type": "O", "frame": 23, "at": 5679.686500610718 }, { "type": "O", "frame": 24, "at": 5679.686500610718 }, { "type": "O", "frame": 18, "at": 5679.686500610718 }, { "type": "C", "frame": 18, "at": 5690.455167221069 }, { "type": "C", "frame": 24, "at": 5690.455167221069 }, { "type": "C", "frame": 23, "at": 5690.455167221069 }, { "type": "C", "frame": 22, "at": 5690.455167221069 }, { "type": "C", "frame": 21, "at": 5690.455167221069 }, { "type": "O", "frame": 17, "at": 5690.455167221069 }, { "type": "O", "frame": 18, "at": 5690.455167221069 }, { "type": "C", "frame": 18, "at": 5696.164875213806 }, { "type": "C", "frame": 17, "at": 5696.164875213806 }, { "type": "C", "frame": 16, "at": 5696.16487638855 }, { "type": "C", "frame": 15, "at": 5696.16487638855 }, { "type": "C", "frame": 14, "at": 5696.16487638855 }, { "type": "C", "frame": 13, "at": 5696.16487638855 }, { "type": "C", "frame": 12, "at": 5696.16487638855 }, { "type": "C", "frame": 11, "at": 5696.16487638855 }, { "type": "C", "frame": 10, "at": 5696.16487638855 }, { "type": "C", "frame": 9, "at": 5696.16487638855 }, { "type": "C", "frame": 8, "at": 5696.16487638855 }, { "type": "O", "frame": 18, "at": 5696.16487638855 }, { "type": "C", "frame": 18, "at": 5697.537458985329 }, { "type": "C", "frame": 20, "at": 5697.537459777832 }, { "type": "O", "frame": 6, "at": 5697.537459777832 }, { "type": "O", "frame": 7, "at": 5697.537459777832 }, { "type": "O", "frame": 8, "at": 5697.537459777832 }, { "type": "O", "frame": 9, "at": 5697.537459777832 }, { "type": "O", "frame": 10, "at": 5697.537459777832 }, { "type": "O", "frame": 11, "at": 5697.537459777832 }, { "type": "O", "frame": 12, "at": 5697.537459777832 }, { "type": "O", "frame": 13, "at": 5697.537459777832 }, { "type": "O", "frame": 14, "at": 5697.537459777832 }, { "type": "O", "frame": 15, "at": 5697.537459777832 }, { "type": "O", "frame": 16, "at": 5697.537459777832 }, { "type": "O", "frame": 21, "at": 5697.537459777832 }, { "type": "O", "frame": 22, "at": 5697.537459777832 }, { "type": "O", "frame": 23, "at": 5697.537459777832 }, { "type": "O", "frame": 24, "at": 5697.537459777832 }, { "type": "O", "frame": 18, "at": 5697.537459777832 }, { "type": "C", "frame": 18, "at": 5702.922916992554 }, { "type": "C", "frame": 24, "at": 5702.922916992554 }, { "type": "O", "frame": 31, "at": 5702.922917 }, { "type": "O", "frame": 18, "at": 5702.922917 }, { "type": "C", "frame": 18, "at": 5704.281417003815 }, { "type": "C", "frame": 31, "at": 5704.281417003815 }, { "type": "O", "frame": 24, "at": 5704.281417003815 }, { "type": "O", "frame": 18, "at": 5704.281417003815 }, { "type": "C", "frame": 18, "at": 5707.022708999817 }, { "type": "C", "frame": 24, "at": 5707.022708999817 }, { "type": "C", "frame": 23, "at": 5707.022709473023 }, { "type": "C", "frame": 22, "at": 5707.022709473023 }, { "type": "C", "frame": 21, "at": 5707.022709473023 }, { "type": "O", "frame": 17, "at": 5707.022709473023 }, { "type": "O", "frame": 18, "at": 5707.022709473023 }, { "type": "C", "frame": 18, "at": 5712.637333977112 }, { "type": "C", "frame": 17, "at": 5712.637333977112 }, { "type": "O", "frame": 19, "at": 5712.637334 }, { "type": "O", "frame": 18, "at": 5712.637334 }, { "type": "C", "frame": 18, "at": 5719.3514167178955 }, { "type": "C", "frame": 19, "at": 5719.3514167178955 }, { "type": "C", "frame": 16, "at": 5719.351418121704 }, { "type": "C", "frame": 15, "at": 5719.351418121704 }, { "type": "C", "frame": 14, "at": 5719.351418121704 }, { "type": "C", "frame": 13, "at": 5719.351418121704 }, { "type": "C", "frame": 12, "at": 5719.351418121704 }, { "type": "C", "frame": 11, "at": 5719.351418121704 }, { "type": "C", "frame": 10, "at": 5719.351418121704 }, { "type": "C", "frame": 9, "at": 5719.351418121704 }, { "type": "C", "frame": 8, "at": 5719.351418121704 }, { "type": "C", "frame": 7, "at": 5719.351418121704 }, { "type": "C", "frame": 6, "at": 5719.351418121704 }, { "type": "O", "frame": 20, "at": 5719.351418121704 }, { "type": "O", "frame": 8, "at": 5719.351418121704 }, { "type": "O", "frame": 9, "at": 5719.351418121704 }, { "type": "O", "frame": 10, "at": 5719.351418121704 }, { "type": "O", "frame": 11, "at": 5719.351418121704 }, { "type": "O", "frame": 12, "at": 5719.351418121704 }, { "type": "O", "frame": 13, "at": 5719.351418121704 }, { "type": "O", "frame": 14, "at": 5719.351418121704 }, { "type": "O", "frame": 15, "at": 5719.351418121704 }, { "type": "O", "frame": 16, "at": 5719.351418121704 }, { "type": "O", "frame": 21, "at": 5719.351418121704 }, { "type": "O", "frame": 22, "at": 5719.351418121704 }, { "type": "O", "frame": 23, "at": 5719.351418121704 }, { "type": "O", "frame": 24, "at": 5719.351418121704 }, { "type": "O", "frame": 18, "at": 5719.351418121704 }, { "type": "C", "frame": 18, "at": 5720.688208992187 }, { "type": "C", "frame": 24, "at": 5720.688208992187 }, { "type": "O", "frame": 28, "at": 5720.688209 }, { "type": "O", "frame": 18, "at": 5720.688209 }, { "type": "C", "frame": 18, "at": 5722.022499981293 }, { "type": "C", "frame": 28, "at": 5722.022499981293 }, { "type": "O", "frame": 24, "at": 5722.0225 }, { "type": "O", "frame": 18, "at": 5722.0225 }, { "type": "C", "frame": 18, "at": 5728.763083896637 }, { "type": "C", "frame": 24, "at": 5728.763083896637 }, { "type": "C", "frame": 23, "at": 5728.763083896637 }, { "type": "C", "frame": 22, "at": 5728.763083896637 }, { "type": "C", "frame": 21, "at": 5728.763083896637 }, { "type": "O", "frame": 17, "at": 5728.763084 }, { "type": "O", "frame": 18, "at": 5728.763084 }, { "type": "C", "frame": 18, "at": 5734.271833961853 }, { "type": "C", "frame": 17, "at": 5734.271833961853 }, { "type": "O", "frame": 19, "at": 5734.271834 }, { "type": "O", "frame": 18, "at": 5734.271834 }, { "type": "C", "frame": 18, "at": 5741.135083778748 }, { "type": "C", "frame": 19, "at": 5741.135083778748 }, { "type": "C", "frame": 16, "at": 5741.135083778748 }, { "type": "C", "frame": 15, "at": 5741.135083778748 }, { "type": "C", "frame": 14, "at": 5741.135083778748 }, { "type": "C", "frame": 13, "at": 5741.135083778748 }, { "type": "C", "frame": 12, "at": 5741.135083778748 }, { "type": "C", "frame": 11, "at": 5741.135083778748 }, { "type": "C", "frame": 10, "at": 5741.135083778748 }, { "type": "C", "frame": 9, "at": 5741.135083778748 }, { "type": "C", "frame": 8, "at": 5741.135083778748 }, { "type": "C", "frame": 20, "at": 5741.135083778748 }, { "type": "O", "frame": 6, "at": 5741.135084 }, { "type": "O", "frame": 7, "at": 5741.135084 }, { "type": "O", "frame": 8, "at": 5741.135084 }, { "type": "O", "frame": 9, "at": 5741.135084 }, { "type": "O", "frame": 10, "at": 5741.135084 }, { "type": "O", "frame": 11, "at": 5741.135084 }, { "type": "O", "frame": 12, "at": 5741.135084 }, { "type": "O", "frame": 13, "at": 5741.135084 }, { "type": "O", "frame": 14, "at": 5741.135084 }, { "type": "O", "frame": 15, "at": 5741.135084 }, { "type": "O", "frame": 16, "at": 5741.135084 }, { "type": "O", "frame": 21, "at": 5741.135084 }, { "type": "O", "frame": 22, "at": 5741.135084 }, { "type": "O", "frame": 23, "at": 5741.135084 }, { "type": "O", "frame": 24, "at": 5741.135084 }, { "type": "O", "frame": 18, "at": 5741.135084 }, { "type": "C", "frame": 18, "at": 5750.606459465393 }, { "type": "C", "frame": 24, "at": 5750.606459465393 }, { "type": "C", "frame": 23, "at": 5750.606459465393 }, { "type": "C", "frame": 22, "at": 5750.606459465393 }, { "type": "C", "frame": 21, "at": 5750.606459465393 }, { "type": "O", "frame": 17, "at": 5750.606459465393 }, { "type": "O", "frame": 18, "at": 5750.606459465393 }, { "type": "C", "frame": 18, "at": 5757.616542198547 }, { "type": "C", "frame": 17, "at": 5757.616542198547 }, { "type": "C", "frame": 16, "at": 5757.61654266394 }, { "type": "C", "frame": 15, "at": 5757.61654266394 }, { "type": "C", "frame": 14, "at": 5757.61654266394 }, { "type": "C", "frame": 13, "at": 5757.61654266394 }, { "type": "C", "frame": 12, "at": 5757.61654266394 }, { "type": "C", "frame": 11, "at": 5757.61654266394 }, { "type": "C", "frame": 10, "at": 5757.61654266394 }, { "type": "C", "frame": 9, "at": 5757.61654266394 }, { "type": "C", "frame": 8, "at": 5757.61654266394 }, { "type": "C", "frame": 7, "at": 5757.61654266394 }, { "type": "C", "frame": 6, "at": 5757.61654266394 }, { "type": "O", "frame": 20, "at": 5757.61654266394 }, { "type": "O", "frame": 18, "at": 5757.61654266394 }, { "type": "C", "frame": 18, "at": 5758.975209016029 }, { "type": "O", "frame": 8, "at": 5758.975209016029 }, { "type": "O", "frame": 9, "at": 5758.975209016029 }, { "type": "O", "frame": 10, "at": 5758.975209016029 }, { "type": "O", "frame": 11, "at": 5758.975209016029 }, { "type": "O", "frame": 12, "at": 5758.975209016029 }, { "type": "O", "frame": 13, "at": 5758.975209016029 }, { "type": "O", "frame": 14, "at": 5758.975209016029 }, { "type": "O", "frame": 15, "at": 5758.975209016029 }, { "type": "O", "frame": 16, "at": 5758.975209016029 }, { "type": "O", "frame": 21, "at": 5758.975209016029 }, { "type": "O", "frame": 22, "at": 5758.975209016029 }, { "type": "O", "frame": 23, "at": 5758.975209016029 }, { "type": "O", "frame": 24, "at": 5758.975209016029 }, { "type": "O", "frame": 18, "at": 5758.975209016029 }, { "type": "C", "frame": 18, "at": 5760.321166994461 }, { "type": "C", "frame": 24, "at": 5760.321166994461 }, { "type": "O", "frame": 29, "at": 5760.321167 }, { "type": "O", "frame": 18, "at": 5760.321167 }, { "type": "C", "frame": 18, "at": 5761.66466701812 }, { "type": "C", "frame": 29, "at": 5761.66466701812 }, { "type": "O", "frame": 24, "at": 5761.66466701812 }, { "type": "O", "frame": 18, "at": 5761.66466701812 }, { "type": "C", "frame": 18, "at": 5768.398416866486 }, { "type": "C", "frame": 24, "at": 5768.398416866486 }, { "type": "C", "frame": 23, "at": 5768.3984172366945 }, { "type": "C", "frame": 22, "at": 5768.3984172366945 }, { "type": "C", "frame": 21, "at": 5768.3984172366945 }, { "type": "O", "frame": 17, "at": 5768.3984172366945 }, { "type": "O", "frame": 18, "at": 5768.3984172366945 }, { "type": "C", "frame": 18, "at": 5773.969916824524 }, { "type": "C", "frame": 17, "at": 5773.969916824524 }, { "type": "O", "frame": 19, "at": 5773.969917 }, { "type": "O", "frame": 18, "at": 5773.969917 }, { "type": "C", "frame": 18, "at": 5780.799042404358 }, { "type": "C", "frame": 19, "at": 5780.799042404358 }, { "type": "C", "frame": 16, "at": 5780.799042465576 }, { "type": "C", "frame": 15, "at": 5780.799042465576 }, { "type": "C", "frame": 14, "at": 5780.799042465576 }, { "type": "C", "frame": 13, "at": 5780.799042465576 }, { "type": "C", "frame": 12, "at": 5780.799042465576 }, { "type": "C", "frame": 11, "at": 5780.799042465576 }, { "type": "C", "frame": 10, "at": 5780.799042465576 }, { "type": "C", "frame": 9, "at": 5780.799042465576 }, { "type": "C", "frame": 8, "at": 5780.799042465576 }, { "type": "C", "frame": 20, "at": 5780.799042839233 }, { "type": "O", "frame": 6, "at": 5780.799042839233 }, { "type": "O", "frame": 7, "at": 5780.799042839233 }, { "type": "O", "frame": 8, "at": 5780.799042839233 }, { "type": "O", "frame": 9, "at": 5780.799042839233 }, { "type": "O", "frame": 10, "at": 5780.799042839233 }, { "type": "O", "frame": 11, "at": 5780.799042839233 }, { "type": "O", "frame": 12, "at": 5780.799042839233 }, { "type": "O", "frame": 13, "at": 5780.799042839233 }, { "type": "O", "frame": 14, "at": 5780.799042839233 }, { "type": "O", "frame": 15, "at": 5780.799042839233 }, { "type": "O", "frame": 16, "at": 5780.799042839233 }, { "type": "O", "frame": 21, "at": 5780.799042839233 }, { "type": "O", "frame": 22, "at": 5780.799042839233 }, { "type": "O", "frame": 23, "at": 5780.799042839233 }, { "type": "O", "frame": 24, "at": 5780.799042839233 }, { "type": "O", "frame": 18, "at": 5780.799042839233 }, { "type": "C", "frame": 18, "at": 5790.376583351318 }, { "type": "C", "frame": 24, "at": 5790.376583351318 }, { "type": "C", "frame": 23, "at": 5790.376583351318 }, { "type": "C", "frame": 22, "at": 5790.376583351318 }, { "type": "C", "frame": 21, "at": 5790.376583351318 }, { "type": "O", "frame": 17, "at": 5790.376584 }, { "type": "O", "frame": 18, "at": 5790.376584 }, { "type": "C", "frame": 18, "at": 5797.427624649414 }, { "type": "C", "frame": 17, "at": 5797.427624649414 }, { "type": "C", "frame": 16, "at": 5797.427625908081 }, { "type": "C", "frame": 15, "at": 5797.427625908081 }, { "type": "C", "frame": 14, "at": 5797.427625908081 }, { "type": "C", "frame": 13, "at": 5797.427625908081 }, { "type": "C", "frame": 12, "at": 5797.427625908081 }, { "type": "C", "frame": 11, "at": 5797.427625908081 }, { "type": "C", "frame": 10, "at": 5797.427625908081 }, { "type": "C", "frame": 9, "at": 5797.427625908081 }, { "type": "C", "frame": 8, "at": 5797.427625908081 }, { "type": "C", "frame": 7, "at": 5797.427625908081 }, { "type": "C", "frame": 6, "at": 5797.427625908081 }, { "type": "O", "frame": 20, "at": 5797.427625908081 }, { "type": "O", "frame": 8, "at": 5797.427625908081 }, { "type": "O", "frame": 9, "at": 5797.427625908081 }, { "type": "O", "frame": 10, "at": 5797.427625908081 }, { "type": "O", "frame": 11, "at": 5797.427625908081 }, { "type": "O", "frame": 12, "at": 5797.427625908081 }, { "type": "O", "frame": 13, "at": 5797.427625908081 }, { "type": "O", "frame": 14, "at": 5797.427625908081 }, { "type": "O", "frame": 15, "at": 5797.427625908081 }, { "type": "O", "frame": 16, "at": 5797.427625908081 }, { "type": "O", "frame": 21, "at": 5797.427625908081 }, { "type": "O", "frame": 22, "at": 5797.427625908081 }, { "type": "O", "frame": 23, "at": 5797.427625908081 }, { "type": "O", "frame": 24, "at": 5797.427625908081 }, { "type": "O", "frame": 18, "at": 5797.427625908081 }, { "type": "C", "frame": 18, "at": 5803.252709209442 }, { "type": "C", "frame": 24, "at": 5803.252709209442 }, { "type": "O", "frame": 31, "at": 5803.252709209442 }, { "type": "O", "frame": 18, "at": 5803.252709209442 }, { "type": "C", "frame": 18, "at": 5804.648833958992 }, { "type": "C", "frame": 31, "at": 5804.648833958992 }, { "type": "O", "frame": 24, "at": 5804.648834 }, { "type": "O", "frame": 18, "at": 5804.648834 }, { "type": "C", "frame": 18, "at": 5808.258584032425 }, { "type": "C", "frame": 24, "at": 5808.258584032425 }, { "type": "C", "frame": 23, "at": 5808.258584320069 }, { "type": "C", "frame": 22, "at": 5808.258584320069 }, { "type": "C", "frame": 21, "at": 5808.258584320069 }, { "type": "O", "frame": 17, "at": 5808.258584320069 }, { "type": "O", "frame": 18, "at": 5808.258584320069 }, { "type": "C", "frame": 18, "at": 5814.626917339691 }, { "type": "C", "frame": 17, "at": 5814.626917339691 }, { "type": "O", "frame": 19, "at": 5814.626917339691 }, { "type": "O", "frame": 18, "at": 5814.626917339691 }, { "type": "C", "frame": 18, "at": 5821.370041961853 }, { "type": "C", "frame": 19, "at": 5821.370041961853 }, { "type": "C", "frame": 16, "at": 5821.370044052124 }, { "type": "C", "frame": 15, "at": 5821.370044052124 }, { "type": "C", "frame": 14, "at": 5821.370044052124 }, { "type": "C", "frame": 13, "at": 5821.370044052124 }, { "type": "C", "frame": 12, "at": 5821.370044052124 }, { "type": "C", "frame": 11, "at": 5821.370044052124 }, { "type": "C", "frame": 10, "at": 5821.370044052124 }, { "type": "C", "frame": 9, "at": 5821.370044052124 }, { "type": "C", "frame": 8, "at": 5821.370044052124 }, { "type": "C", "frame": 20, "at": 5821.370044052124 }, { "type": "O", "frame": 6, "at": 5821.370044052124 }, { "type": "O", "frame": 7, "at": 5821.370044052124 }, { "type": "O", "frame": 8, "at": 5821.370044052124 }, { "type": "O", "frame": 9, "at": 5821.370044052124 }, { "type": "O", "frame": 10, "at": 5821.370044052124 }, { "type": "O", "frame": 11, "at": 5821.370044052124 }, { "type": "O", "frame": 12, "at": 5821.370044052124 }, { "type": "O", "frame": 13, "at": 5821.370044052124 }, { "type": "O", "frame": 14, "at": 5821.370044052124 }, { "type": "O", "frame": 15, "at": 5821.370044052124 }, { "type": "O", "frame": 16, "at": 5821.370044052124 }, { "type": "O", "frame": 21, "at": 5821.370044052124 }, { "type": "O", "frame": 22, "at": 5821.370044052124 }, { "type": "O", "frame": 23, "at": 5821.370044052124 }, { "type": "O", "frame": 25, "at": 5821.370044052124 }, { "type": "O", "frame": 18, "at": 5821.370044052124 }, { "type": "C", "frame": 18, "at": 5822.7330420352855 }, { "type": "C", "frame": 25, "at": 5822.7330420352855 }, { "type": "O", "frame": 24, "at": 5822.7330420352855 }, { "type": "O", "frame": 18, "at": 5822.7330420352855 }, { "type": "C", "frame": 18, "at": 5825.428874967758 }, { "type": "C", "frame": 24, "at": 5825.428874967758 }, { "type": "O", "frame": 29, "at": 5825.428875 }, { "type": "O", "frame": 18, "at": 5825.428875 }, { "type": "C", "frame": 18, "at": 5826.763834030151 }, { "type": "C", "frame": 29, "at": 5826.763834030151 }, { "type": "O", "frame": 24, "at": 5826.763834030151 }, { "type": "O", "frame": 18, "at": 5826.763834030151 }, { "type": "C", "frame": 18, "at": 5830.847874641785 }, { "type": "C", "frame": 24, "at": 5830.847874641785 }, { "type": "O", "frame": 25, "at": 5830.847875 }, { "type": "O", "frame": 18, "at": 5830.847875 }, { "type": "C", "frame": 18, "at": 5832.203416944504 }, { "type": "C", "frame": 25, "at": 5832.203416944504 }, { "type": "C", "frame": 23, "at": 5832.203416977111 }, { "type": "C", "frame": 22, "at": 5832.203416977111 }, { "type": "C", "frame": 21, "at": 5832.203416977111 }, { "type": "O", "frame": 17, "at": 5832.203417 }, { "type": "O", "frame": 18, "at": 5832.203417 }, { "type": "C", "frame": 18, "at": 5836.302000221435 }, { "type": "C", "frame": 17, "at": 5836.302000221435 }, { "type": "O", "frame": 19, "at": 5836.302000221435 }, { "type": "O", "frame": 18, "at": 5836.302000221435 }, { "type": "C", "frame": 18, "at": 5846.056959106445 }, { "type": "C", "frame": 19, "at": 5846.056959106445 }, { "type": "C", "frame": 16, "at": 5846.056959106445 }, { "type": "C", "frame": 15, "at": 5846.056959106445 }, { "type": "C", "frame": 14, "at": 5846.056959106445 }, { "type": "C", "frame": 13, "at": 5846.056959106445 }, { "type": "C", "frame": 12, "at": 5846.056959106445 }, { "type": "C", "frame": 11, "at": 5846.056959106445 }, { "type": "C", "frame": 10, "at": 5846.056959106445 }, { "type": "C", "frame": 9, "at": 5846.056959106445 }, { "type": "C", "frame": 8, "at": 5846.056959106445 }, { "type": "C", "frame": 7, "at": 5846.056959106445 }, { "type": "C", "frame": 6, "at": 5846.056959106445 }, { "type": "O", "frame": 20, "at": 5846.056959106445 }, { "type": "O", "frame": 8, "at": 5846.056959106445 }, { "type": "O", "frame": 9, "at": 5846.056959106445 }, { "type": "O", "frame": 10, "at": 5846.056959106445 }, { "type": "O", "frame": 11, "at": 5846.056959106445 }, { "type": "O", "frame": 12, "at": 5846.056959106445 }, { "type": "O", "frame": 13, "at": 5846.056959106445 }, { "type": "O", "frame": 14, "at": 5846.056959106445 }, { "type": "O", "frame": 15, "at": 5846.056959106445 }, { "type": "O", "frame": 16, "at": 5846.056959106445 }, { "type": "O", "frame": 21, "at": 5846.056959106445 }, { "type": "O", "frame": 22, "at": 5846.056959106445 }, { "type": "O", "frame": 23, "at": 5846.056959106445 }, { "type": "O", "frame": 24, "at": 5846.056959106445 }, { "type": "O", "frame": 18, "at": 5846.056959106445 }, { "type": "C", "frame": 18, "at": 5855.571166839965 }, { "type": "C", "frame": 24, "at": 5855.571166839965 }, { "type": "C", "frame": 23, "at": 5855.571166839965 }, { "type": "C", "frame": 22, "at": 5855.571166839965 }, { "type": "C", "frame": 21, "at": 5855.571166839965 }, { "type": "O", "frame": 17, "at": 5855.571167 }, { "type": "O", "frame": 18, "at": 5855.571167 }, { "type": "C", "frame": 18, "at": 5862.740875251953 }, { "type": "C", "frame": 17, "at": 5862.740875251953 }, { "type": "C", "frame": 16, "at": 5862.740875251953 }, { "type": "C", "frame": 15, "at": 5862.740875251953 }, { "type": "C", "frame": 14, "at": 5862.740875251953 }, { "type": "C", "frame": 13, "at": 5862.740875251953 }, { "type": "C", "frame": 12, "at": 5862.740875251953 }, { "type": "C", "frame": 11, "at": 5862.740875251953 }, { "type": "C", "frame": 10, "at": 5862.740875251953 }, { "type": "C", "frame": 9, "at": 5862.740875251953 }, { "type": "C", "frame": 8, "at": 5862.740875251953 }, { "type": "C", "frame": 20, "at": 5862.740875251953 }, { "type": "O", "frame": 6, "at": 5862.740875251953 }, { "type": "O", "frame": 7, "at": 5862.740875251953 }, { "type": "O", "frame": 8, "at": 5862.740875251953 }, { "type": "O", "frame": 9, "at": 5862.740875251953 }, { "type": "O", "frame": 10, "at": 5862.740875251953 }, { "type": "O", "frame": 11, "at": 5862.740875251953 }, { "type": "O", "frame": 12, "at": 5862.740875251953 }, { "type": "O", "frame": 13, "at": 5862.740875251953 }, { "type": "O", "frame": 14, "at": 5862.740875251953 }, { "type": "O", "frame": 15, "at": 5862.740875251953 }, { "type": "O", "frame": 16, "at": 5862.740875251953 }, { "type": "O", "frame": 18, "at": 5862.740875251953 }, { "type": "C", "frame": 18, "at": 5864.094833964348 }, { "type": "O", "frame": 21, "at": 5864.094834 }, { "type": "O", "frame": 22, "at": 5864.094834 }, { "type": "O", "frame": 23, "at": 5864.094834 }, { "type": "O", "frame": 24, "at": 5864.094834 }, { "type": "O", "frame": 18, "at": 5864.094834 }, { "type": "C", "frame": 18, "at": 5872.277708679566 }, { "type": "C", "frame": 24, "at": 5872.277708679566 }, { "type": "O", "frame": 38, "at": 5872.277709 }, { "type": "O", "frame": 18, "at": 5872.277709 }, { "type": "C", "frame": 18, "at": 5873.642416946777 }, { "type": "C", "frame": 38, "at": 5873.642416946777 }, { "type": "C", "frame": 23, "at": 5873.642416946777 }, { "type": "C", "frame": 22, "at": 5873.642416946777 }, { "type": "C", "frame": 21, "at": 5873.642416946777 }, { "type": "O", "frame": 17, "at": 5873.642417 }, { "type": "O", "frame": 18, "at": 5873.642417 }, { "type": "C", "frame": 18, "at": 5879.217499778931 }, { "type": "C", "frame": 17, "at": 5879.217499778931 }, { "type": "O", "frame": 19, "at": 5879.2175 }, { "type": "O", "frame": 18, "at": 5879.2175 }, { "type": "C", "frame": 18, "at": 5887.368708877563 }, { "type": "C", "frame": 19, "at": 5887.368708877563 }, { "type": "C", "frame": 16, "at": 5887.368711227417 }, { "type": "C", "frame": 15, "at": 5887.368711227417 }, { "type": "C", "frame": 14, "at": 5887.368711227417 }, { "type": "C", "frame": 13, "at": 5887.368711227417 }, { "type": "C", "frame": 12, "at": 5887.368711227417 }, { "type": "C", "frame": 11, "at": 5887.368711227417 }, { "type": "C", "frame": 10, "at": 5887.368711227417 }, { "type": "C", "frame": 9, "at": 5887.368711227417 }, { "type": "C", "frame": 8, "at": 5887.368711227417 }, { "type": "C", "frame": 7, "at": 5887.368711227417 }, { "type": "C", "frame": 6, "at": 5887.368711227417 }, { "type": "O", "frame": 20, "at": 5887.368711227417 }, { "type": "O", "frame": 8, "at": 5887.368711227417 }, { "type": "O", "frame": 9, "at": 5887.368711227417 }, { "type": "O", "frame": 10, "at": 5887.368711227417 }, { "type": "O", "frame": 11, "at": 5887.368711227417 }, { "type": "O", "frame": 12, "at": 5887.368711227417 }, { "type": "O", "frame": 13, "at": 5887.368711227417 }, { "type": "O", "frame": 14, "at": 5887.368711227417 }, { "type": "O", "frame": 15, "at": 5887.368711227417 }, { "type": "O", "frame": 16, "at": 5887.368711227417 }, { "type": "O", "frame": 21, "at": 5887.368711227417 }, { "type": "O", "frame": 22, "at": 5887.368711227417 }, { "type": "O", "frame": 23, "at": 5887.368711227417 }, { "type": "O", "frame": 24, "at": 5887.368711227417 }, { "type": "O", "frame": 18, "at": 5887.368711227417 }, { "type": "C", "frame": 18, "at": 5896.855374725708 }, { "type": "C", "frame": 24, "at": 5896.855374725708 }, { "type": "C", "frame": 23, "at": 5896.855374725708 }, { "type": "C", "frame": 22, "at": 5896.855374725708 }, { "type": "C", "frame": 21, "at": 5896.855374725708 }, { "type": "O", "frame": 17, "at": 5896.855375 }, { "type": "O", "frame": 18, "at": 5896.855375 }, { "type": "C", "frame": 18, "at": 5902.587084003449 }, { "type": "C", "frame": 17, "at": 5902.587084003449 }, { "type": "O", "frame": 19, "at": 5902.587084003449 }, { "type": "O", "frame": 18, "at": 5902.587084003449 }, { "type": "C", "frame": 18, "at": 5903.935291950592 }, { "type": "C", "frame": 19, "at": 5903.935291950592 }, { "type": "C", "frame": 16, "at": 5903.935291950592 }, { "type": "C", "frame": 15, "at": 5903.935291950592 }, { "type": "C", "frame": 14, "at": 5903.935291950592 }, { "type": "C", "frame": 13, "at": 5903.935291950592 }, { "type": "C", "frame": 12, "at": 5903.935291950592 }, { "type": "C", "frame": 11, "at": 5903.935291950592 }, { "type": "C", "frame": 10, "at": 5903.935291950592 }, { "type": "C", "frame": 9, "at": 5903.935291950592 }, { "type": "C", "frame": 8, "at": 5903.935291950592 }, { "type": "C", "frame": 20, "at": 5903.935291950592 }, { "type": "O", "frame": 6, "at": 5903.935292 }, { "type": "O", "frame": 7, "at": 5903.935292 }, { "type": "O", "frame": 8, "at": 5903.935292 }, { "type": "O", "frame": 9, "at": 5903.935292 }, { "type": "O", "frame": 10, "at": 5903.935292 }, { "type": "O", "frame": 11, "at": 5903.935292 }, { "type": "O", "frame": 12, "at": 5903.935292 }, { "type": "O", "frame": 13, "at": 5903.935292 }, { "type": "O", "frame": 14, "at": 5903.935292 }, { "type": "O", "frame": 15, "at": 5903.935292 }, { "type": "O", "frame": 16, "at": 5903.935292 }, { "type": "O", "frame": 21, "at": 5903.935292 }, { "type": "O", "frame": 22, "at": 5903.935292 }, { "type": "O", "frame": 23, "at": 5903.935292 }, { "type": "O", "frame": 24, "at": 5903.935292 }, { "type": "O", "frame": 18, "at": 5903.935292 }, { "type": "C", "frame": 18, "at": 5905.274333948319 }, { "type": "C", "frame": 24, "at": 5905.274333948319 }, { "type": "O", "frame": 26, "at": 5905.274334 }, { "type": "O", "frame": 18, "at": 5905.274334 }, { "type": "C", "frame": 18, "at": 5906.61575000132 }, { "type": "C", "frame": 26, "at": 5906.61575000132 }, { "type": "O", "frame": 24, "at": 5906.61575000132 }, { "type": "O", "frame": 18, "at": 5906.61575000132 }, { "type": "C", "frame": 18, "at": 5914.673416778564 }, { "type": "C", "frame": 24, "at": 5914.673416778564 }, { "type": "C", "frame": 23, "at": 5914.6734178010865 }, { "type": "C", "frame": 22, "at": 5914.6734178010865 }, { "type": "C", "frame": 21, "at": 5914.6734178010865 }, { "type": "O", "frame": 17, "at": 5914.6734178010865 }, { "type": "O", "frame": 18, "at": 5914.6734178010865 }, { "type": "C", "frame": 18, "at": 5920.092416671936 }, { "type": "C", "frame": 17, "at": 5920.092416671936 }, { "type": "O", "frame": 19, "at": 5920.092417 }, { "type": "O", "frame": 18, "at": 5920.092417 }, { "type": "C", "frame": 18, "at": 5926.76608395404 }, { "type": "C", "frame": 19, "at": 5926.76608395404 }, { "type": "C", "frame": 16, "at": 5926.766085380737 }, { "type": "C", "frame": 15, "at": 5926.766085380737 }, { "type": "C", "frame": 14, "at": 5926.766085380737 }, { "type": "C", "frame": 13, "at": 5926.766085380737 }, { "type": "C", "frame": 12, "at": 5926.766085380737 }, { "type": "C", "frame": 11, "at": 5926.766085380737 }, { "type": "C", "frame": 10, "at": 5926.766085380737 }, { "type": "C", "frame": 9, "at": 5926.766085380737 }, { "type": "C", "frame": 8, "at": 5926.766085380737 }, { "type": "C", "frame": 7, "at": 5926.766085380737 }, { "type": "C", "frame": 6, "at": 5926.766085380737 }, { "type": "O", "frame": 20, "at": 5926.766085380737 }, { "type": "O", "frame": 8, "at": 5926.766085380737 }, { "type": "O", "frame": 9, "at": 5926.766085380737 }, { "type": "O", "frame": 10, "at": 5926.766085380737 }, { "type": "O", "frame": 11, "at": 5926.766085380737 }, { "type": "O", "frame": 12, "at": 5926.766085380737 }, { "type": "O", "frame": 13, "at": 5926.766085380737 }, { "type": "O", "frame": 14, "at": 5926.766085380737 }, { "type": "O", "frame": 15, "at": 5926.766085380737 }, { "type": "O", "frame": 16, "at": 5926.766085380737 }, { "type": "O", "frame": 21, "at": 5926.766085380737 }, { "type": "O", "frame": 22, "at": 5926.766085380737 }, { "type": "O", "frame": 23, "at": 5926.766085380737 }, { "type": "O", "frame": 24, "at": 5926.766085380737 }, { "type": "O", "frame": 18, "at": 5926.766085380737 }, { "type": "C", "frame": 18, "at": 5934.885750099548 }, { "type": "C", "frame": 24, "at": 5934.885750099548 }, { "type": "O", "frame": 31, "at": 5934.885750099548 }, { "type": "O", "frame": 18, "at": 5934.885750099548 }, { "type": "C", "frame": 18, "at": 5936.250374977112 }, { "type": "C", "frame": 31, "at": 5936.250374977112 }, { "type": "C", "frame": 23, "at": 5936.25037507666 }, { "type": "C", "frame": 22, "at": 5936.25037507666 }, { "type": "C", "frame": 21, "at": 5936.25037507666 }, { "type": "O", "frame": 17, "at": 5936.25037507666 }, { "type": "O", "frame": 18, "at": 5936.25037507666 }, { "type": "C", "frame": 18, "at": 5941.778292385101 }, { "type": "C", "frame": 17, "at": 5941.778292385101 }, { "type": "O", "frame": 19, "at": 5941.778292385101 }, { "type": "O", "frame": 18, "at": 5941.778292385101 }, { "type": "C", "frame": 18, "at": 5948.473875343506 }, { "type": "C", "frame": 19, "at": 5948.473875343506 }, { "type": "C", "frame": 16, "at": 5948.473876282104 }, { "type": "C", "frame": 15, "at": 5948.473876282104 }, { "type": "C", "frame": 14, "at": 5948.473876282104 }, { "type": "C", "frame": 13, "at": 5948.473876282104 }, { "type": "C", "frame": 12, "at": 5948.473876282104 }, { "type": "C", "frame": 11, "at": 5948.473876282104 }, { "type": "C", "frame": 10, "at": 5948.473876282104 }, { "type": "C", "frame": 9, "at": 5948.473876282104 }, { "type": "C", "frame": 8, "at": 5948.473876282104 }, { "type": "C", "frame": 20, "at": 5948.473876282104 }, { "type": "O", "frame": 6, "at": 5948.473876282104 }, { "type": "O", "frame": 7, "at": 5948.473876282104 }, { "type": "O", "frame": 8, "at": 5948.473876282104 }, { "type": "O", "frame": 9, "at": 5948.473876282104 }, { "type": "O", "frame": 10, "at": 5948.473876282104 }, { "type": "O", "frame": 11, "at": 5948.473876282104 }, { "type": "O", "frame": 12, "at": 5948.473876282104 }, { "type": "O", "frame": 13, "at": 5948.473876282104 }, { "type": "O", "frame": 14, "at": 5948.473876282104 }, { "type": "O", "frame": 15, "at": 5948.473876282104 }, { "type": "O", "frame": 16, "at": 5948.473876282104 }, { "type": "O", "frame": 21, "at": 5948.473876282104 }, { "type": "O", "frame": 22, "at": 5948.473876282104 }, { "type": "O", "frame": 23, "at": 5948.473876282104 }, { "type": "O", "frame": 31, "at": 5948.473876282104 }, { "type": "O", "frame": 18, "at": 5948.473876282104 }, { "type": "C", "frame": 18, "at": 5949.834124996185 }, { "type": "C", "frame": 31, "at": 5949.834124996185 }, { "type": "O", "frame": 24, "at": 5949.834125 }, { "type": "O", "frame": 18, "at": 5949.834125 }, { "type": "C", "frame": 18, "at": 5956.570749717713 }, { "type": "C", "frame": 24, "at": 5956.570749717713 }, { "type": "O", "frame": 26, "at": 5956.57075 }, { "type": "O", "frame": 18, "at": 5956.57075 }, { "type": "C", "frame": 18, "at": 5957.934999944687 }, { "type": "C", "frame": 26, "at": 5957.934999944687 }, { "type": "C", "frame": 23, "at": 5957.93500037384 }, { "type": "C", "frame": 22, "at": 5957.93500037384 }, { "type": "C", "frame": 21, "at": 5957.93500037384 }, { "type": "O", "frame": 17, "at": 5957.93500037384 }, { "type": "O", "frame": 18, "at": 5957.93500037384 }, { "type": "C", "frame": 18, "at": 5963.58474975586 }, { "type": "C", "frame": 17, "at": 5963.58474975586 }, { "type": "O", "frame": 19, "at": 5963.58475 }, { "type": "O", "frame": 18, "at": 5963.58475 }, { "type": "C", "frame": 18, "at": 5964.931750002861 }, { "type": "C", "frame": 19, "at": 5964.931750002861 }, { "type": "C", "frame": 16, "at": 5964.931750002861 }, { "type": "C", "frame": 15, "at": 5964.931750002861 }, { "type": "C", "frame": 14, "at": 5964.931750002861 }, { "type": "C", "frame": 13, "at": 5964.931750002861 }, { "type": "C", "frame": 12, "at": 5964.931750002861 }, { "type": "C", "frame": 11, "at": 5964.931750002861 }, { "type": "C", "frame": 10, "at": 5964.931750002861 }, { "type": "C", "frame": 9, "at": 5964.931750002861 }, { "type": "C", "frame": 8, "at": 5964.931750002861 }, { "type": "C", "frame": 7, "at": 5964.931750002861 }, { "type": "C", "frame": 6, "at": 5964.931750002861 }, { "type": "O", "frame": 20, "at": 5964.931750002861 }, { "type": "O", "frame": 8, "at": 5964.931750002861 }, { "type": "O", "frame": 9, "at": 5964.931750002861 }, { "type": "O", "frame": 10, "at": 5964.931750002861 }, { "type": "O", "frame": 11, "at": 5964.931750002861 }, { "type": "O", "frame": 12, "at": 5964.931750002861 }, { "type": "O", "frame": 13, "at": 5964.931750002861 }, { "type": "O", "frame": 14, "at": 5964.931750002861 }, { "type": "O", "frame": 15, "at": 5964.931750002861 }, { "type": "O", "frame": 16, "at": 5964.931750002861 }, { "type": "O", "frame": 21, "at": 5964.931750002861 }, { "type": "O", "frame": 22, "at": 5964.931750002861 }, { "type": "O", "frame": 23, "at": 5964.931750002861 }, { "type": "O", "frame": 24, "at": 5964.931750002861 }, { "type": "O", "frame": 18, "at": 5964.931750002861 }, { "type": "C", "frame": 18, "at": 5970.332291782379 }, { "type": "C", "frame": 24, "at": 5970.332291782379 }, { "type": "O", "frame": 29, "at": 5970.332292 }, { "type": "O", "frame": 18, "at": 5970.332292 }, { "type": "C", "frame": 18, "at": 5971.674209037964 }, { "type": "C", "frame": 29, "at": 5971.674209037964 }, { "type": "O", "frame": 24, "at": 5971.674209037964 }, { "type": "O", "frame": 18, "at": 5971.674209037964 }, { "type": "C", "frame": 18, "at": 5974.3742090476835 }, { "type": "C", "frame": 24, "at": 5974.3742090476835 }, { "type": "C", "frame": 23, "at": 5974.374209106445 }, { "type": "C", "frame": 22, "at": 5974.374209106445 }, { "type": "C", "frame": 21, "at": 5974.374209106445 }, { "type": "O", "frame": 17, "at": 5974.374209106445 }, { "type": "O", "frame": 18, "at": 5974.374209106445 }, { "type": "C", "frame": 18, "at": 5978.486917091735 }, { "type": "C", "frame": 17, "at": 5978.486917091735 }, { "type": "O", "frame": 19, "at": 5978.486917091735 }, { "type": "O", "frame": 18, "at": 5978.486917091735 }, { "type": "C", "frame": 18, "at": 5986.539667587464 }, { "type": "C", "frame": 19, "at": 5986.539667587464 }, { "type": "C", "frame": 16, "at": 5986.539667785644 }, { "type": "C", "frame": 15, "at": 5986.539667785644 }, { "type": "C", "frame": 14, "at": 5986.539667785644 }, { "type": "C", "frame": 13, "at": 5986.539667785644 }, { "type": "C", "frame": 12, "at": 5986.539667785644 }, { "type": "C", "frame": 11, "at": 5986.539667785644 }, { "type": "C", "frame": 10, "at": 5986.539667785644 }, { "type": "C", "frame": 9, "at": 5986.539667785644 }, { "type": "C", "frame": 8, "at": 5986.539667785644 }, { "type": "C", "frame": 20, "at": 5986.539667785644 }, { "type": "O", "frame": 6, "at": 5986.539667785644 }, { "type": "O", "frame": 7, "at": 5986.539667785644 }, { "type": "O", "frame": 8, "at": 5986.539667785644 }, { "type": "O", "frame": 9, "at": 5986.539667785644 }, { "type": "O", "frame": 10, "at": 5986.539667785644 }, { "type": "O", "frame": 11, "at": 5986.539667785644 }, { "type": "O", "frame": 12, "at": 5986.539667785644 }, { "type": "O", "frame": 13, "at": 5986.539667785644 }, { "type": "O", "frame": 14, "at": 5986.539667785644 }, { "type": "O", "frame": 15, "at": 5986.539667785644 }, { "type": "O", "frame": 16, "at": 5986.539667785644 }, { "type": "O", "frame": 21, "at": 5986.539667785644 }, { "type": "O", "frame": 22, "at": 5986.539667785644 }, { "type": "O", "frame": 23, "at": 5986.539667785644 }, { "type": "O", "frame": 24, "at": 5986.539667785644 }, { "type": "O", "frame": 18, "at": 5986.539667785644 }, { "type": "C", "frame": 18, "at": 5989.224042047684 }, { "type": "C", "frame": 24, "at": 5989.224042047684 }, { "type": "O", "frame": 29, "at": 5989.224042047684 }, { "type": "O", "frame": 18, "at": 5989.224042047684 }, { "type": "C", "frame": 18, "at": 5990.569624962036 }, { "type": "C", "frame": 29, "at": 5990.569624962036 }, { "type": "O", "frame": 24, "at": 5990.569625 }, { "type": "O", "frame": 18, "at": 5990.569625 }, { "type": "C", "frame": 18, "at": 5995.9726668396 }, { "type": "C", "frame": 24, "at": 5995.9726668396 }, { "type": "C", "frame": 23, "at": 5995.972667564575 }, { "type": "C", "frame": 22, "at": 5995.972667564575 }, { "type": "C", "frame": 21, "at": 5995.972667564575 }, { "type": "O", "frame": 17, "at": 5995.972667564575 }, { "type": "O", "frame": 18, "at": 5995.972667564575 }, { "type": "C", "frame": 18, "at": 6001.520917198364 }, { "type": "C", "frame": 17, "at": 6001.520917198364 }, { "type": "O", "frame": 19, "at": 6001.520917198364 }, { "type": "O", "frame": 18, "at": 6001.520917198364 }, { "type": "C", "frame": 18, "at": 6002.870500029747 }, { "type": "C", "frame": 19, "at": 6002.870500029747 }, { "type": "C", "frame": 16, "at": 6002.870500435059 }, { "type": "C", "frame": 15, "at": 6002.870500435059 }, { "type": "C", "frame": 14, "at": 6002.870500435059 }, { "type": "C", "frame": 13, "at": 6002.870500435059 }, { "type": "C", "frame": 12, "at": 6002.870500435059 }, { "type": "C", "frame": 11, "at": 6002.870500435059 }, { "type": "C", "frame": 10, "at": 6002.870500435059 }, { "type": "C", "frame": 9, "at": 6002.870500435059 }, { "type": "C", "frame": 8, "at": 6002.870500435059 }, { "type": "C", "frame": 7, "at": 6002.870500435059 }, { "type": "C", "frame": 6, "at": 6002.870500435059 }, { "type": "O", "frame": 20, "at": 6002.870500435059 }, { "type": "O", "frame": 8, "at": 6002.870500435059 }, { "type": "O", "frame": 9, "at": 6002.870500435059 }, { "type": "O", "frame": 10, "at": 6002.870500435059 }, { "type": "O", "frame": 11, "at": 6002.870500435059 }, { "type": "O", "frame": 12, "at": 6002.870500435059 }, { "type": "O", "frame": 13, "at": 6002.870500435059 }, { "type": "O", "frame": 14, "at": 6002.870500435059 }, { "type": "O", "frame": 15, "at": 6002.870500435059 }, { "type": "O", "frame": 16, "at": 6002.870500435059 }, { "type": "O", "frame": 21, "at": 6002.870500435059 }, { "type": "O", "frame": 22, "at": 6002.870500435059 }, { "type": "O", "frame": 23, "at": 6002.870500435059 }, { "type": "O", "frame": 24, "at": 6002.870500435059 }, { "type": "O", "frame": 18, "at": 6002.870500435059 }, { "type": "C", "frame": 18, "at": 6005.560791881561 }, { "type": "C", "frame": 24, "at": 6005.560791881561 }, { "type": "O", "frame": 29, "at": 6005.560792 }, { "type": "O", "frame": 18, "at": 6005.560792 }, { "type": "C", "frame": 18, "at": 6006.903708965485 }, { "type": "C", "frame": 29, "at": 6006.903708965485 }, { "type": "O", "frame": 24, "at": 6006.903709 }, { "type": "O", "frame": 18, "at": 6006.903709 }, { "type": "C", "frame": 18, "at": 6010.988916939148 }, { "type": "C", "frame": 24, "at": 6010.988916939148 }, { "type": "C", "frame": 23, "at": 6010.988916939148 }, { "type": "C", "frame": 22, "at": 6010.988916939148 }, { "type": "C", "frame": 21, "at": 6010.988916939148 }, { "type": "O", "frame": 17, "at": 6010.988917 }, { "type": "O", "frame": 18, "at": 6010.988917 }, { "type": "C", "frame": 18, "at": 6016.464000351135 }, { "type": "C", "frame": 17, "at": 6016.464000351135 }, { "type": "O", "frame": 19, "at": 6016.464000351135 }, { "type": "O", "frame": 18, "at": 6016.464000351135 }, { "type": "C", "frame": 18, "at": 6025.961500419617 }, { "type": "C", "frame": 19, "at": 6025.961500419617 }, { "type": "C", "frame": 16, "at": 6025.961500419617 }, { "type": "C", "frame": 15, "at": 6025.961500419617 }, { "type": "C", "frame": 14, "at": 6025.961500419617 }, { "type": "C", "frame": 13, "at": 6025.961500419617 }, { "type": "C", "frame": 12, "at": 6025.961500419617 }, { "type": "C", "frame": 11, "at": 6025.961500419617 }, { "type": "C", "frame": 10, "at": 6025.961500419617 }, { "type": "C", "frame": 9, "at": 6025.961500419617 }, { "type": "C", "frame": 8, "at": 6025.961500419617 }, { "type": "C", "frame": 20, "at": 6025.961500419617 }, { "type": "O", "frame": 6, "at": 6025.961500419617 }, { "type": "O", "frame": 7, "at": 6025.961500419617 }, { "type": "O", "frame": 8, "at": 6025.961500419617 }, { "type": "O", "frame": 9, "at": 6025.961500419617 }, { "type": "O", "frame": 10, "at": 6025.961500419617 }, { "type": "O", "frame": 11, "at": 6025.961500419617 }, { "type": "O", "frame": 12, "at": 6025.961500419617 }, { "type": "O", "frame": 13, "at": 6025.961500419617 }, { "type": "O", "frame": 14, "at": 6025.961500419617 }, { "type": "O", "frame": 15, "at": 6025.961500419617 }, { "type": "O", "frame": 16, "at": 6025.961500419617 }, { "type": "O", "frame": 21, "at": 6025.961500419617 }, { "type": "O", "frame": 22, "at": 6025.961500419617 }, { "type": "O", "frame": 23, "at": 6025.961500419617 }, { "type": "O", "frame": 24, "at": 6025.961500419617 }, { "type": "O", "frame": 18, "at": 6025.961500419617 }, { "type": "C", "frame": 18, "at": 6031.352374862671 }, { "type": "C", "frame": 24, "at": 6031.352374862671 }, { "type": "O", "frame": 25, "at": 6031.352375 }, { "type": "O", "frame": 18, "at": 6031.352375 }, { "type": "C", "frame": 18, "at": 6032.698541968346 }, { "type": "C", "frame": 25, "at": 6032.698541968346 }, { "type": "O", "frame": 24, "at": 6032.698542 }, { "type": "O", "frame": 18, "at": 6032.698542 }, { "type": "C", "frame": 18, "at": 6035.411125065033 }, { "type": "C", "frame": 24, "at": 6035.411125065033 }, { "type": "C", "frame": 23, "at": 6035.411125065033 }, { "type": "C", "frame": 22, "at": 6035.411125065033 }, { "type": "C", "frame": 21, "at": 6035.411125065033 }, { "type": "O", "frame": 17, "at": 6035.411125065033 }, { "type": "O", "frame": 18, "at": 6035.411125065033 }, { "type": "C", "frame": 18, "at": 6039.554917152404 }, { "type": "C", "frame": 17, "at": 6039.554917152404 }, { "type": "O", "frame": 19, "at": 6039.554917152404 }, { "type": "O", "frame": 18, "at": 6039.554917152404 }, { "type": "C", "frame": 18, "at": 6047.574250839417 }, { "type": "C", "frame": 19, "at": 6047.574250839417 }, { "type": "C", "frame": 16, "at": 6047.574250839417 }, { "type": "C", "frame": 15, "at": 6047.574250839417 }, { "type": "C", "frame": 14, "at": 6047.574250839417 }, { "type": "C", "frame": 13, "at": 6047.574250839417 }, { "type": "C", "frame": 12, "at": 6047.574250839417 }, { "type": "C", "frame": 11, "at": 6047.574250839417 }, { "type": "C", "frame": 10, "at": 6047.574250839417 }, { "type": "C", "frame": 9, "at": 6047.574250839417 }, { "type": "C", "frame": 8, "at": 6047.574250839417 }, { "type": "C", "frame": 7, "at": 6047.574250839417 }, { "type": "C", "frame": 6, "at": 6047.574250839417 }, { "type": "O", "frame": 20, "at": 6047.574250839417 }, { "type": "O", "frame": 8, "at": 6047.574250839417 }, { "type": "O", "frame": 9, "at": 6047.574250839417 }, { "type": "O", "frame": 10, "at": 6047.574250839417 }, { "type": "O", "frame": 11, "at": 6047.574250839417 }, { "type": "O", "frame": 12, "at": 6047.574250839417 }, { "type": "O", "frame": 13, "at": 6047.574250839417 }, { "type": "O", "frame": 14, "at": 6047.574250839417 }, { "type": "O", "frame": 15, "at": 6047.574250839417 }, { "type": "O", "frame": 16, "at": 6047.574250839417 }, { "type": "O", "frame": 21, "at": 6047.574250839417 }, { "type": "O", "frame": 22, "at": 6047.574250839417 }, { "type": "O", "frame": 23, "at": 6047.574250839417 }, { "type": "O", "frame": 24, "at": 6047.574250839417 }, { "type": "O", "frame": 18, "at": 6047.574250839417 }, { "type": "C", "frame": 18, "at": 6048.914958971023 }, { "type": "C", "frame": 24, "at": 6048.914958971023 }, { "type": "O", "frame": 29, "at": 6048.914959 }, { "type": "O", "frame": 18, "at": 6048.914959 }, { "type": "C", "frame": 18, "at": 6050.264041946777 }, { "type": "C", "frame": 29, "at": 6050.264041946777 }, { "type": "O", "frame": 24, "at": 6050.264042 }, { "type": "O", "frame": 18, "at": 6050.264042 }, { "type": "C", "frame": 18, "at": 6057.01249990863 }, { "type": "C", "frame": 24, "at": 6057.01249990863 }, { "type": "C", "frame": 23, "at": 6057.01249990863 }, { "type": "C", "frame": 22, "at": 6057.01249990863 }, { "type": "C", "frame": 21, "at": 6057.01249990863 }, { "type": "O", "frame": 17, "at": 6057.0125 }, { "type": "O", "frame": 18, "at": 6057.0125 }, { "type": "C", "frame": 18, "at": 6061.191624832153 }, { "type": "C", "frame": 17, "at": 6061.191624832153 }, { "type": "O", "frame": 19, "at": 6061.191625 }, { "type": "O", "frame": 18, "at": 6061.191625 }, { "type": "C", "frame": 18, "at": 6062.538959027291 }, { "type": "C", "frame": 19, "at": 6062.538959027291 }, { "type": "C", "frame": 16, "at": 6062.538959281921 }, { "type": "C", "frame": 15, "at": 6062.538959281921 }, { "type": "C", "frame": 14, "at": 6062.538959281921 }, { "type": "C", "frame": 13, "at": 6062.538959281921 }, { "type": "C", "frame": 12, "at": 6062.538959281921 }, { "type": "C", "frame": 11, "at": 6062.538959281921 }, { "type": "C", "frame": 10, "at": 6062.538959281921 }, { "type": "C", "frame": 9, "at": 6062.538959281921 }, { "type": "C", "frame": 8, "at": 6062.538959281921 }, { "type": "C", "frame": 20, "at": 6062.538959281921 }, { "type": "O", "frame": 6, "at": 6062.538959281921 }, { "type": "O", "frame": 7, "at": 6062.538959281921 }, { "type": "O", "frame": 8, "at": 6062.538959281921 }, { "type": "O", "frame": 9, "at": 6062.538959281921 }, { "type": "O", "frame": 10, "at": 6062.538959281921 }, { "type": "O", "frame": 11, "at": 6062.538959281921 }, { "type": "O", "frame": 12, "at": 6062.538959281921 }, { "type": "O", "frame": 13, "at": 6062.538959281921 }, { "type": "O", "frame": 14, "at": 6062.538959281921 }, { "type": "O", "frame": 15, "at": 6062.538959281921 }, { "type": "O", "frame": 16, "at": 6062.538959281921 }, { "type": "O", "frame": 21, "at": 6062.538959281921 }, { "type": "O", "frame": 22, "at": 6062.538959281921 }, { "type": "O", "frame": 23, "at": 6062.538959281921 }, { "type": "O", "frame": 25, "at": 6062.538959281921 }, { "type": "O", "frame": 18, "at": 6062.538959281921 }, { "type": "C", "frame": 18, "at": 6063.882166955361 }, { "type": "C", "frame": 25, "at": 6063.882166955361 }, { "type": "O", "frame": 24, "at": 6063.882167 }, { "type": "O", "frame": 18, "at": 6063.882167 }, { "type": "C", "frame": 18, "at": 6071.969959396545 }, { "type": "C", "frame": 24, "at": 6071.969959396545 }, { "type": "C", "frame": 23, "at": 6071.969959396545 }, { "type": "C", "frame": 22, "at": 6071.969959396545 }, { "type": "C", "frame": 21, "at": 6071.969959396545 }, { "type": "O", "frame": 17, "at": 6071.969959396545 }, { "type": "O", "frame": 18, "at": 6071.969959396545 }, { "type": "C", "frame": 18, "at": 6077.505874851593 }, { "type": "C", "frame": 17, "at": 6077.505874851593 }, { "type": "O", "frame": 19, "at": 6077.505875 }, { "type": "O", "frame": 18, "at": 6077.505875 }, { "type": "C", "frame": 18, "at": 6084.1840423431395 }, { "type": "C", "frame": 19, "at": 6084.1840423431395 }, { "type": "C", "frame": 16, "at": 6084.184043381104 }, { "type": "C", "frame": 15, "at": 6084.184043381104 }, { "type": "C", "frame": 14, "at": 6084.184043381104 }, { "type": "C", "frame": 13, "at": 6084.184043381104 }, { "type": "C", "frame": 12, "at": 6084.184043381104 }, { "type": "C", "frame": 11, "at": 6084.184043381104 }, { "type": "C", "frame": 10, "at": 6084.184043381104 }, { "type": "C", "frame": 9, "at": 6084.184043381104 }, { "type": "C", "frame": 8, "at": 6084.184043381104 }, { "type": "C", "frame": 7, "at": 6084.184043381104 }, { "type": "C", "frame": 6, "at": 6084.184043381104 }, { "type": "O", "frame": 20, "at": 6084.184043381104 }, { "type": "O", "frame": 8, "at": 6084.184043381104 }, { "type": "O", "frame": 9, "at": 6084.184043381104 }, { "type": "O", "frame": 10, "at": 6084.184043381104 }, { "type": "O", "frame": 11, "at": 6084.184043381104 }, { "type": "O", "frame": 12, "at": 6084.184043381104 }, { "type": "O", "frame": 13, "at": 6084.184043381104 }, { "type": "O", "frame": 14, "at": 6084.184043381104 }, { "type": "O", "frame": 15, "at": 6084.184043381104 }, { "type": "O", "frame": 16, "at": 6084.184043381104 }, { "type": "O", "frame": 21, "at": 6084.184043381104 }, { "type": "O", "frame": 22, "at": 6084.184043381104 }, { "type": "O", "frame": 23, "at": 6084.184043381104 }, { "type": "O", "frame": 24, "at": 6084.184043381104 }, { "type": "O", "frame": 18, "at": 6084.184043381104 }, { "type": "C", "frame": 18, "at": 6088.211958908264 }, { "type": "C", "frame": 24, "at": 6088.211958908264 }, { "type": "O", "frame": 28, "at": 6088.211959 }, { "type": "O", "frame": 18, "at": 6088.211959 }, { "type": "C", "frame": 18, "at": 6089.549959059128 }, { "type": "C", "frame": 28, "at": 6089.549959059128 }, { "type": "O", "frame": 24, "at": 6089.549959059128 }, { "type": "O", "frame": 18, "at": 6089.549959059128 }, { "type": "C", "frame": 18, "at": 6092.230250175842 }, { "type": "C", "frame": 24, "at": 6092.230250175842 }, { "type": "O", "frame": 29, "at": 6092.230250175842 }, { "type": "O", "frame": 18, "at": 6092.230250175842 }, { "type": "C", "frame": 18, "at": 6093.584750055313 }, { "type": "C", "frame": 29, "at": 6093.584750055313 }, { "type": "C", "frame": 23, "at": 6093.584750198547 }, { "type": "C", "frame": 22, "at": 6093.584750198547 }, { "type": "C", "frame": 21, "at": 6093.584750198547 }, { "type": "O", "frame": 17, "at": 6093.584750198547 }, { "type": "O", "frame": 18, "at": 6093.584750198547 }, { "type": "C", "frame": 18, "at": 6099.234208885193 }, { "type": "C", "frame": 17, "at": 6099.234208885193 }, { "type": "O", "frame": 19, "at": 6099.234209 }, { "type": "O", "frame": 18, "at": 6099.234209 }, { "type": "C", "frame": 18, "at": 6105.919249950775 }, { "type": "C", "frame": 19, "at": 6105.919249950775 }, { "type": "C", "frame": 16, "at": 6105.919250511352 }, { "type": "C", "frame": 15, "at": 6105.919250511352 }, { "type": "C", "frame": 14, "at": 6105.919250511352 }, { "type": "C", "frame": 13, "at": 6105.919250511352 }, { "type": "C", "frame": 12, "at": 6105.919250511352 }, { "type": "C", "frame": 11, "at": 6105.919250511352 }, { "type": "C", "frame": 10, "at": 6105.919250511352 }, { "type": "C", "frame": 9, "at": 6105.919250511352 }, { "type": "C", "frame": 8, "at": 6105.919250511352 }, { "type": "C", "frame": 20, "at": 6105.919250511352 }, { "type": "O", "frame": 6, "at": 6105.919250511352 }, { "type": "O", "frame": 7, "at": 6105.919250511352 }, { "type": "O", "frame": 8, "at": 6105.919250511352 }, { "type": "O", "frame": 9, "at": 6105.919250511352 }, { "type": "O", "frame": 10, "at": 6105.919250511352 }, { "type": "O", "frame": 11, "at": 6105.919250511352 }, { "type": "O", "frame": 12, "at": 6105.919250511352 }, { "type": "O", "frame": 13, "at": 6105.919250511352 }, { "type": "O", "frame": 14, "at": 6105.919250511352 }, { "type": "O", "frame": 15, "at": 6105.919250511352 }, { "type": "O", "frame": 16, "at": 6105.919250511352 }, { "type": "O", "frame": 21, "at": 6105.919250511352 }, { "type": "O", "frame": 22, "at": 6105.919250511352 }, { "type": "O", "frame": 23, "at": 6105.919250511352 }, { "type": "O", "frame": 24, "at": 6105.919250511352 }, { "type": "O", "frame": 18, "at": 6105.919250511352 }, { "type": "C", "frame": 18, "at": 6115.3895840530395 }, { "type": "C", "frame": 24, "at": 6115.3895840530395 }, { "type": "C", "frame": 23, "at": 6115.3895840530395 }, { "type": "C", "frame": 22, "at": 6115.3895840530395 }, { "type": "C", "frame": 21, "at": 6115.3895840530395 }, { "type": "O", "frame": 17, "at": 6115.3895840530395 }, { "type": "O", "frame": 18, "at": 6115.3895840530395 }, { "type": "C", "frame": 18, "at": 6119.532124931701 }, { "type": "C", "frame": 17, "at": 6119.532124931701 }, { "type": "O", "frame": 19, "at": 6119.532125 }, { "type": "O", "frame": 18, "at": 6119.532125 }, { "type": "C", "frame": 18, "at": 6120.8672089614865 }, { "type": "C", "frame": 19, "at": 6120.8672089614865 }, { "type": "C", "frame": 16, "at": 6120.8672089614865 }, { "type": "C", "frame": 15, "at": 6120.8672089614865 }, { "type": "C", "frame": 14, "at": 6120.8672089614865 }, { "type": "C", "frame": 13, "at": 6120.8672089614865 }, { "type": "C", "frame": 12, "at": 6120.8672089614865 }, { "type": "C", "frame": 11, "at": 6120.8672089614865 }, { "type": "C", "frame": 10, "at": 6120.8672089614865 }, { "type": "C", "frame": 9, "at": 6120.8672089614865 }, { "type": "C", "frame": 8, "at": 6120.8672089614865 }, { "type": "C", "frame": 7, "at": 6120.8672089614865 }, { "type": "C", "frame": 6, "at": 6120.8672089614865 }, { "type": "O", "frame": 20, "at": 6120.867209 }, { "type": "O", "frame": 8, "at": 6120.867209 }, { "type": "O", "frame": 9, "at": 6120.867209 }, { "type": "O", "frame": 10, "at": 6120.867209 }, { "type": "O", "frame": 11, "at": 6120.867209 }, { "type": "O", "frame": 12, "at": 6120.867209 }, { "type": "O", "frame": 13, "at": 6120.867209 }, { "type": "O", "frame": 14, "at": 6120.867209 }, { "type": "O", "frame": 15, "at": 6120.867209 }, { "type": "O", "frame": 16, "at": 6120.867209 }, { "type": "O", "frame": 21, "at": 6120.867209 }, { "type": "O", "frame": 22, "at": 6120.867209 }, { "type": "O", "frame": 23, "at": 6120.867209 }, { "type": "O", "frame": 24, "at": 6120.867209 }, { "type": "O", "frame": 18, "at": 6120.867209 }, { "type": "C", "frame": 18, "at": 6131.300749344238 }, { "type": "C", "frame": 24, "at": 6131.300749344238 }, { "type": "C", "frame": 23, "at": 6131.300749344238 }, { "type": "C", "frame": 22, "at": 6131.300749344238 }, { "type": "C", "frame": 21, "at": 6131.300749344238 }, { "type": "O", "frame": 17, "at": 6131.30075 }, { "type": "O", "frame": 18, "at": 6131.30075 }, { "type": "C", "frame": 18, "at": 6136.023667079926 }, { "type": "C", "frame": 17, "at": 6136.023667079926 }, { "type": "O", "frame": 19, "at": 6136.023667079926 }, { "type": "O", "frame": 18, "at": 6136.023667079926 }, { "type": "C", "frame": 18, "at": 6142.8304163438725 }, { "type": "C", "frame": 19, "at": 6142.8304163438725 }, { "type": "C", "frame": 16, "at": 6142.8304163438725 }, { "type": "C", "frame": 15, "at": 6142.8304163438725 }, { "type": "C", "frame": 14, "at": 6142.8304163438725 }, { "type": "C", "frame": 13, "at": 6142.8304163438725 }, { "type": "C", "frame": 12, "at": 6142.8304163438725 }, { "type": "C", "frame": 11, "at": 6142.8304163438725 }, { "type": "C", "frame": 10, "at": 6142.8304163438725 }, { "type": "C", "frame": 9, "at": 6142.8304163438725 }, { "type": "C", "frame": 8, "at": 6142.8304163438725 }, { "type": "C", "frame": 20, "at": 6142.8304163438725 }, { "type": "O", "frame": 6, "at": 6142.830417 }, { "type": "O", "frame": 7, "at": 6142.830417 }, { "type": "O", "frame": 8, "at": 6142.830417 }, { "type": "O", "frame": 9, "at": 6142.830417 }, { "type": "O", "frame": 10, "at": 6142.830417 }, { "type": "O", "frame": 11, "at": 6142.830417 }, { "type": "O", "frame": 12, "at": 6142.830417 }, { "type": "O", "frame": 13, "at": 6142.830417 }, { "type": "O", "frame": 14, "at": 6142.830417 }, { "type": "O", "frame": 15, "at": 6142.830417 }, { "type": "O", "frame": 16, "at": 6142.830417 }, { "type": "O", "frame": 21, "at": 6142.830417 }, { "type": "O", "frame": 22, "at": 6142.830417 }, { "type": "O", "frame": 23, "at": 6142.830417 }, { "type": "O", "frame": 24, "at": 6142.830417 }, { "type": "O", "frame": 18, "at": 6142.830417 }, { "type": "C", "frame": 18, "at": 6150.9157498704835 }, { "type": "C", "frame": 24, "at": 6150.9157498704835 }, { "type": "C", "frame": 23, "at": 6150.9157498704835 }, { "type": "C", "frame": 22, "at": 6150.9157498704835 }, { "type": "C", "frame": 21, "at": 6150.9157498704835 }, { "type": "O", "frame": 17, "at": 6150.91575 }, { "type": "O", "frame": 18, "at": 6150.91575 }, { "type": "C", "frame": 18, "at": 6156.514041873932 }, { "type": "C", "frame": 17, "at": 6156.514041873932 }, { "type": "O", "frame": 19, "at": 6156.514042 }, { "type": "O", "frame": 18, "at": 6156.514042 }, { "type": "C", "frame": 18, "at": 6157.8510839740675 }, { "type": "C", "frame": 19, "at": 6157.8510839740675 }, { "type": "C", "frame": 16, "at": 6157.851084076111 }, { "type": "C", "frame": 15, "at": 6157.851084076111 }, { "type": "C", "frame": 14, "at": 6157.851084076111 }, { "type": "C", "frame": 13, "at": 6157.851084076111 }, { "type": "C", "frame": 12, "at": 6157.851084076111 }, { "type": "C", "frame": 11, "at": 6157.851084076111 }, { "type": "C", "frame": 10, "at": 6157.851084076111 }, { "type": "C", "frame": 9, "at": 6157.851084076111 }, { "type": "C", "frame": 8, "at": 6157.851084076111 }, { "type": "C", "frame": 7, "at": 6157.851084076111 }, { "type": "C", "frame": 6, "at": 6157.851084076111 }, { "type": "O", "frame": 20, "at": 6157.851084076111 }, { "type": "O", "frame": 8, "at": 6157.851084076111 }, { "type": "O", "frame": 9, "at": 6157.851084076111 }, { "type": "O", "frame": 10, "at": 6157.851084076111 }, { "type": "O", "frame": 11, "at": 6157.851084076111 }, { "type": "O", "frame": 12, "at": 6157.851084076111 }, { "type": "O", "frame": 13, "at": 6157.851084076111 }, { "type": "O", "frame": 14, "at": 6157.851084076111 }, { "type": "O", "frame": 15, "at": 6157.851084076111 }, { "type": "O", "frame": 16, "at": 6157.851084076111 }, { "type": "O", "frame": 21, "at": 6157.851084076111 }, { "type": "O", "frame": 22, "at": 6157.851084076111 }, { "type": "O", "frame": 23, "at": 6157.851084076111 }, { "type": "O", "frame": 24, "at": 6157.851084076111 }, { "type": "O", "frame": 18, "at": 6157.851084076111 }, { "type": "C", "frame": 18, "at": 6164.584584003815 }, { "type": "C", "frame": 24, "at": 6164.584584003815 }, { "type": "O", "frame": 25, "at": 6164.584584003815 }, { "type": "O", "frame": 18, "at": 6164.584584003815 }, { "type": "C", "frame": 18, "at": 6165.937916996369 }, { "type": "C", "frame": 25, "at": 6165.937916996369 }, { "type": "O", "frame": 24, "at": 6165.937917 }, { "type": "O", "frame": 18, "at": 6165.937917 }, { "type": "C", "frame": 18, "at": 6167.307834035103 }, { "type": "C", "frame": 24, "at": 6167.307834035103 }, { "type": "C", "frame": 23, "at": 6167.307834035103 }, { "type": "C", "frame": 22, "at": 6167.307834035103 }, { "type": "C", "frame": 21, "at": 6167.307834035103 }, { "type": "O", "frame": 17, "at": 6167.307834035103 }, { "type": "O", "frame": 18, "at": 6167.307834035103 }, { "type": "C", "frame": 18, "at": 6172.80854210318 }, { "type": "C", "frame": 17, "at": 6172.80854210318 }, { "type": "O", "frame": 19, "at": 6172.80854210318 }, { "type": "O", "frame": 18, "at": 6172.80854210318 }, { "type": "C", "frame": 18, "at": 6179.510041938965 }, { "type": "C", "frame": 19, "at": 6179.510041938965 }, { "type": "C", "frame": 16, "at": 6179.5100424350585 }, { "type": "C", "frame": 15, "at": 6179.5100424350585 }, { "type": "C", "frame": 14, "at": 6179.5100424350585 }, { "type": "C", "frame": 13, "at": 6179.5100424350585 }, { "type": "C", "frame": 12, "at": 6179.5100424350585 }, { "type": "C", "frame": 11, "at": 6179.5100424350585 }, { "type": "C", "frame": 10, "at": 6179.5100424350585 }, { "type": "C", "frame": 9, "at": 6179.5100424350585 }, { "type": "C", "frame": 8, "at": 6179.5100424350585 }, { "type": "O", "frame": 18, "at": 6179.5100424350585 }, { "type": "C", "frame": 18, "at": 6180.856125045006 }, { "type": "C", "frame": 20, "at": 6180.856125122436 }, { "type": "O", "frame": 6, "at": 6180.856125122436 }, { "type": "O", "frame": 7, "at": 6180.856125122436 }, { "type": "O", "frame": 8, "at": 6180.856125122436 }, { "type": "O", "frame": 9, "at": 6180.856125122436 }, { "type": "O", "frame": 10, "at": 6180.856125122436 }, { "type": "O", "frame": 11, "at": 6180.856125122436 }, { "type": "O", "frame": 12, "at": 6180.856125122436 }, { "type": "O", "frame": 13, "at": 6180.856125122436 }, { "type": "O", "frame": 14, "at": 6180.856125122436 }, { "type": "O", "frame": 15, "at": 6180.856125122436 }, { "type": "O", "frame": 16, "at": 6180.856125122436 }, { "type": "O", "frame": 21, "at": 6180.856125122436 }, { "type": "O", "frame": 22, "at": 6180.856125122436 }, { "type": "O", "frame": 23, "at": 6180.856125122436 }, { "type": "O", "frame": 25, "at": 6180.856125122436 }, { "type": "O", "frame": 18, "at": 6180.856125122436 }, { "type": "C", "frame": 18, "at": 6182.204542043686 }, { "type": "C", "frame": 25, "at": 6182.204542043686 }, { "type": "O", "frame": 24, "at": 6182.204542043686 }, { "type": "O", "frame": 18, "at": 6182.204542043686 }, { "type": "C", "frame": 18, "at": 6190.306124527161 }, { "type": "C", "frame": 24, "at": 6190.306124527161 }, { "type": "C", "frame": 23, "at": 6190.30612576294 }, { "type": "C", "frame": 22, "at": 6190.30612576294 }, { "type": "C", "frame": 21, "at": 6190.30612576294 }, { "type": "O", "frame": 17, "at": 6190.30612576294 }, { "type": "O", "frame": 18, "at": 6190.30612576294 }, { "type": "C", "frame": 18, "at": 6194.475042179108 }, { "type": "C", "frame": 17, "at": 6194.475042179108 }, { "type": "O", "frame": 19, "at": 6194.475042179108 }, { "type": "O", "frame": 18, "at": 6194.475042179108 }, { "type": "C", "frame": 18, "at": 6202.543209686462 }, { "type": "C", "frame": 19, "at": 6202.543209686462 }, { "type": "C", "frame": 16, "at": 6202.543209686462 }, { "type": "C", "frame": 15, "at": 6202.543209686462 }, { "type": "C", "frame": 14, "at": 6202.543209686462 }, { "type": "C", "frame": 13, "at": 6202.543209686462 }, { "type": "C", "frame": 12, "at": 6202.543209686462 }, { "type": "C", "frame": 11, "at": 6202.543209686462 }, { "type": "C", "frame": 10, "at": 6202.543209686462 }, { "type": "C", "frame": 9, "at": 6202.543209686462 }, { "type": "C", "frame": 8, "at": 6202.543209686462 }, { "type": "C", "frame": 7, "at": 6202.543209686462 }, { "type": "C", "frame": 6, "at": 6202.543209686462 }, { "type": "O", "frame": 20, "at": 6202.543209686462 }, { "type": "O", "frame": 8, "at": 6202.543209686462 }, { "type": "O", "frame": 9, "at": 6202.543209686462 }, { "type": "O", "frame": 10, "at": 6202.543209686462 }, { "type": "O", "frame": 11, "at": 6202.543209686462 }, { "type": "O", "frame": 12, "at": 6202.543209686462 }, { "type": "O", "frame": 13, "at": 6202.543209686462 }, { "type": "O", "frame": 14, "at": 6202.543209686462 }, { "type": "O", "frame": 15, "at": 6202.543209686462 }, { "type": "O", "frame": 16, "at": 6202.543209686462 }, { "type": "O", "frame": 21, "at": 6202.543209686462 }, { "type": "O", "frame": 22, "at": 6202.543209686462 }, { "type": "O", "frame": 23, "at": 6202.543209686462 }, { "type": "O", "frame": 24, "at": 6202.543209686462 }, { "type": "O", "frame": 18, "at": 6202.543209686462 }, { "type": "C", "frame": 18, "at": 6206.572958870301 }, { "type": "C", "frame": 24, "at": 6206.572958870301 }, { "type": "O", "frame": 38, "at": 6206.572959 }, { "type": "O", "frame": 18, "at": 6206.572959 }, { "type": "C", "frame": 18, "at": 6207.909125024208 }, { "type": "C", "frame": 38, "at": 6207.909125024208 }, { "type": "O", "frame": 24, "at": 6207.909125024208 }, { "type": "O", "frame": 18, "at": 6207.909125024208 }, { "type": "C", "frame": 18, "at": 6210.624209075928 }, { "type": "C", "frame": 24, "at": 6210.624209075928 }, { "type": "C", "frame": 23, "at": 6210.624209075928 }, { "type": "C", "frame": 22, "at": 6210.624209075928 }, { "type": "C", "frame": 21, "at": 6210.624209075928 }, { "type": "O", "frame": 17, "at": 6210.624209075928 }, { "type": "O", "frame": 18, "at": 6210.624209075928 }, { "type": "C", "frame": 18, "at": 6216.157084061035 }, { "type": "C", "frame": 17, "at": 6216.157084061035 }, { "type": "O", "frame": 19, "at": 6216.157084061035 }, { "type": "O", "frame": 18, "at": 6216.157084061035 }, { "type": "C", "frame": 18, "at": 6217.50033403624 }, { "type": "C", "frame": 19, "at": 6217.50033403624 }, { "type": "C", "frame": 16, "at": 6217.50033403624 }, { "type": "C", "frame": 15, "at": 6217.50033403624 }, { "type": "C", "frame": 14, "at": 6217.50033403624 }, { "type": "C", "frame": 13, "at": 6217.50033403624 }, { "type": "C", "frame": 12, "at": 6217.50033403624 }, { "type": "C", "frame": 11, "at": 6217.50033403624 }, { "type": "C", "frame": 10, "at": 6217.50033403624 }, { "type": "C", "frame": 9, "at": 6217.50033403624 }, { "type": "C", "frame": 8, "at": 6217.50033403624 }, { "type": "C", "frame": 20, "at": 6217.50033403624 }, { "type": "O", "frame": 6, "at": 6217.50033403624 }, { "type": "O", "frame": 7, "at": 6217.50033403624 }, { "type": "O", "frame": 8, "at": 6217.50033403624 }, { "type": "O", "frame": 9, "at": 6217.50033403624 }, { "type": "O", "frame": 10, "at": 6217.50033403624 }, { "type": "O", "frame": 11, "at": 6217.50033403624 }, { "type": "O", "frame": 12, "at": 6217.50033403624 }, { "type": "O", "frame": 13, "at": 6217.50033403624 }, { "type": "O", "frame": 14, "at": 6217.50033403624 }, { "type": "O", "frame": 15, "at": 6217.50033403624 }, { "type": "O", "frame": 16, "at": 6217.50033403624 }, { "type": "O", "frame": 21, "at": 6217.50033403624 }, { "type": "O", "frame": 22, "at": 6217.50033403624 }, { "type": "O", "frame": 23, "at": 6217.50033403624 }, { "type": "O", "frame": 24, "at": 6217.50033403624 }, { "type": "O", "frame": 18, "at": 6217.50033403624 }, { "type": "C", "frame": 18, "at": 6225.573583816895 }, { "type": "C", "frame": 24, "at": 6225.573583816895 }, { "type": "O", "frame": 31, "at": 6225.573584 }, { "type": "O", "frame": 18, "at": 6225.573584 }, { "type": "C", "frame": 18, "at": 6226.941208998092 }, { "type": "C", "frame": 31, "at": 6226.941208998092 }, { "type": "C", "frame": 23, "at": 6226.941209053406 }, { "type": "C", "frame": 22, "at": 6226.941209053406 }, { "type": "C", "frame": 21, "at": 6226.941209053406 }, { "type": "O", "frame": 17, "at": 6226.941209053406 }, { "type": "O", "frame": 18, "at": 6226.941209053406 }, { "type": "C", "frame": 18, "at": 6232.431333702453 }, { "type": "C", "frame": 17, "at": 6232.431333702453 }, { "type": "O", "frame": 19, "at": 6232.431334 }, { "type": "O", "frame": 18, "at": 6232.431334 }, { "type": "C", "frame": 18, "at": 6239.17254159964 }, { "type": "C", "frame": 19, "at": 6239.17254159964 }, { "type": "C", "frame": 16, "at": 6239.172542786011 }, { "type": "C", "frame": 15, "at": 6239.172542786011 }, { "type": "C", "frame": 14, "at": 6239.172542786011 }, { "type": "C", "frame": 13, "at": 6239.172542786011 }, { "type": "C", "frame": 12, "at": 6239.172542786011 }, { "type": "C", "frame": 11, "at": 6239.172542786011 }, { "type": "C", "frame": 10, "at": 6239.172542786011 }, { "type": "C", "frame": 9, "at": 6239.172542786011 }, { "type": "C", "frame": 8, "at": 6239.172542786011 }, { "type": "C", "frame": 7, "at": 6239.172542786011 }, { "type": "C", "frame": 6, "at": 6239.172542786011 }, { "type": "O", "frame": 20, "at": 6239.172542786011 }, { "type": "O", "frame": 8, "at": 6239.172542786011 }, { "type": "O", "frame": 9, "at": 6239.172542786011 }, { "type": "O", "frame": 10, "at": 6239.172542786011 }, { "type": "O", "frame": 11, "at": 6239.172542786011 }, { "type": "O", "frame": 12, "at": 6239.172542786011 }, { "type": "O", "frame": 13, "at": 6239.172542786011 }, { "type": "O", "frame": 14, "at": 6239.172542786011 }, { "type": "O", "frame": 15, "at": 6239.172542786011 }, { "type": "O", "frame": 16, "at": 6239.172542786011 }, { "type": "O", "frame": 21, "at": 6239.172542786011 }, { "type": "O", "frame": 22, "at": 6239.172542786011 }, { "type": "O", "frame": 23, "at": 6239.172542786011 }, { "type": "O", "frame": 24, "at": 6239.172542786011 }, { "type": "O", "frame": 18, "at": 6239.172542786011 }, { "type": "C", "frame": 18, "at": 6248.626584434693 }, { "type": "C", "frame": 24, "at": 6248.626584434693 }, { "type": "C", "frame": 23, "at": 6248.626584434693 }, { "type": "C", "frame": 22, "at": 6248.626584434693 }, { "type": "C", "frame": 21, "at": 6248.626584434693 }, { "type": "O", "frame": 17, "at": 6248.626584434693 }, { "type": "O", "frame": 18, "at": 6248.626584434693 }, { "type": "C", "frame": 18, "at": 6252.836542076477 }, { "type": "C", "frame": 17, "at": 6252.836542076477 }, { "type": "O", "frame": 19, "at": 6252.836542076477 }, { "type": "O", "frame": 18, "at": 6252.836542076477 }, { "type": "C", "frame": 18, "at": 6254.168042053406 }, { "type": "C", "frame": 19, "at": 6254.168042053406 }, { "type": "C", "frame": 16, "at": 6254.168042564575 }, { "type": "C", "frame": 15, "at": 6254.168042564575 }, { "type": "C", "frame": 14, "at": 6254.168042564575 }, { "type": "C", "frame": 13, "at": 6254.168042564575 }, { "type": "C", "frame": 12, "at": 6254.168042564575 }, { "type": "C", "frame": 11, "at": 6254.168042564575 }, { "type": "C", "frame": 10, "at": 6254.168042564575 }, { "type": "C", "frame": 9, "at": 6254.168042564575 }, { "type": "C", "frame": 8, "at": 6254.168042564575 }, { "type": "C", "frame": 20, "at": 6254.168042564575 }, { "type": "O", "frame": 6, "at": 6254.168042564575 }, { "type": "O", "frame": 7, "at": 6254.168042564575 }, { "type": "O", "frame": 8, "at": 6254.168042564575 }, { "type": "O", "frame": 9, "at": 6254.168042564575 }, { "type": "O", "frame": 10, "at": 6254.168042564575 }, { "type": "O", "frame": 11, "at": 6254.168042564575 }, { "type": "O", "frame": 12, "at": 6254.168042564575 }, { "type": "O", "frame": 13, "at": 6254.168042564575 }, { "type": "O", "frame": 14, "at": 6254.168042564575 }, { "type": "O", "frame": 15, "at": 6254.168042564575 }, { "type": "O", "frame": 16, "at": 6254.168042564575 }, { "type": "O", "frame": 21, "at": 6254.168042564575 }, { "type": "O", "frame": 22, "at": 6254.168042564575 }, { "type": "O", "frame": 23, "at": 6254.168042564575 }, { "type": "O", "frame": 24, "at": 6254.168042564575 }, { "type": "O", "frame": 18, "at": 6254.168042564575 }, { "type": "C", "frame": 18, "at": 6263.579916771118 }, { "type": "C", "frame": 24, "at": 6263.579916771118 }, { "type": "C", "frame": 23, "at": 6263.579916771118 }, { "type": "C", "frame": 22, "at": 6263.579916771118 }, { "type": "C", "frame": 21, "at": 6263.579916771118 }, { "type": "O", "frame": 17, "at": 6263.579917 }, { "type": "O", "frame": 18, "at": 6263.579917 }, { "type": "C", "frame": 18, "at": 6269.15324978656 }, { "type": "C", "frame": 17, "at": 6269.15324978656 }, { "type": "O", "frame": 19, "at": 6269.15325 }, { "type": "O", "frame": 18, "at": 6269.15325 }, { "type": "C", "frame": 18, "at": 6275.826083919525 }, { "type": "C", "frame": 19, "at": 6275.826083919525 }, { "type": "C", "frame": 16, "at": 6275.826084907715 }, { "type": "C", "frame": 15, "at": 6275.826084907715 }, { "type": "C", "frame": 14, "at": 6275.826084907715 }, { "type": "C", "frame": 13, "at": 6275.826084907715 }, { "type": "C", "frame": 12, "at": 6275.826084907715 }, { "type": "C", "frame": 11, "at": 6275.826084907715 }, { "type": "C", "frame": 10, "at": 6275.826084907715 }, { "type": "C", "frame": 9, "at": 6275.826084907715 }, { "type": "C", "frame": 8, "at": 6275.826084907715 }, { "type": "C", "frame": 7, "at": 6275.826084907715 }, { "type": "C", "frame": 6, "at": 6275.826084907715 }, { "type": "O", "frame": 20, "at": 6275.826084907715 }, { "type": "O", "frame": 8, "at": 6275.826084907715 }, { "type": "O", "frame": 9, "at": 6275.826084907715 }, { "type": "O", "frame": 10, "at": 6275.826084907715 }, { "type": "O", "frame": 11, "at": 6275.826084907715 }, { "type": "O", "frame": 12, "at": 6275.826084907715 }, { "type": "O", "frame": 13, "at": 6275.826084907715 }, { "type": "O", "frame": 14, "at": 6275.826084907715 }, { "type": "O", "frame": 15, "at": 6275.826084907715 }, { "type": "O", "frame": 16, "at": 6275.826084907715 }, { "type": "O", "frame": 21, "at": 6275.826084907715 }, { "type": "O", "frame": 22, "at": 6275.826084907715 }, { "type": "O", "frame": 23, "at": 6275.826084907715 }, { "type": "O", "frame": 25, "at": 6275.826084907715 }, { "type": "O", "frame": 18, "at": 6275.826084907715 }, { "type": "C", "frame": 18, "at": 6277.169834 }, { "type": "C", "frame": 25, "at": 6277.169834 }, { "type": "O", "frame": 24, "at": 6277.169834 }, { "type": "O", "frame": 18, "at": 6277.169834 }, { "type": "C", "frame": 18, "at": 6283.886042457947 }, { "type": "C", "frame": 24, "at": 6283.886042457947 }, { "type": "C", "frame": 23, "at": 6283.886042457947 }, { "type": "C", "frame": 22, "at": 6283.886042457947 }, { "type": "C", "frame": 21, "at": 6283.886042457947 }, { "type": "O", "frame": 17, "at": 6283.886042457947 }, { "type": "O", "frame": 18, "at": 6283.886042457947 }, { "type": "C", "frame": 18, "at": 6289.447375179474 }, { "type": "C", "frame": 17, "at": 6289.447375179474 }, { "type": "O", "frame": 19, "at": 6289.447375179474 }, { "type": "O", "frame": 18, "at": 6289.447375179474 }, { "type": "C", "frame": 18, "at": 6297.521292388916 }, { "type": "C", "frame": 19, "at": 6297.521292388916 }, { "type": "C", "frame": 16, "at": 6297.521293503174 }, { "type": "C", "frame": 15, "at": 6297.521293503174 }, { "type": "C", "frame": 14, "at": 6297.521293503174 }, { "type": "C", "frame": 13, "at": 6297.521293503174 }, { "type": "C", "frame": 12, "at": 6297.521293503174 }, { "type": "C", "frame": 11, "at": 6297.521293503174 }, { "type": "C", "frame": 10, "at": 6297.521293503174 }, { "type": "C", "frame": 9, "at": 6297.521293503174 }, { "type": "C", "frame": 8, "at": 6297.521293503174 }, { "type": "C", "frame": 20, "at": 6297.521293503174 }, { "type": "O", "frame": 6, "at": 6297.521293503174 }, { "type": "O", "frame": 7, "at": 6297.521293503174 }, { "type": "O", "frame": 8, "at": 6297.521293503174 }, { "type": "O", "frame": 9, "at": 6297.521293503174 }, { "type": "O", "frame": 10, "at": 6297.521293503174 }, { "type": "O", "frame": 11, "at": 6297.521293503174 }, { "type": "O", "frame": 12, "at": 6297.521293503174 }, { "type": "O", "frame": 13, "at": 6297.521293503174 }, { "type": "O", "frame": 14, "at": 6297.521293503174 }, { "type": "O", "frame": 15, "at": 6297.521293503174 }, { "type": "O", "frame": 16, "at": 6297.521293503174 }, { "type": "O", "frame": 21, "at": 6297.521293503174 }, { "type": "O", "frame": 22, "at": 6297.521293503174 }, { "type": "O", "frame": 23, "at": 6297.521293503174 }, { "type": "O", "frame": 31, "at": 6297.521293503174 }, { "type": "O", "frame": 18, "at": 6297.521293503174 }, { "type": "C", "frame": 18, "at": 6298.86454203624 }, { "type": "C", "frame": 31, "at": 6298.86454203624 }, { "type": "O", "frame": 24, "at": 6298.86454203624 }, { "type": "O", "frame": 18, "at": 6298.86454203624 }, { "type": "C", "frame": 18, "at": 6302.891250126068 }, { "type": "C", "frame": 24, "at": 6302.891250126068 }, { "type": "O", "frame": 25, "at": 6302.891250126068 }, { "type": "O", "frame": 18, "at": 6302.891250126068 }, { "type": "C", "frame": 18, "at": 6304.2433340406415 }, { "type": "C", "frame": 25, "at": 6304.2433340406415 }, { "type": "O", "frame": 24, "at": 6304.2433340406415 }, { "type": "O", "frame": 18, "at": 6304.2433340406415 }, { "type": "C", "frame": 18, "at": 6305.599000041374 }, { "type": "C", "frame": 24, "at": 6305.599000041374 }, { "type": "C", "frame": 23, "at": 6305.599000244324 }, { "type": "C", "frame": 22, "at": 6305.599000244324 }, { "type": "C", "frame": 21, "at": 6305.599000244324 }, { "type": "O", "frame": 17, "at": 6305.599000244324 }, { "type": "O", "frame": 18, "at": 6305.599000244324 }, { "type": "C", "frame": 18, "at": 6311.240375541687 }, { "type": "C", "frame": 17, "at": 6311.240375541687 }, { "type": "O", "frame": 19, "at": 6311.240375541687 }, { "type": "O", "frame": 18, "at": 6311.240375541687 }, { "type": "C", "frame": 18, "at": 6312.611000019074 }, { "type": "C", "frame": 19, "at": 6312.611000019074 }, { "type": "C", "frame": 16, "at": 6312.611000328247 }, { "type": "C", "frame": 15, "at": 6312.611000328247 }, { "type": "C", "frame": 14, "at": 6312.611000328247 }, { "type": "C", "frame": 13, "at": 6312.611000328247 }, { "type": "C", "frame": 12, "at": 6312.611000328247 }, { "type": "C", "frame": 11, "at": 6312.611000328247 }, { "type": "C", "frame": 10, "at": 6312.611000328247 }, { "type": "C", "frame": 9, "at": 6312.611000328247 }, { "type": "C", "frame": 8, "at": 6312.611000328247 }, { "type": "C", "frame": 7, "at": 6312.611000328247 }, { "type": "C", "frame": 6, "at": 6312.611000328247 }, { "type": "O", "frame": 20, "at": 6312.611000328247 }, { "type": "O", "frame": 8, "at": 6312.611000328247 }, { "type": "O", "frame": 9, "at": 6312.611000328247 }, { "type": "O", "frame": 10, "at": 6312.611000328247 }, { "type": "O", "frame": 11, "at": 6312.611000328247 }, { "type": "O", "frame": 12, "at": 6312.611000328247 }, { "type": "O", "frame": 13, "at": 6312.611000328247 }, { "type": "O", "frame": 14, "at": 6312.611000328247 }, { "type": "O", "frame": 15, "at": 6312.611000328247 }, { "type": "O", "frame": 16, "at": 6312.611000328247 }, { "type": "O", "frame": 21, "at": 6312.611000328247 }, { "type": "O", "frame": 22, "at": 6312.611000328247 }, { "type": "O", "frame": 23, "at": 6312.611000328247 }, { "type": "O", "frame": 24, "at": 6312.611000328247 }, { "type": "O", "frame": 18, "at": 6312.611000328247 }, { "type": "C", "frame": 18, "at": 6322.043874679565 }, { "type": "C", "frame": 24, "at": 6322.043874679565 }, { "type": "C", "frame": 23, "at": 6322.043874679565 }, { "type": "C", "frame": 22, "at": 6322.043874679565 }, { "type": "C", "frame": 21, "at": 6322.043874679565 }, { "type": "O", "frame": 17, "at": 6322.043875 }, { "type": "O", "frame": 18, "at": 6322.043875 }, { "type": "C", "frame": 18, "at": 6327.530166885376 }, { "type": "C", "frame": 17, "at": 6327.530166885376 }, { "type": "O", "frame": 19, "at": 6327.530167 }, { "type": "O", "frame": 18, "at": 6327.530167 }, { "type": "C", "frame": 18, "at": 6334.23937453479 }, { "type": "C", "frame": 19, "at": 6334.23937453479 }, { "type": "C", "frame": 16, "at": 6334.23937453479 }, { "type": "C", "frame": 15, "at": 6334.23937453479 }, { "type": "C", "frame": 14, "at": 6334.23937453479 }, { "type": "C", "frame": 13, "at": 6334.23937453479 }, { "type": "C", "frame": 12, "at": 6334.23937453479 }, { "type": "C", "frame": 11, "at": 6334.23937453479 }, { "type": "C", "frame": 10, "at": 6334.23937453479 }, { "type": "C", "frame": 9, "at": 6334.23937453479 }, { "type": "C", "frame": 8, "at": 6334.23937453479 }, { "type": "C", "frame": 20, "at": 6334.23937453479 }, { "type": "O", "frame": 6, "at": 6334.239375 }, { "type": "O", "frame": 7, "at": 6334.239375 }, { "type": "O", "frame": 8, "at": 6334.239375 }, { "type": "O", "frame": 9, "at": 6334.239375 }, { "type": "O", "frame": 10, "at": 6334.239375 }, { "type": "O", "frame": 11, "at": 6334.239375 }, { "type": "O", "frame": 12, "at": 6334.239375 }, { "type": "O", "frame": 13, "at": 6334.239375 }, { "type": "O", "frame": 14, "at": 6334.239375 }, { "type": "O", "frame": 15, "at": 6334.239375 }, { "type": "O", "frame": 16, "at": 6334.239375 }, { "type": "O", "frame": 21, "at": 6334.239375 }, { "type": "O", "frame": 22, "at": 6334.239375 }, { "type": "O", "frame": 23, "at": 6334.239375 }, { "type": "O", "frame": 24, "at": 6334.239375 }, { "type": "O", "frame": 18, "at": 6334.239375 }, { "type": "C", "frame": 18, "at": 6343.663458709717 }, { "type": "C", "frame": 24, "at": 6343.663458709717 }, { "type": "C", "frame": 23, "at": 6343.663458709717 }, { "type": "C", "frame": 22, "at": 6343.663458709717 }, { "type": "C", "frame": 21, "at": 6343.663458709717 }, { "type": "O", "frame": 17, "at": 6343.663459 }, { "type": "O", "frame": 18, "at": 6343.663459 }, { "type": "C", "frame": 18, "at": 6347.8594171375125 }, { "type": "C", "frame": 17, "at": 6347.8594171375125 }, { "type": "O", "frame": 19, "at": 6347.8594171375125 }, { "type": "O", "frame": 18, "at": 6347.8594171375125 }, { "type": "C", "frame": 18, "at": 6349.198249974434 }, { "type": "C", "frame": 19, "at": 6349.198249974434 }, { "type": "C", "frame": 16, "at": 6349.198249974434 }, { "type": "C", "frame": 15, "at": 6349.198249974434 }, { "type": "C", "frame": 14, "at": 6349.198249974434 }, { "type": "C", "frame": 13, "at": 6349.198249974434 }, { "type": "C", "frame": 12, "at": 6349.198249974434 }, { "type": "C", "frame": 11, "at": 6349.198249974434 }, { "type": "C", "frame": 10, "at": 6349.198249974434 }, { "type": "C", "frame": 9, "at": 6349.198249974434 }, { "type": "C", "frame": 8, "at": 6349.198249974434 }, { "type": "C", "frame": 7, "at": 6349.198249974434 }, { "type": "C", "frame": 6, "at": 6349.198249974434 }, { "type": "O", "frame": 20, "at": 6349.19825 }, { "type": "O", "frame": 8, "at": 6349.19825 }, { "type": "O", "frame": 9, "at": 6349.19825 }, { "type": "O", "frame": 10, "at": 6349.19825 }, { "type": "O", "frame": 11, "at": 6349.19825 }, { "type": "O", "frame": 12, "at": 6349.19825 }, { "type": "O", "frame": 13, "at": 6349.19825 }, { "type": "O", "frame": 14, "at": 6349.19825 }, { "type": "O", "frame": 15, "at": 6349.19825 }, { "type": "O", "frame": 16, "at": 6349.19825 }, { "type": "O", "frame": 21, "at": 6349.19825 }, { "type": "O", "frame": 22, "at": 6349.19825 }, { "type": "O", "frame": 23, "at": 6349.19825 }, { "type": "O", "frame": 24, "at": 6349.19825 }, { "type": "O", "frame": 18, "at": 6349.19825 }, { "type": "C", "frame": 18, "at": 6350.539292041779 }, { "type": "C", "frame": 24, "at": 6350.539292041779 }, { "type": "O", "frame": 28, "at": 6350.539292041779 }, { "type": "O", "frame": 18, "at": 6350.539292041779 }, { "type": "C", "frame": 18, "at": 6351.88179197139 }, { "type": "C", "frame": 28, "at": 6351.88179197139 }, { "type": "O", "frame": 24, "at": 6351.881792 }, { "type": "O", "frame": 18, "at": 6351.881792 }, { "type": "C", "frame": 18, "at": 6358.643959930603 }, { "type": "C", "frame": 24, "at": 6358.643959930603 }, { "type": "C", "frame": 23, "at": 6358.64396018219 }, { "type": "C", "frame": 22, "at": 6358.64396018219 }, { "type": "C", "frame": 21, "at": 6358.64396018219 }, { "type": "O", "frame": 17, "at": 6358.64396018219 }, { "type": "O", "frame": 18, "at": 6358.64396018219 }, { "type": "C", "frame": 18, "at": 6364.153708889374 }, { "type": "C", "frame": 17, "at": 6364.153708889374 }, { "type": "O", "frame": 19, "at": 6364.153709 }, { "type": "O", "frame": 18, "at": 6364.153709 }, { "type": "C", "frame": 18, "at": 6370.843250339874 }, { "type": "C", "frame": 19, "at": 6370.843250339874 }, { "type": "C", "frame": 16, "at": 6370.843250457764 }, { "type": "C", "frame": 15, "at": 6370.843250457764 }, { "type": "C", "frame": 14, "at": 6370.843250457764 }, { "type": "C", "frame": 13, "at": 6370.843250457764 }, { "type": "C", "frame": 12, "at": 6370.843250457764 }, { "type": "C", "frame": 11, "at": 6370.843250457764 }, { "type": "C", "frame": 10, "at": 6370.843250457764 }, { "type": "C", "frame": 9, "at": 6370.843250457764 }, { "type": "C", "frame": 8, "at": 6370.843250457764 }, { "type": "C", "frame": 20, "at": 6370.843250457764 }, { "type": "O", "frame": 6, "at": 6370.843250457764 }, { "type": "O", "frame": 7, "at": 6370.843250457764 }, { "type": "O", "frame": 8, "at": 6370.843250457764 }, { "type": "O", "frame": 9, "at": 6370.843250457764 }, { "type": "O", "frame": 10, "at": 6370.843250457764 }, { "type": "O", "frame": 11, "at": 6370.843250457764 }, { "type": "O", "frame": 12, "at": 6370.843250457764 }, { "type": "O", "frame": 13, "at": 6370.843250457764 }, { "type": "O", "frame": 14, "at": 6370.843250457764 }, { "type": "O", "frame": 15, "at": 6370.843250457764 }, { "type": "O", "frame": 16, "at": 6370.843250457764 }, { "type": "O", "frame": 21, "at": 6370.843250457764 }, { "type": "O", "frame": 22, "at": 6370.843250457764 }, { "type": "O", "frame": 23, "at": 6370.843250457764 }, { "type": "O", "frame": 24, "at": 6370.843250457764 }, { "type": "O", "frame": 18, "at": 6370.843250457764 }, { "type": "C", "frame": 18, "at": 6380.25425025177 }, { "type": "C", "frame": 24, "at": 6380.25425025177 }, { "type": "C", "frame": 23, "at": 6380.25425025177 }, { "type": "C", "frame": 22, "at": 6380.25425025177 }, { "type": "C", "frame": 21, "at": 6380.25425025177 }, { "type": "O", "frame": 17, "at": 6380.25425025177 }, { "type": "O", "frame": 18, "at": 6380.25425025177 }, { "type": "C", "frame": 18, "at": 6385.803666542053 }, { "type": "C", "frame": 17, "at": 6385.803666542053 }, { "type": "O", "frame": 19, "at": 6385.803667 }, { "type": "O", "frame": 18, "at": 6385.803667 }, { "type": "C", "frame": 18, "at": 6392.478042057221 }, { "type": "C", "frame": 19, "at": 6392.478042057221 }, { "type": "C", "frame": 16, "at": 6392.478042327881 }, { "type": "C", "frame": 15, "at": 6392.478042327881 }, { "type": "C", "frame": 14, "at": 6392.478042327881 }, { "type": "C", "frame": 13, "at": 6392.478042327881 }, { "type": "C", "frame": 12, "at": 6392.478042327881 }, { "type": "C", "frame": 11, "at": 6392.478042327881 }, { "type": "C", "frame": 10, "at": 6392.478042327881 }, { "type": "C", "frame": 9, "at": 6392.478042327881 }, { "type": "C", "frame": 8, "at": 6392.478042327881 }, { "type": "C", "frame": 7, "at": 6392.478042327881 }, { "type": "C", "frame": 6, "at": 6392.478042327881 }, { "type": "O", "frame": 20, "at": 6392.478042327881 }, { "type": "O", "frame": 8, "at": 6392.478042327881 }, { "type": "O", "frame": 9, "at": 6392.478042327881 }, { "type": "O", "frame": 10, "at": 6392.478042327881 }, { "type": "O", "frame": 11, "at": 6392.478042327881 }, { "type": "O", "frame": 12, "at": 6392.478042327881 }, { "type": "O", "frame": 13, "at": 6392.478042327881 }, { "type": "O", "frame": 14, "at": 6392.478042327881 }, { "type": "O", "frame": 15, "at": 6392.478042327881 }, { "type": "O", "frame": 16, "at": 6392.478042327881 }, { "type": "O", "frame": 21, "at": 6392.478042327881 }, { "type": "O", "frame": 22, "at": 6392.478042327881 }, { "type": "O", "frame": 23, "at": 6392.478042327881 }, { "type": "O", "frame": 24, "at": 6392.478042327881 }, { "type": "O", "frame": 18, "at": 6392.478042327881 }, { "type": "C", "frame": 18, "at": 6401.907041900818 }, { "type": "C", "frame": 24, "at": 6401.907041900818 }, { "type": "C", "frame": 23, "at": 6401.907041900818 }, { "type": "C", "frame": 22, "at": 6401.907041900818 }, { "type": "C", "frame": 21, "at": 6401.907041900818 }, { "type": "O", "frame": 17, "at": 6401.907042 }, { "type": "O", "frame": 18, "at": 6401.907042 }, { "type": "C", "frame": 18, "at": 6407.5042090150755 }, { "type": "C", "frame": 17, "at": 6407.5042090150755 }, { "type": "O", "frame": 19, "at": 6407.5042090150755 }, { "type": "O", "frame": 18, "at": 6407.5042090150755 }, { "type": "C", "frame": 18, "at": 6410.203416782745 }, { "type": "C", "frame": 19, "at": 6410.203416782745 }, { "type": "C", "frame": 16, "at": 6410.203416782745 }, { "type": "C", "frame": 15, "at": 6410.203416782745 }, { "type": "C", "frame": 14, "at": 6410.203416782745 }, { "type": "C", "frame": 13, "at": 6410.203416782745 }, { "type": "C", "frame": 12, "at": 6410.203416782745 }, { "type": "C", "frame": 11, "at": 6410.203416782745 }, { "type": "C", "frame": 10, "at": 6410.203416782745 }, { "type": "C", "frame": 9, "at": 6410.203416782745 }, { "type": "C", "frame": 8, "at": 6410.203416782745 }, { "type": "C", "frame": 20, "at": 6410.203416782745 }, { "type": "O", "frame": 6, "at": 6410.203417 }, { "type": "O", "frame": 7, "at": 6410.203417 }, { "type": "O", "frame": 8, "at": 6410.203417 }, { "type": "O", "frame": 9, "at": 6410.203417 }, { "type": "O", "frame": 10, "at": 6410.203417 }, { "type": "O", "frame": 11, "at": 6410.203417 }, { "type": "O", "frame": 12, "at": 6410.203417 }, { "type": "O", "frame": 13, "at": 6410.203417 }, { "type": "O", "frame": 14, "at": 6410.203417 }, { "type": "O", "frame": 15, "at": 6410.203417 }, { "type": "O", "frame": 16, "at": 6410.203417 }, { "type": "O", "frame": 21, "at": 6410.203417 }, { "type": "O", "frame": 22, "at": 6410.203417 }, { "type": "O", "frame": 23, "at": 6410.203417 }, { "type": "O", "frame": 29, "at": 6410.203417 }, { "type": "O", "frame": 18, "at": 6410.203417 }, { "type": "C", "frame": 18, "at": 6411.553000029747 }, { "type": "C", "frame": 29, "at": 6411.553000029747 }, { "type": "O", "frame": 24, "at": 6411.553000029747 }, { "type": "O", "frame": 18, "at": 6411.553000029747 }, { "type": "C", "frame": 18, "at": 6416.927125480652 }, { "type": "C", "frame": 24, "at": 6416.927125480652 }, { "type": "O", "frame": 29, "at": 6416.927125480652 }, { "type": "O", "frame": 18, "at": 6416.927125480652 }, { "type": "C", "frame": 18, "at": 6418.275916956902 }, { "type": "C", "frame": 29, "at": 6418.275916956902 }, { "type": "O", "frame": 24, "at": 6418.275917 }, { "type": "O", "frame": 18, "at": 6418.275917 }, { "type": "C", "frame": 18, "at": 6419.634959048454 }, { "type": "C", "frame": 24, "at": 6419.634959048454 }, { "type": "C", "frame": 23, "at": 6419.634959396545 }, { "type": "C", "frame": 22, "at": 6419.634959396545 }, { "type": "C", "frame": 21, "at": 6419.634959396545 }, { "type": "O", "frame": 17, "at": 6419.634959396545 }, { "type": "O", "frame": 18, "at": 6419.634959396545 }, { "type": "C", "frame": 18, "at": 6425.262416618713 }, { "type": "C", "frame": 17, "at": 6425.262416618713 }, { "type": "O", "frame": 19, "at": 6425.262417 }, { "type": "O", "frame": 18, "at": 6425.262417 }, { "type": "C", "frame": 18, "at": 6431.9230000192565 }, { "type": "C", "frame": 19, "at": 6431.9230000192565 }, { "type": "C", "frame": 16, "at": 6431.923000511352 }, { "type": "C", "frame": 15, "at": 6431.923000511352 }, { "type": "C", "frame": 14, "at": 6431.923000511352 }, { "type": "C", "frame": 13, "at": 6431.923000511352 }, { "type": "C", "frame": 12, "at": 6431.923000511352 }, { "type": "C", "frame": 11, "at": 6431.923000511352 }, { "type": "C", "frame": 10, "at": 6431.923000511352 }, { "type": "C", "frame": 9, "at": 6431.923000511352 }, { "type": "C", "frame": 8, "at": 6431.923000511352 }, { "type": "C", "frame": 7, "at": 6431.923000511352 }, { "type": "C", "frame": 6, "at": 6431.923000511352 }, { "type": "O", "frame": 20, "at": 6431.923000511352 }, { "type": "O", "frame": 8, "at": 6431.923000511352 }, { "type": "O", "frame": 9, "at": 6431.923000511352 }, { "type": "O", "frame": 10, "at": 6431.923000511352 }, { "type": "O", "frame": 11, "at": 6431.923000511352 }, { "type": "O", "frame": 12, "at": 6431.923000511352 }, { "type": "O", "frame": 13, "at": 6431.923000511352 }, { "type": "O", "frame": 14, "at": 6431.923000511352 }, { "type": "O", "frame": 15, "at": 6431.923000511352 }, { "type": "O", "frame": 16, "at": 6431.923000511352 }, { "type": "O", "frame": 21, "at": 6431.923000511352 }, { "type": "O", "frame": 22, "at": 6431.923000511352 }, { "type": "O", "frame": 23, "at": 6431.923000511352 }, { "type": "O", "frame": 24, "at": 6431.923000511352 }, { "type": "O", "frame": 18, "at": 6431.923000511352 }, { "type": "C", "frame": 18, "at": 6434.615749977112 }, { "type": "C", "frame": 24, "at": 6434.615749977112 }, { "type": "O", "frame": 25, "at": 6434.61575 }, { "type": "O", "frame": 18, "at": 6434.61575 }, { "type": "C", "frame": 18, "at": 6435.960917040825 }, { "type": "C", "frame": 25, "at": 6435.960917040825 }, { "type": "O", "frame": 24, "at": 6435.960917040825 }, { "type": "O", "frame": 18, "at": 6435.960917040825 }, { "type": "C", "frame": 18, "at": 6440.009541992371 }, { "type": "C", "frame": 24, "at": 6440.009541992371 }, { "type": "C", "frame": 23, "at": 6440.009542129516 }, { "type": "C", "frame": 22, "at": 6440.009542129516 }, { "type": "C", "frame": 21, "at": 6440.009542129516 }, { "type": "O", "frame": 17, "at": 6440.009542129516 }, { "type": "O", "frame": 18, "at": 6440.009542129516 }, { "type": "C", "frame": 18, "at": 6445.60174990863 }, { "type": "C", "frame": 17, "at": 6445.60174990863 }, { "type": "O", "frame": 19, "at": 6445.60175 }, { "type": "O", "frame": 18, "at": 6445.60175 }, { "type": "C", "frame": 18, "at": 6452.282666786194 }, { "type": "C", "frame": 19, "at": 6452.282666786194 }, { "type": "C", "frame": 16, "at": 6452.282666824341 }, { "type": "C", "frame": 15, "at": 6452.282666824341 }, { "type": "C", "frame": 14, "at": 6452.282666824341 }, { "type": "C", "frame": 13, "at": 6452.282666824341 }, { "type": "C", "frame": 12, "at": 6452.282666824341 }, { "type": "C", "frame": 11, "at": 6452.282666824341 }, { "type": "C", "frame": 10, "at": 6452.282666824341 }, { "type": "C", "frame": 9, "at": 6452.282666824341 }, { "type": "C", "frame": 8, "at": 6452.282666824341 }, { "type": "C", "frame": 20, "at": 6452.282666824341 }, { "type": "O", "frame": 6, "at": 6452.282667 }, { "type": "O", "frame": 7, "at": 6452.282667 }, { "type": "O", "frame": 8, "at": 6452.282667 }, { "type": "O", "frame": 9, "at": 6452.282667 }, { "type": "O", "frame": 10, "at": 6452.282667 }, { "type": "O", "frame": 11, "at": 6452.282667 }, { "type": "O", "frame": 12, "at": 6452.282667 }, { "type": "O", "frame": 13, "at": 6452.282667 }, { "type": "O", "frame": 14, "at": 6452.282667 }, { "type": "O", "frame": 15, "at": 6452.282667 }, { "type": "O", "frame": 16, "at": 6452.282667 }, { "type": "O", "frame": 21, "at": 6452.282667 }, { "type": "O", "frame": 22, "at": 6452.282667 }, { "type": "O", "frame": 23, "at": 6452.282667 }, { "type": "O", "frame": 24, "at": 6452.282667 }, { "type": "O", "frame": 18, "at": 6452.282667 }, { "type": "C", "frame": 18, "at": 6459.020334083741 }, { "type": "C", "frame": 24, "at": 6459.020334083741 }, { "type": "O", "frame": 29, "at": 6459.020334083741 }, { "type": "O", "frame": 18, "at": 6459.020334083741 }, { "type": "C", "frame": 18, "at": 6460.366875047096 }, { "type": "C", "frame": 29, "at": 6460.366875047096 }, { "type": "O", "frame": 24, "at": 6460.366875047096 }, { "type": "O", "frame": 18, "at": 6460.366875047096 }, { "type": "C", "frame": 18, "at": 6461.717459030151 }, { "type": "C", "frame": 24, "at": 6461.717459030151 }, { "type": "C", "frame": 23, "at": 6461.717459518616 }, { "type": "C", "frame": 22, "at": 6461.717459518616 }, { "type": "C", "frame": 21, "at": 6461.717459518616 }, { "type": "O", "frame": 17, "at": 6461.717459518616 }, { "type": "O", "frame": 18, "at": 6461.717459518616 }, { "type": "C", "frame": 18, "at": 6467.3116252788395 }, { "type": "C", "frame": 17, "at": 6467.3116252788395 }, { "type": "O", "frame": 19, "at": 6467.3116252788395 }, { "type": "O", "frame": 18, "at": 6467.3116252788395 }, { "type": "C", "frame": 18, "at": 6468.661291953087 }, { "type": "C", "frame": 19, "at": 6468.661291953087 }, { "type": "C", "frame": 16, "at": 6468.661291953087 }, { "type": "C", "frame": 15, "at": 6468.661291953087 }, { "type": "C", "frame": 14, "at": 6468.661291953087 }, { "type": "C", "frame": 13, "at": 6468.661291953087 }, { "type": "C", "frame": 12, "at": 6468.661291953087 }, { "type": "C", "frame": 11, "at": 6468.661291953087 }, { "type": "C", "frame": 10, "at": 6468.661291953087 }, { "type": "C", "frame": 9, "at": 6468.661291953087 }, { "type": "C", "frame": 8, "at": 6468.661291953087 }, { "type": "C", "frame": 7, "at": 6468.661291953087 }, { "type": "C", "frame": 6, "at": 6468.661291953087 }, { "type": "O", "frame": 20, "at": 6468.661292 }, { "type": "O", "frame": 8, "at": 6468.661292 }, { "type": "O", "frame": 9, "at": 6468.661292 }, { "type": "O", "frame": 10, "at": 6468.661292 }, { "type": "O", "frame": 11, "at": 6468.661292 }, { "type": "O", "frame": 12, "at": 6468.661292 }, { "type": "O", "frame": 13, "at": 6468.661292 }, { "type": "O", "frame": 14, "at": 6468.661292 }, { "type": "O", "frame": 15, "at": 6468.661292 }, { "type": "O", "frame": 16, "at": 6468.661292 }, { "type": "O", "frame": 21, "at": 6468.661292 }, { "type": "O", "frame": 22, "at": 6468.661292 }, { "type": "O", "frame": 23, "at": 6468.661292 }, { "type": "O", "frame": 24, "at": 6468.661292 }, { "type": "O", "frame": 18, "at": 6468.661292 }, { "type": "C", "frame": 18, "at": 6470.006249947731 }, { "type": "C", "frame": 24, "at": 6470.006249947731 }, { "type": "O", "frame": 28, "at": 6470.00625 }, { "type": "O", "frame": 18, "at": 6470.00625 }, { "type": "C", "frame": 18, "at": 6471.3472499609 }, { "type": "C", "frame": 28, "at": 6471.3472499609 }, { "type": "O", "frame": 24, "at": 6471.34725 }, { "type": "O", "frame": 18, "at": 6471.34725 }, { "type": "C", "frame": 18, "at": 6475.382999912262 }, { "type": "C", "frame": 24, "at": 6475.382999912262 }, { "type": "O", "frame": 29, "at": 6475.383 }, { "type": "O", "frame": 18, "at": 6475.383 }, { "type": "C", "frame": 18, "at": 6476.732583983421 }, { "type": "C", "frame": 29, "at": 6476.732583983421 }, { "type": "C", "frame": 23, "at": 6476.732583983421 }, { "type": "C", "frame": 22, "at": 6476.732583983421 }, { "type": "C", "frame": 21, "at": 6476.732583983421 }, { "type": "O", "frame": 17, "at": 6476.732584 }, { "type": "O", "frame": 18, "at": 6476.732584 }, { "type": "C", "frame": 18, "at": 6482.267167091736 }, { "type": "C", "frame": 17, "at": 6482.267167091736 }, { "type": "O", "frame": 19, "at": 6482.267167091736 }, { "type": "O", "frame": 18, "at": 6482.267167091736 }, { "type": "C", "frame": 18, "at": 6487.611041931335 }, { "type": "C", "frame": 19, "at": 6487.611041931335 }, { "type": "C", "frame": 16, "at": 6487.611041931335 }, { "type": "C", "frame": 15, "at": 6487.611041931335 }, { "type": "C", "frame": 14, "at": 6487.611041931335 }, { "type": "C", "frame": 13, "at": 6487.611041931335 }, { "type": "C", "frame": 12, "at": 6487.611041931335 }, { "type": "C", "frame": 11, "at": 6487.611041931335 }, { "type": "C", "frame": 10, "at": 6487.611041931335 }, { "type": "C", "frame": 9, "at": 6487.611041931335 }, { "type": "C", "frame": 8, "at": 6487.611041931335 }, { "type": "C", "frame": 20, "at": 6487.611041931335 }, { "type": "O", "frame": 6, "at": 6487.611042 }, { "type": "O", "frame": 7, "at": 6487.611042 }, { "type": "O", "frame": 8, "at": 6487.611042 }, { "type": "O", "frame": 9, "at": 6487.611042 }, { "type": "O", "frame": 10, "at": 6487.611042 }, { "type": "O", "frame": 11, "at": 6487.611042 }, { "type": "O", "frame": 12, "at": 6487.611042 }, { "type": "O", "frame": 13, "at": 6487.611042 }, { "type": "O", "frame": 14, "at": 6487.611042 }, { "type": "O", "frame": 15, "at": 6487.611042 }, { "type": "O", "frame": 16, "at": 6487.611042 }, { "type": "O", "frame": 21, "at": 6487.611042 }, { "type": "O", "frame": 22, "at": 6487.611042 }, { "type": "O", "frame": 23, "at": 6487.611042 }, { "type": "O", "frame": 24, "at": 6487.611042 }, { "type": "O", "frame": 18, "at": 6487.611042 }, { "type": "C", "frame": 18, "at": 6497.0265846025395 }, { "type": "C", "frame": 24, "at": 6497.0265846025395 }, { "type": "C", "frame": 23, "at": 6497.0265846025395 }, { "type": "C", "frame": 22, "at": 6497.0265846025395 }, { "type": "C", "frame": 21, "at": 6497.0265846025395 }, { "type": "O", "frame": 17, "at": 6497.0265846025395 }, { "type": "O", "frame": 18, "at": 6497.0265846025395 }, { "type": "C", "frame": 18, "at": 6502.506917328247 }, { "type": "C", "frame": 17, "at": 6502.506917328247 }, { "type": "O", "frame": 19, "at": 6502.506917328247 }, { "type": "O", "frame": 18, "at": 6502.506917328247 }, { "type": "C", "frame": 18, "at": 6509.2283339502255 }, { "type": "C", "frame": 19, "at": 6509.2283339502255 }, { "type": "C", "frame": 16, "at": 6509.2283339502255 }, { "type": "C", "frame": 15, "at": 6509.2283339502255 }, { "type": "C", "frame": 14, "at": 6509.2283339502255 }, { "type": "C", "frame": 13, "at": 6509.2283339502255 }, { "type": "C", "frame": 12, "at": 6509.2283339502255 }, { "type": "C", "frame": 11, "at": 6509.2283339502255 }, { "type": "C", "frame": 10, "at": 6509.2283339502255 }, { "type": "C", "frame": 9, "at": 6509.2283339502255 }, { "type": "C", "frame": 8, "at": 6509.2283339502255 }, { "type": "C", "frame": 7, "at": 6509.2283339502255 }, { "type": "C", "frame": 6, "at": 6509.2283339502255 }, { "type": "O", "frame": 20, "at": 6509.228334 }, { "type": "O", "frame": 8, "at": 6509.228334 }, { "type": "O", "frame": 9, "at": 6509.228334 }, { "type": "O", "frame": 10, "at": 6509.228334 }, { "type": "O", "frame": 11, "at": 6509.228334 }, { "type": "O", "frame": 12, "at": 6509.228334 }, { "type": "O", "frame": 13, "at": 6509.228334 }, { "type": "O", "frame": 14, "at": 6509.228334 }, { "type": "O", "frame": 15, "at": 6509.228334 }, { "type": "O", "frame": 16, "at": 6509.228334 }, { "type": "O", "frame": 21, "at": 6509.228334 }, { "type": "O", "frame": 22, "at": 6509.228334 }, { "type": "O", "frame": 23, "at": 6509.228334 }, { "type": "O", "frame": 24, "at": 6509.228334 }, { "type": "O", "frame": 18, "at": 6509.228334 }, { "type": "C", "frame": 18, "at": 6518.648833801636 }, { "type": "C", "frame": 24, "at": 6518.648833801636 }, { "type": "C", "frame": 23, "at": 6518.648833801636 }, { "type": "C", "frame": 22, "at": 6518.648833801636 }, { "type": "C", "frame": 21, "at": 6518.648833801636 }, { "type": "O", "frame": 17, "at": 6518.648834 }, { "type": "O", "frame": 18, "at": 6518.648834 }, { "type": "C", "frame": 18, "at": 6524.19416690863 }, { "type": "C", "frame": 17, "at": 6524.19416690863 }, { "type": "O", "frame": 19, "at": 6524.194167 }, { "type": "O", "frame": 18, "at": 6524.194167 }, { "type": "C", "frame": 18, "at": 6525.530833941642 }, { "type": "C", "frame": 19, "at": 6525.530833941642 }, { "type": "C", "frame": 16, "at": 6525.530833941642 }, { "type": "C", "frame": 15, "at": 6525.530833941642 }, { "type": "C", "frame": 14, "at": 6525.530833941642 }, { "type": "C", "frame": 13, "at": 6525.530833941642 }, { "type": "C", "frame": 12, "at": 6525.530833941642 }, { "type": "C", "frame": 11, "at": 6525.530833941642 }, { "type": "C", "frame": 10, "at": 6525.530833941642 }, { "type": "C", "frame": 9, "at": 6525.530833941642 }, { "type": "C", "frame": 8, "at": 6525.530833941642 }, { "type": "C", "frame": 20, "at": 6525.530833941642 }, { "type": "O", "frame": 6, "at": 6525.530834 }, { "type": "O", "frame": 7, "at": 6525.530834 }, { "type": "O", "frame": 8, "at": 6525.530834 }, { "type": "O", "frame": 9, "at": 6525.530834 }, { "type": "O", "frame": 10, "at": 6525.530834 }, { "type": "O", "frame": 11, "at": 6525.530834 }, { "type": "O", "frame": 12, "at": 6525.530834 }, { "type": "O", "frame": 13, "at": 6525.530834 }, { "type": "O", "frame": 14, "at": 6525.530834 }, { "type": "O", "frame": 15, "at": 6525.530834 }, { "type": "O", "frame": 16, "at": 6525.530834 }, { "type": "O", "frame": 21, "at": 6525.530834 }, { "type": "O", "frame": 22, "at": 6525.530834 }, { "type": "O", "frame": 23, "at": 6525.530834 }, { "type": "O", "frame": 24, "at": 6525.530834 }, { "type": "O", "frame": 18, "at": 6525.530834 }, { "type": "C", "frame": 18, "at": 6529.564791958222 }, { "type": "C", "frame": 24, "at": 6529.564791958222 }, { "type": "O", "frame": 28, "at": 6529.564792 }, { "type": "O", "frame": 18, "at": 6529.564792 }, { "type": "C", "frame": 18, "at": 6530.909458957855 }, { "type": "C", "frame": 28, "at": 6530.909458957855 }, { "type": "O", "frame": 24, "at": 6530.909459 }, { "type": "O", "frame": 18, "at": 6530.909459 }, { "type": "C", "frame": 18, "at": 6533.591709022889 }, { "type": "C", "frame": 24, "at": 6533.591709022889 }, { "type": "O", "frame": 29, "at": 6533.591709022889 }, { "type": "O", "frame": 18, "at": 6533.591709022889 }, { "type": "C", "frame": 18, "at": 6534.947959047684 }, { "type": "C", "frame": 29, "at": 6534.947959047684 }, { "type": "C", "frame": 23, "at": 6534.947959047684 }, { "type": "C", "frame": 22, "at": 6534.947959047684 }, { "type": "C", "frame": 21, "at": 6534.947959047684 }, { "type": "O", "frame": 17, "at": 6534.947959047684 }, { "type": "O", "frame": 18, "at": 6534.947959047684 }, { "type": "C", "frame": 18, "at": 6539.0489168704835 }, { "type": "C", "frame": 17, "at": 6539.0489168704835 }, { "type": "O", "frame": 19, "at": 6539.048917 }, { "type": "O", "frame": 18, "at": 6539.048917 }, { "type": "C", "frame": 18, "at": 6547.1264163896485 }, { "type": "C", "frame": 19, "at": 6547.1264163896485 }, { "type": "C", "frame": 16, "at": 6547.1264163896485 }, { "type": "C", "frame": 15, "at": 6547.1264163896485 }, { "type": "C", "frame": 14, "at": 6547.1264163896485 }, { "type": "C", "frame": 13, "at": 6547.1264163896485 }, { "type": "C", "frame": 12, "at": 6547.1264163896485 }, { "type": "C", "frame": 11, "at": 6547.1264163896485 }, { "type": "C", "frame": 10, "at": 6547.1264163896485 }, { "type": "C", "frame": 9, "at": 6547.1264163896485 }, { "type": "C", "frame": 8, "at": 6547.1264163896485 }, { "type": "C", "frame": 7, "at": 6547.1264163896485 }, { "type": "C", "frame": 6, "at": 6547.1264163896485 }, { "type": "O", "frame": 20, "at": 6547.126417 }, { "type": "O", "frame": 8, "at": 6547.126417 }, { "type": "O", "frame": 9, "at": 6547.126417 }, { "type": "O", "frame": 10, "at": 6547.126417 }, { "type": "O", "frame": 11, "at": 6547.126417 }, { "type": "O", "frame": 12, "at": 6547.126417 }, { "type": "O", "frame": 13, "at": 6547.126417 }, { "type": "O", "frame": 14, "at": 6547.126417 }, { "type": "O", "frame": 15, "at": 6547.126417 }, { "type": "O", "frame": 16, "at": 6547.126417 }, { "type": "O", "frame": 21, "at": 6547.126417 }, { "type": "O", "frame": 22, "at": 6547.126417 }, { "type": "O", "frame": 23, "at": 6547.126417 }, { "type": "O", "frame": 24, "at": 6547.126417 }, { "type": "O", "frame": 18, "at": 6547.126417 }, { "type": "C", "frame": 18, "at": 6551.125791866486 }, { "type": "C", "frame": 24, "at": 6551.125791866486 }, { "type": "O", "frame": 26, "at": 6551.125792 }, { "type": "O", "frame": 18, "at": 6551.125792 }, { "type": "C", "frame": 18, "at": 6552.463999960129 }, { "type": "C", "frame": 26, "at": 6552.463999960129 }, { "type": "O", "frame": 24, "at": 6552.464 }, { "type": "O", "frame": 18, "at": 6552.464 }, { "type": "C", "frame": 18, "at": 6553.800125016212 }, { "type": "C", "frame": 24, "at": 6553.800125016212 }, { "type": "O", "frame": 31, "at": 6553.800125016212 }, { "type": "O", "frame": 18, "at": 6553.800125016212 }, { "type": "C", "frame": 18, "at": 6555.12999999237 }, { "type": "C", "frame": 31, "at": 6555.12999999237 }, { "type": "O", "frame": 24, "at": 6555.13 }, { "type": "O", "frame": 18, "at": 6555.13 }, { "type": "C", "frame": 18, "at": 6556.479792003632 }, { "type": "C", "frame": 24, "at": 6556.479792003632 }, { "type": "C", "frame": 23, "at": 6556.479792003632 }, { "type": "C", "frame": 22, "at": 6556.479792003632 }, { "type": "C", "frame": 21, "at": 6556.479792003632 }, { "type": "O", "frame": 17, "at": 6556.479792003632 }, { "type": "O", "frame": 18, "at": 6556.479792003632 }, { "type": "C", "frame": 18, "at": 6560.618542076294 }, { "type": "C", "frame": 17, "at": 6560.618542076294 }, { "type": "O", "frame": 19, "at": 6560.618542076294 }, { "type": "O", "frame": 18, "at": 6560.618542076294 }, { "type": "C", "frame": 18, "at": 6561.964291974251 }, { "type": "C", "frame": 19, "at": 6561.964291974251 }, { "type": "C", "frame": 16, "at": 6561.964291974251 }, { "type": "C", "frame": 15, "at": 6561.964291974251 }, { "type": "C", "frame": 14, "at": 6561.964291974251 }, { "type": "C", "frame": 13, "at": 6561.964291974251 }, { "type": "C", "frame": 12, "at": 6561.964291974251 }, { "type": "C", "frame": 11, "at": 6561.964291974251 }, { "type": "C", "frame": 10, "at": 6561.964291974251 }, { "type": "C", "frame": 9, "at": 6561.964291974251 }, { "type": "C", "frame": 8, "at": 6561.964291974251 }, { "type": "C", "frame": 20, "at": 6561.964291974251 }, { "type": "O", "frame": 6, "at": 6561.964292 }, { "type": "O", "frame": 7, "at": 6561.964292 }, { "type": "O", "frame": 8, "at": 6561.964292 }, { "type": "O", "frame": 32, "at": 6561.964292 }, { "type": "O", "frame": 33, "at": 6561.964292 }, { "type": "O", "frame": 34, "at": 6561.964292 }, { "type": "O", "frame": 39, "at": 6561.964292 }, { "type": "O", "frame": 35, "at": 6561.964292 }, { "type": "O", "frame": 18, "at": 6561.964292 }, { "type": "C", "frame": 18, "at": 6563.320041964714 }, { "type": "C", "frame": 35, "at": 6563.320041964714 }, { "type": "C", "frame": 39, "at": 6563.320041964714 }, { "type": "C", "frame": 34, "at": 6563.320041964714 }, { "type": "C", "frame": 33, "at": 6563.320041964714 }, { "type": "C", "frame": 32, "at": 6563.320041964714 }, { "type": "O", "frame": 9, "at": 6563.320042 }, { "type": "O", "frame": 10, "at": 6563.320042 }, { "type": "O", "frame": 11, "at": 6563.320042 }, { "type": "O", "frame": 12, "at": 6563.320042 }, { "type": "O", "frame": 13, "at": 6563.320042 }, { "type": "O", "frame": 14, "at": 6563.320042 }, { "type": "O", "frame": 15, "at": 6563.320042 }, { "type": "O", "frame": 16, "at": 6563.320042 }, { "type": "O", "frame": 21, "at": 6563.320042 }, { "type": "O", "frame": 22, "at": 6563.320042 }, { "type": "O", "frame": 23, "at": 6563.320042 }, { "type": "O", "frame": 24, "at": 6563.320042 }, { "type": "O", "frame": 18, "at": 6563.320042 }, { "type": "C", "frame": 18, "at": 6571.351541862671 }, { "type": "C", "frame": 24, "at": 6571.351541862671 }, { "type": "C", "frame": 23, "at": 6571.351541862671 }, { "type": "C", "frame": 22, "at": 6571.351541862671 }, { "type": "C", "frame": 21, "at": 6571.351541862671 }, { "type": "O", "frame": 17, "at": 6571.351542 }, { "type": "O", "frame": 18, "at": 6571.351542 }, { "type": "C", "frame": 18, "at": 6576.914417270844 }, { "type": "C", "frame": 17, "at": 6576.914417270844 }, { "type": "O", "frame": 19, "at": 6576.914417270844 }, { "type": "O", "frame": 18, "at": 6576.914417270844 }, { "type": "C", "frame": 18, "at": 6584.960584373657 }, { "type": "C", "frame": 19, "at": 6584.960584373657 }, { "type": "C", "frame": 16, "at": 6584.960584373657 }, { "type": "C", "frame": 15, "at": 6584.960584373657 }, { "type": "C", "frame": 14, "at": 6584.960584373657 }, { "type": "C", "frame": 13, "at": 6584.960584373657 }, { "type": "C", "frame": 12, "at": 6584.960584373657 }, { "type": "C", "frame": 11, "at": 6584.960584373657 }, { "type": "C", "frame": 10, "at": 6584.960584373657 }, { "type": "C", "frame": 9, "at": 6584.960584373657 }, { "type": "C", "frame": 8, "at": 6584.960584373657 }, { "type": "C", "frame": 7, "at": 6584.960584373657 }, { "type": "C", "frame": 6, "at": 6584.960584373657 }, { "type": "O", "frame": 20, "at": 6584.960584373657 }, { "type": "O", "frame": 8, "at": 6584.960584373657 }, { "type": "O", "frame": 9, "at": 6584.960584373657 }, { "type": "O", "frame": 10, "at": 6584.960584373657 }, { "type": "O", "frame": 11, "at": 6584.960584373657 }, { "type": "O", "frame": 12, "at": 6584.960584373657 }, { "type": "O", "frame": 13, "at": 6584.960584373657 }, { "type": "O", "frame": 14, "at": 6584.960584373657 }, { "type": "O", "frame": 15, "at": 6584.960584373657 }, { "type": "O", "frame": 16, "at": 6584.960584373657 }, { "type": "O", "frame": 21, "at": 6584.960584373657 }, { "type": "O", "frame": 22, "at": 6584.960584373657 }, { "type": "O", "frame": 23, "at": 6584.960584373657 }, { "type": "O", "frame": 24, "at": 6584.960584373657 }, { "type": "O", "frame": 18, "at": 6584.960584373657 }, { "type": "C", "frame": 18, "at": 6594.432667091736 }, { "type": "C", "frame": 24, "at": 6594.432667091736 }, { "type": "C", "frame": 23, "at": 6594.432667091736 }, { "type": "C", "frame": 22, "at": 6594.432667091736 }, { "type": "C", "frame": 21, "at": 6594.432667091736 }, { "type": "O", "frame": 17, "at": 6594.432667091736 }, { "type": "O", "frame": 18, "at": 6594.432667091736 }, { "type": "C", "frame": 18, "at": 6600.007750255768 }, { "type": "C", "frame": 17, "at": 6600.007750255768 }, { "type": "O", "frame": 19, "at": 6600.007750255768 }, { "type": "O", "frame": 18, "at": 6600.007750255768 }, { "type": "C", "frame": 18, "at": 6601.41633399868 }, { "type": "C", "frame": 19, "at": 6601.41633399868 }, { "type": "C", "frame": 16, "at": 6601.41633399868 }, { "type": "C", "frame": 15, "at": 6601.41633399868 }, { "type": "C", "frame": 14, "at": 6601.41633399868 }, { "type": "C", "frame": 13, "at": 6601.41633399868 }, { "type": "C", "frame": 12, "at": 6601.41633399868 }, { "type": "C", "frame": 11, "at": 6601.41633399868 }, { "type": "C", "frame": 10, "at": 6601.41633399868 }, { "type": "C", "frame": 9, "at": 6601.41633399868 }, { "type": "C", "frame": 8, "at": 6601.41633399868 }, { "type": "C", "frame": 20, "at": 6601.41633399868 }, { "type": "O", "frame": 6, "at": 6601.416334 }, { "type": "O", "frame": 7, "at": 6601.416334 }, { "type": "O", "frame": 8, "at": 6601.416334 }, { "type": "O", "frame": 9, "at": 6601.416334 }, { "type": "O", "frame": 10, "at": 6601.416334 }, { "type": "O", "frame": 11, "at": 6601.416334 }, { "type": "O", "frame": 12, "at": 6601.416334 }, { "type": "O", "frame": 13, "at": 6601.416334 }, { "type": "O", "frame": 14, "at": 6601.416334 }, { "type": "O", "frame": 15, "at": 6601.416334 }, { "type": "O", "frame": 16, "at": 6601.416334 }, { "type": "O", "frame": 21, "at": 6601.416334 }, { "type": "O", "frame": 22, "at": 6601.416334 }, { "type": "O", "frame": 23, "at": 6601.416334 }, { "type": "O", "frame": 24, "at": 6601.416334 }, { "type": "O", "frame": 18, "at": 6601.416334 }, { "type": "C", "frame": 18, "at": 6605.495667305358 }, { "type": "C", "frame": 24, "at": 6605.495667305358 }, { "type": "O", "frame": 38, "at": 6605.495667305358 }, { "type": "O", "frame": 18, "at": 6605.495667305358 }, { "type": "C", "frame": 18, "at": 6606.856791992371 }, { "type": "C", "frame": 38, "at": 6606.856791992371 }, { "type": "O", "frame": 24, "at": 6606.856792 }, { "type": "O", "frame": 18, "at": 6606.856792 }, { "type": "C", "frame": 18, "at": 6608.208166983787 }, { "type": "C", "frame": 24, "at": 6608.208166983787 }, { "type": "O", "frame": 28, "at": 6608.208167 }, { "type": "O", "frame": 18, "at": 6608.208167 }, { "type": "C", "frame": 18, "at": 6609.555458946411 }, { "type": "C", "frame": 28, "at": 6609.555458946411 }, { "type": "O", "frame": 24, "at": 6609.555459 }, { "type": "O", "frame": 18, "at": 6609.555459 }, { "type": "C", "frame": 18, "at": 6610.909000016579 }, { "type": "C", "frame": 24, "at": 6610.909000016579 }, { "type": "C", "frame": 23, "at": 6610.909001198181 }, { "type": "C", "frame": 22, "at": 6610.909001198181 }, { "type": "C", "frame": 21, "at": 6610.909001198181 }, { "type": "O", "frame": 17, "at": 6610.909001198181 }, { "type": "O", "frame": 18, "at": 6610.909001198181 }, { "type": "C", "frame": 18, "at": 6616.456791957855 }, { "type": "C", "frame": 17, "at": 6616.456791957855 }, { "type": "O", "frame": 19, "at": 6616.456792 }, { "type": "O", "frame": 18, "at": 6616.456792 }, { "type": "C", "frame": 18, "at": 6623.156625393097 }, { "type": "C", "frame": 19, "at": 6623.156625393097 }, { "type": "C", "frame": 16, "at": 6623.156627502807 }, { "type": "C", "frame": 15, "at": 6623.156627502807 }, { "type": "C", "frame": 14, "at": 6623.156627502807 }, { "type": "C", "frame": 13, "at": 6623.156627502807 }, { "type": "C", "frame": 12, "at": 6623.156627502807 }, { "type": "C", "frame": 11, "at": 6623.156627502807 }, { "type": "C", "frame": 10, "at": 6623.156627502807 }, { "type": "C", "frame": 9, "at": 6623.156627502807 }, { "type": "C", "frame": 8, "at": 6623.156627502807 }, { "type": "C", "frame": 7, "at": 6623.156627502807 }, { "type": "C", "frame": 6, "at": 6623.156627502807 }, { "type": "O", "frame": 20, "at": 6623.156627502807 }, { "type": "O", "frame": 8, "at": 6623.156627502807 }, { "type": "O", "frame": 9, "at": 6623.156627502807 }, { "type": "O", "frame": 10, "at": 6623.156627502807 }, { "type": "O", "frame": 11, "at": 6623.156627502807 }, { "type": "O", "frame": 12, "at": 6623.156627502807 }, { "type": "O", "frame": 13, "at": 6623.156627502807 }, { "type": "O", "frame": 14, "at": 6623.156627502807 }, { "type": "O", "frame": 15, "at": 6623.156627502807 }, { "type": "O", "frame": 16, "at": 6623.156627502807 }, { "type": "O", "frame": 21, "at": 6623.156627502807 }, { "type": "O", "frame": 22, "at": 6623.156627502807 }, { "type": "O", "frame": 23, "at": 6623.156627502807 }, { "type": "O", "frame": 31, "at": 6623.156627502807 }, { "type": "O", "frame": 18, "at": 6623.156627502807 }, { "type": "C", "frame": 18, "at": 6624.509250012397 }, { "type": "C", "frame": 31, "at": 6624.509250012397 }, { "type": "O", "frame": 24, "at": 6624.509250012397 }, { "type": "O", "frame": 18, "at": 6624.509250012397 }, { "type": "C", "frame": 18, "at": 6632.618000343323 }, { "type": "C", "frame": 24, "at": 6632.618000343323 }, { "type": "C", "frame": 23, "at": 6632.618000343323 }, { "type": "C", "frame": 22, "at": 6632.618000343323 }, { "type": "C", "frame": 21, "at": 6632.618000343323 }, { "type": "O", "frame": 17, "at": 6632.618000343323 }, { "type": "O", "frame": 18, "at": 6632.618000343323 }, { "type": "C", "frame": 18, "at": 6638.3462085418705 }, { "type": "C", "frame": 17, "at": 6638.3462085418705 }, { "type": "O", "frame": 19, "at": 6638.346209 }, { "type": "O", "frame": 18, "at": 6638.346209 }, { "type": "C", "frame": 18, "at": 6643.729333828339 }, { "type": "C", "frame": 19, "at": 6643.729333828339 }, { "type": "C", "frame": 16, "at": 6643.729333828339 }, { "type": "C", "frame": 15, "at": 6643.729333828339 }, { "type": "C", "frame": 14, "at": 6643.729333828339 }, { "type": "C", "frame": 13, "at": 6643.729333828339 }, { "type": "C", "frame": 12, "at": 6643.729333828339 }, { "type": "C", "frame": 11, "at": 6643.729333828339 }, { "type": "C", "frame": 10, "at": 6643.729333828339 }, { "type": "C", "frame": 9, "at": 6643.729333828339 }, { "type": "C", "frame": 8, "at": 6643.729333828339 }, { "type": "C", "frame": 20, "at": 6643.729333828339 }, { "type": "O", "frame": 6, "at": 6643.729334 }, { "type": "O", "frame": 7, "at": 6643.729334 }, { "type": "O", "frame": 8, "at": 6643.729334 }, { "type": "O", "frame": 9, "at": 6643.729334 }, { "type": "O", "frame": 10, "at": 6643.729334 }, { "type": "O", "frame": 11, "at": 6643.729334 }, { "type": "O", "frame": 12, "at": 6643.729334 }, { "type": "O", "frame": 13, "at": 6643.729334 }, { "type": "O", "frame": 14, "at": 6643.729334 }, { "type": "O", "frame": 15, "at": 6643.729334 }, { "type": "O", "frame": 16, "at": 6643.729334 }, { "type": "O", "frame": 21, "at": 6643.729334 }, { "type": "O", "frame": 22, "at": 6643.729334 }, { "type": "O", "frame": 23, "at": 6643.729334 }, { "type": "O", "frame": 24, "at": 6643.729334 }, { "type": "O", "frame": 18, "at": 6643.729334 }, { "type": "C", "frame": 18, "at": 6653.143791321167 }, { "type": "C", "frame": 24, "at": 6653.143791321167 }, { "type": "C", "frame": 23, "at": 6653.143791321167 }, { "type": "C", "frame": 22, "at": 6653.143791321167 }, { "type": "C", "frame": 21, "at": 6653.143791321167 }, { "type": "O", "frame": 17, "at": 6653.143792 }, { "type": "O", "frame": 18, "at": 6653.143792 }, { "type": "C", "frame": 18, "at": 6658.748999920074 }, { "type": "C", "frame": 17, "at": 6658.748999920074 }, { "type": "C", "frame": 16, "at": 6658.748999920074 }, { "type": "C", "frame": 15, "at": 6658.748999920074 }, { "type": "C", "frame": 14, "at": 6658.748999920074 }, { "type": "C", "frame": 13, "at": 6658.748999920074 }, { "type": "C", "frame": 12, "at": 6658.748999920074 }, { "type": "C", "frame": 11, "at": 6658.748999920074 }, { "type": "C", "frame": 10, "at": 6658.748999920074 }, { "type": "C", "frame": 9, "at": 6658.748999920074 }, { "type": "C", "frame": 8, "at": 6658.748999920074 }, { "type": "O", "frame": 18, "at": 6658.749 }, { "type": "C", "frame": 18, "at": 6660.101167010307 }, { "type": "C", "frame": 7, "at": 6660.101167010307 }, { "type": "C", "frame": 6, "at": 6660.101167010307 }, { "type": "O", "frame": 20, "at": 6660.101167010307 }, { "type": "O", "frame": 8, "at": 6660.101167010307 }, { "type": "O", "frame": 9, "at": 6660.101167010307 }, { "type": "O", "frame": 10, "at": 6660.101167010307 }, { "type": "O", "frame": 11, "at": 6660.101167010307 }, { "type": "O", "frame": 12, "at": 6660.101167010307 }, { "type": "O", "frame": 13, "at": 6660.101167010307 }, { "type": "O", "frame": 14, "at": 6660.101167010307 }, { "type": "O", "frame": 15, "at": 6660.101167010307 }, { "type": "O", "frame": 16, "at": 6660.101167010307 }, { "type": "O", "frame": 21, "at": 6660.101167010307 }, { "type": "O", "frame": 22, "at": 6660.101167010307 }, { "type": "O", "frame": 23, "at": 6660.101167010307 }, { "type": "O", "frame": 24, "at": 6660.101167010307 }, { "type": "O", "frame": 18, "at": 6660.101167010307 }, { "type": "C", "frame": 18, "at": 6669.5403750307005 }, { "type": "C", "frame": 24, "at": 6669.5403750307005 }, { "type": "C", "frame": 23, "at": 6669.5403750307005 }, { "type": "C", "frame": 22, "at": 6669.5403750307005 }, { "type": "C", "frame": 21, "at": 6669.5403750307005 }, { "type": "O", "frame": 17, "at": 6669.5403750307005 }, { "type": "O", "frame": 18, "at": 6669.5403750307005 }, { "type": "C", "frame": 18, "at": 6675.016166931152 }, { "type": "C", "frame": 17, "at": 6675.016166931152 }, { "type": "O", "frame": 19, "at": 6675.016167 }, { "type": "O", "frame": 18, "at": 6675.016167 }, { "type": "C", "frame": 18, "at": 6681.756709411804 }, { "type": "C", "frame": 19, "at": 6681.756709411804 }, { "type": "C", "frame": 16, "at": 6681.756709411804 }, { "type": "C", "frame": 15, "at": 6681.756709411804 }, { "type": "C", "frame": 14, "at": 6681.756709411804 }, { "type": "C", "frame": 13, "at": 6681.756709411804 }, { "type": "C", "frame": 12, "at": 6681.756709411804 }, { "type": "C", "frame": 11, "at": 6681.756709411804 }, { "type": "C", "frame": 10, "at": 6681.756709411804 }, { "type": "C", "frame": 9, "at": 6681.756709411804 }, { "type": "C", "frame": 8, "at": 6681.756709411804 }, { "type": "O", "frame": 18, "at": 6681.756709411804 }, { "type": "C", "frame": 18, "at": 6683.121833940872 }, { "type": "C", "frame": 20, "at": 6683.121835029785 }, { "type": "O", "frame": 6, "at": 6683.121835029785 }, { "type": "O", "frame": 7, "at": 6683.121835029785 }, { "type": "O", "frame": 8, "at": 6683.121835029785 }, { "type": "O", "frame": 9, "at": 6683.121835029785 }, { "type": "O", "frame": 10, "at": 6683.121835029785 }, { "type": "O", "frame": 11, "at": 6683.121835029785 }, { "type": "O", "frame": 12, "at": 6683.121835029785 }, { "type": "O", "frame": 13, "at": 6683.121835029785 }, { "type": "O", "frame": 14, "at": 6683.121835029785 }, { "type": "O", "frame": 15, "at": 6683.121835029785 }, { "type": "O", "frame": 16, "at": 6683.121835029785 }, { "type": "O", "frame": 21, "at": 6683.121835029785 }, { "type": "O", "frame": 22, "at": 6683.121835029785 }, { "type": "O", "frame": 23, "at": 6683.121835029785 }, { "type": "O", "frame": 24, "at": 6683.121835029785 }, { "type": "O", "frame": 18, "at": 6683.121835029785 }, { "type": "C", "frame": 18, "at": 6692.632250030883 }, { "type": "C", "frame": 24, "at": 6692.632250030883 }, { "type": "C", "frame": 23, "at": 6692.632250030883 }, { "type": "C", "frame": 22, "at": 6692.632250030883 }, { "type": "C", "frame": 21, "at": 6692.632250030883 }, { "type": "O", "frame": 17, "at": 6692.632250030883 }, { "type": "O", "frame": 18, "at": 6692.632250030883 }, { "type": "C", "frame": 18, "at": 6698.299542118072 }, { "type": "C", "frame": 17, "at": 6698.299542118072 }, { "type": "O", "frame": 19, "at": 6698.299542118072 }, { "type": "O", "frame": 18, "at": 6698.299542118072 }, { "type": "C", "frame": 18, "at": 6703.662624885742 }, { "type": "C", "frame": 19, "at": 6703.662624885742 }, { "type": "C", "frame": 16, "at": 6703.6626264652095 }, { "type": "C", "frame": 15, "at": 6703.6626264652095 }, { "type": "C", "frame": 14, "at": 6703.6626264652095 }, { "type": "C", "frame": 13, "at": 6703.6626264652095 }, { "type": "C", "frame": 12, "at": 6703.6626264652095 }, { "type": "C", "frame": 11, "at": 6703.6626264652095 }, { "type": "C", "frame": 10, "at": 6703.6626264652095 }, { "type": "C", "frame": 9, "at": 6703.6626264652095 }, { "type": "C", "frame": 8, "at": 6703.6626264652095 }, { "type": "C", "frame": 7, "at": 6703.6626264652095 }, { "type": "C", "frame": 6, "at": 6703.6626264652095 }, { "type": "O", "frame": 20, "at": 6703.6626264652095 }, { "type": "O", "frame": 8, "at": 6703.6626264652095 }, { "type": "O", "frame": 9, "at": 6703.6626264652095 }, { "type": "O", "frame": 10, "at": 6703.6626264652095 }, { "type": "O", "frame": 11, "at": 6703.6626264652095 }, { "type": "O", "frame": 12, "at": 6703.6626264652095 }, { "type": "O", "frame": 13, "at": 6703.6626264652095 }, { "type": "O", "frame": 14, "at": 6703.6626264652095 }, { "type": "O", "frame": 15, "at": 6703.6626264652095 }, { "type": "O", "frame": 16, "at": 6703.6626264652095 }, { "type": "O", "frame": 21, "at": 6703.6626264652095 }, { "type": "O", "frame": 22, "at": 6703.6626264652095 }, { "type": "O", "frame": 23, "at": 6703.6626264652095 }, { "type": "O", "frame": 24, "at": 6703.6626264652095 }, { "type": "O", "frame": 18, "at": 6703.6626264652095 }, { "type": "C", "frame": 18, "at": 6713.101292297363 }, { "type": "C", "frame": 24, "at": 6713.101292297363 }, { "type": "C", "frame": 23, "at": 6713.101292297363 }, { "type": "C", "frame": 22, "at": 6713.101292297363 }, { "type": "C", "frame": 21, "at": 6713.101292297363 }, { "type": "O", "frame": 17, "at": 6713.101292297363 }, { "type": "O", "frame": 18, "at": 6713.101292297363 }, { "type": "C", "frame": 18, "at": 6718.6444996454165 }, { "type": "C", "frame": 17, "at": 6718.6444996454165 }, { "type": "O", "frame": 19, "at": 6718.6445 }, { "type": "O", "frame": 18, "at": 6718.6445 }, { "type": "C", "frame": 18, "at": 6725.334791881562 }, { "type": "C", "frame": 19, "at": 6725.334791881562 }, { "type": "C", "frame": 16, "at": 6725.334793731689 }, { "type": "C", "frame": 15, "at": 6725.334793731689 }, { "type": "C", "frame": 14, "at": 6725.334793731689 }, { "type": "C", "frame": 13, "at": 6725.334793731689 }, { "type": "C", "frame": 12, "at": 6725.334793731689 }, { "type": "C", "frame": 11, "at": 6725.334793731689 }, { "type": "C", "frame": 10, "at": 6725.334793731689 }, { "type": "C", "frame": 9, "at": 6725.334793731689 }, { "type": "C", "frame": 8, "at": 6725.334793731689 }, { "type": "C", "frame": 20, "at": 6725.334793731689 }, { "type": "O", "frame": 6, "at": 6725.334793731689 }, { "type": "O", "frame": 7, "at": 6725.334793731689 }, { "type": "O", "frame": 8, "at": 6725.334793731689 }, { "type": "O", "frame": 9, "at": 6725.334793731689 }, { "type": "O", "frame": 10, "at": 6725.334793731689 }, { "type": "O", "frame": 11, "at": 6725.334793731689 }, { "type": "O", "frame": 12, "at": 6725.334793731689 }, { "type": "O", "frame": 13, "at": 6725.334793731689 }, { "type": "O", "frame": 14, "at": 6725.334793731689 }, { "type": "O", "frame": 15, "at": 6725.334793731689 }, { "type": "O", "frame": 16, "at": 6725.334793731689 }, { "type": "O", "frame": 21, "at": 6725.334793731689 }, { "type": "O", "frame": 22, "at": 6725.334793731689 }, { "type": "O", "frame": 23, "at": 6725.334793731689 }, { "type": "O", "frame": 24, "at": 6725.334793731689 }, { "type": "O", "frame": 18, "at": 6725.334793731689 }, { "type": "C", "frame": 18, "at": 6734.743458610717 }, { "type": "C", "frame": 24, "at": 6734.743458610717 }, { "type": "C", "frame": 23, "at": 6734.743458610717 }, { "type": "C", "frame": 22, "at": 6734.743458610717 }, { "type": "C", "frame": 21, "at": 6734.743458610717 }, { "type": "O", "frame": 17, "at": 6734.743459 }, { "type": "O", "frame": 18, "at": 6734.743459 }, { "type": "C", "frame": 18, "at": 6740.076667084107 }, { "type": "C", "frame": 17, "at": 6740.076667084107 }, { "type": "O", "frame": 19, "at": 6740.076667084107 }, { "type": "O", "frame": 18, "at": 6740.076667084107 }, { "type": "C", "frame": 18, "at": 6741.43633394355 }, { "type": "C", "frame": 19, "at": 6741.43633394355 }, { "type": "C", "frame": 16, "at": 6741.436335426513 }, { "type": "C", "frame": 15, "at": 6741.436335426513 }, { "type": "C", "frame": 14, "at": 6741.436335426513 }, { "type": "C", "frame": 13, "at": 6741.436335426513 }, { "type": "C", "frame": 12, "at": 6741.436335426513 }, { "type": "C", "frame": 11, "at": 6741.436335426513 }, { "type": "C", "frame": 10, "at": 6741.436335426513 }, { "type": "C", "frame": 9, "at": 6741.436335426513 }, { "type": "C", "frame": 8, "at": 6741.436335426513 }, { "type": "C", "frame": 7, "at": 6741.436335426513 }, { "type": "C", "frame": 6, "at": 6741.436335426513 }, { "type": "O", "frame": 20, "at": 6741.436335426513 }, { "type": "O", "frame": 8, "at": 6741.436335426513 }, { "type": "O", "frame": 9, "at": 6741.436335426513 }, { "type": "O", "frame": 10, "at": 6741.436335426513 }, { "type": "O", "frame": 11, "at": 6741.436335426513 }, { "type": "O", "frame": 12, "at": 6741.436335426513 }, { "type": "O", "frame": 13, "at": 6741.436335426513 }, { "type": "O", "frame": 14, "at": 6741.436335426513 }, { "type": "O", "frame": 15, "at": 6741.436335426513 }, { "type": "O", "frame": 16, "at": 6741.436335426513 }, { "type": "O", "frame": 21, "at": 6741.436335426513 }, { "type": "O", "frame": 22, "at": 6741.436335426513 }, { "type": "O", "frame": 23, "at": 6741.436335426513 }, { "type": "O", "frame": 24, "at": 6741.436335426513 }, { "type": "O", "frame": 18, "at": 6741.436335426513 }, { "type": "C", "frame": 18, "at": 6749.490916595825 }, { "type": "C", "frame": 24, "at": 6749.490916595825 }, { "type": "C", "frame": 23, "at": 6749.490916595825 }, { "type": "C", "frame": 22, "at": 6749.490916595825 }, { "type": "C", "frame": 21, "at": 6749.490916595825 }, { "type": "O", "frame": 17, "at": 6749.490917 }, { "type": "O", "frame": 18, "at": 6749.490917 }, { "type": "C", "frame": 18, "at": 6755.103958877747 }, { "type": "C", "frame": 17, "at": 6755.103958877747 }, { "type": "O", "frame": 19, "at": 6755.103959 }, { "type": "O", "frame": 18, "at": 6755.103959 }, { "type": "C", "frame": 18, "at": 6761.749417221436 }, { "type": "C", "frame": 19, "at": 6761.749417221436 }, { "type": "C", "frame": 16, "at": 6761.749417648682 }, { "type": "C", "frame": 15, "at": 6761.749417648682 }, { "type": "C", "frame": 14, "at": 6761.749417648682 }, { "type": "C", "frame": 13, "at": 6761.749417648682 }, { "type": "C", "frame": 12, "at": 6761.749417648682 }, { "type": "C", "frame": 11, "at": 6761.749417648682 }, { "type": "C", "frame": 10, "at": 6761.749417648682 }, { "type": "C", "frame": 9, "at": 6761.749417648682 }, { "type": "C", "frame": 8, "at": 6761.749417648682 }, { "type": "C", "frame": 20, "at": 6761.749417648682 }, { "type": "O", "frame": 6, "at": 6761.749417648682 }, { "type": "O", "frame": 7, "at": 6761.749417648682 }, { "type": "O", "frame": 8, "at": 6761.749417648682 }, { "type": "O", "frame": 9, "at": 6761.749417648682 }, { "type": "O", "frame": 10, "at": 6761.749417648682 }, { "type": "O", "frame": 11, "at": 6761.749417648682 }, { "type": "O", "frame": 12, "at": 6761.749417648682 }, { "type": "O", "frame": 13, "at": 6761.749417648682 }, { "type": "O", "frame": 14, "at": 6761.749417648682 }, { "type": "O", "frame": 15, "at": 6761.749417648682 }, { "type": "O", "frame": 16, "at": 6761.749417648682 }, { "type": "O", "frame": 21, "at": 6761.749417648682 }, { "type": "O", "frame": 22, "at": 6761.749417648682 }, { "type": "O", "frame": 23, "at": 6761.749417648682 }, { "type": "O", "frame": 29, "at": 6761.749417648682 }, { "type": "O", "frame": 18, "at": 6761.749417648682 }, { "type": "C", "frame": 18, "at": 6763.09370904464 }, { "type": "C", "frame": 29, "at": 6763.09370904464 }, { "type": "O", "frame": 24, "at": 6763.09370904464 }, { "type": "O", "frame": 18, "at": 6763.09370904464 }, { "type": "C", "frame": 18, "at": 6765.78087497557 }, { "type": "C", "frame": 24, "at": 6765.78087497557 }, { "type": "O", "frame": 38, "at": 6765.780875 }, { "type": "O", "frame": 18, "at": 6765.780875 }, { "type": "C", "frame": 18, "at": 6767.12520900631 }, { "type": "C", "frame": 38, "at": 6767.12520900631 }, { "type": "O", "frame": 24, "at": 6767.12520900631 }, { "type": "O", "frame": 18, "at": 6767.12520900631 }, { "type": "C", "frame": 18, "at": 6771.176666881927 }, { "type": "C", "frame": 24, "at": 6771.176666881927 }, { "type": "C", "frame": 23, "at": 6771.176666908447 }, { "type": "C", "frame": 22, "at": 6771.176666908447 }, { "type": "C", "frame": 21, "at": 6771.176666908447 }, { "type": "O", "frame": 17, "at": 6771.176667 }, { "type": "O", "frame": 18, "at": 6771.176667 }, { "type": "C", "frame": 18, "at": 6776.682750011627 }, { "type": "C", "frame": 17, "at": 6776.682750011627 }, { "type": "O", "frame": 19, "at": 6776.682750011627 }, { "type": "O", "frame": 18, "at": 6776.682750011627 }, { "type": "C", "frame": 18, "at": 6782.01645923996 }, { "type": "C", "frame": 19, "at": 6782.01645923996 }, { "type": "C", "frame": 16, "at": 6782.01645923996 }, { "type": "C", "frame": 15, "at": 6782.01645923996 }, { "type": "C", "frame": 14, "at": 6782.01645923996 }, { "type": "C", "frame": 13, "at": 6782.01645923996 }, { "type": "C", "frame": 12, "at": 6782.01645923996 }, { "type": "C", "frame": 11, "at": 6782.01645923996 }, { "type": "C", "frame": 10, "at": 6782.01645923996 }, { "type": "C", "frame": 9, "at": 6782.01645923996 }, { "type": "C", "frame": 8, "at": 6782.01645923996 }, { "type": "C", "frame": 7, "at": 6782.01645923996 }, { "type": "C", "frame": 6, "at": 6782.01645923996 }, { "type": "O", "frame": 20, "at": 6782.01645923996 }, { "type": "O", "frame": 8, "at": 6782.01645923996 }, { "type": "O", "frame": 9, "at": 6782.01645923996 }, { "type": "O", "frame": 10, "at": 6782.01645923996 }, { "type": "O", "frame": 11, "at": 6782.01645923996 }, { "type": "O", "frame": 12, "at": 6782.01645923996 }, { "type": "O", "frame": 13, "at": 6782.01645923996 }, { "type": "O", "frame": 14, "at": 6782.01645923996 }, { "type": "O", "frame": 15, "at": 6782.01645923996 }, { "type": "O", "frame": 16, "at": 6782.01645923996 }, { "type": "O", "frame": 21, "at": 6782.01645923996 }, { "type": "O", "frame": 22, "at": 6782.01645923996 }, { "type": "O", "frame": 23, "at": 6782.01645923996 }, { "type": "O", "frame": 24, "at": 6782.01645923996 }, { "type": "O", "frame": 18, "at": 6782.01645923996 }, { "type": "C", "frame": 18, "at": 6790.094459068665 }, { "type": "C", "frame": 24, "at": 6790.094459068665 }, { "type": "C", "frame": 23, "at": 6790.094459068665 }, { "type": "C", "frame": 22, "at": 6790.094459068665 }, { "type": "C", "frame": 21, "at": 6790.094459068665 }, { "type": "O", "frame": 17, "at": 6790.094459068665 }, { "type": "O", "frame": 18, "at": 6790.094459068665 }, { "type": "C", "frame": 18, "at": 6795.63799995459 }, { "type": "C", "frame": 17, "at": 6795.63799995459 }, { "type": "C", "frame": 16, "at": 6795.638000976929 }, { "type": "C", "frame": 15, "at": 6795.638000976929 }, { "type": "C", "frame": 14, "at": 6795.638000976929 }, { "type": "C", "frame": 13, "at": 6795.638000976929 }, { "type": "C", "frame": 12, "at": 6795.638000976929 }, { "type": "C", "frame": 11, "at": 6795.638000976929 }, { "type": "C", "frame": 10, "at": 6795.638000976929 }, { "type": "C", "frame": 9, "at": 6795.638000976929 }, { "type": "C", "frame": 8, "at": 6795.638000976929 }, { "type": "C", "frame": 20, "at": 6795.638000976929 }, { "type": "O", "frame": 6, "at": 6795.638000976929 }, { "type": "O", "frame": 7, "at": 6795.638000976929 }, { "type": "O", "frame": 8, "at": 6795.638000976929 }, { "type": "O", "frame": 9, "at": 6795.638000976929 }, { "type": "O", "frame": 10, "at": 6795.638000976929 }, { "type": "O", "frame": 11, "at": 6795.638000976929 }, { "type": "O", "frame": 12, "at": 6795.638000976929 }, { "type": "O", "frame": 13, "at": 6795.638000976929 }, { "type": "O", "frame": 14, "at": 6795.638000976929 }, { "type": "O", "frame": 15, "at": 6795.638000976929 }, { "type": "O", "frame": 46, "at": 6795.638000976929 }, { "type": "O", "frame": 18, "at": 6795.638000976929 }, { "type": "C", "frame": 18, "at": 6796.9824999456405 }, { "type": "C", "frame": 46, "at": 6796.9824999456405 }, { "type": "O", "frame": 16, "at": 6796.9825 }, { "type": "O", "frame": 21, "at": 6796.9825 }, { "type": "O", "frame": 22, "at": 6796.9825 }, { "type": "O", "frame": 23, "at": 6796.9825 }, { "type": "O", "frame": 24, "at": 6796.9825 }, { "type": "O", "frame": 18, "at": 6796.9825 }, { "type": "C", "frame": 18, "at": 6805.058542175293 }, { "type": "C", "frame": 24, "at": 6805.058542175293 }, { "type": "C", "frame": 23, "at": 6805.058542175293 }, { "type": "C", "frame": 22, "at": 6805.058542175293 }, { "type": "C", "frame": 21, "at": 6805.058542175293 }, { "type": "O", "frame": 17, "at": 6805.058542175293 }, { "type": "O", "frame": 18, "at": 6805.058542175293 }, { "type": "C", "frame": 18, "at": 6809.163666950409 }, { "type": "C", "frame": 17, "at": 6809.163666950409 }, { "type": "O", "frame": 19, "at": 6809.163667 }, { "type": "O", "frame": 18, "at": 6809.163667 }, { "type": "C", "frame": 18, "at": 6818.589667595093 }, { "type": "C", "frame": 19, "at": 6818.589667595093 }, { "type": "C", "frame": 16, "at": 6818.589667595093 }, { "type": "C", "frame": 15, "at": 6818.589667785644 }, { "type": "C", "frame": 14, "at": 6818.589667785644 }, { "type": "C", "frame": 13, "at": 6818.589667785644 }, { "type": "C", "frame": 12, "at": 6818.589667785644 }, { "type": "C", "frame": 11, "at": 6818.589667785644 }, { "type": "C", "frame": 10, "at": 6818.589667785644 }, { "type": "C", "frame": 9, "at": 6818.589667785644 }, { "type": "C", "frame": 8, "at": 6818.589667785644 }, { "type": "C", "frame": 7, "at": 6818.589667785644 }, { "type": "C", "frame": 6, "at": 6818.589667785644 }, { "type": "O", "frame": 20, "at": 6818.589667785644 }, { "type": "O", "frame": 8, "at": 6818.589667785644 }, { "type": "O", "frame": 9, "at": 6818.589667785644 }, { "type": "O", "frame": 10, "at": 6818.589667785644 }, { "type": "O", "frame": 11, "at": 6818.589667785644 }, { "type": "O", "frame": 12, "at": 6818.589667785644 }, { "type": "O", "frame": 13, "at": 6818.589667785644 }, { "type": "O", "frame": 14, "at": 6818.589667785644 }, { "type": "O", "frame": 15, "at": 6818.589667785644 }, { "type": "O", "frame": 16, "at": 6818.589667785644 }, { "type": "O", "frame": 21, "at": 6818.589667785644 }, { "type": "O", "frame": 22, "at": 6818.589667785644 }, { "type": "O", "frame": 23, "at": 6818.589667785644 }, { "type": "O", "frame": 24, "at": 6818.589667785644 }, { "type": "O", "frame": 18, "at": 6818.589667785644 }, { "type": "C", "frame": 18, "at": 6828.003458656494 }, { "type": "C", "frame": 24, "at": 6828.003458656494 }, { "type": "C", "frame": 23, "at": 6828.003458656494 }, { "type": "C", "frame": 22, "at": 6828.003458656494 }, { "type": "C", "frame": 21, "at": 6828.003458656494 }, { "type": "O", "frame": 17, "at": 6828.003459 }, { "type": "O", "frame": 18, "at": 6828.003459 }, { "type": "C", "frame": 18, "at": 6832.109708809265 }, { "type": "C", "frame": 17, "at": 6832.109708809265 }, { "type": "O", "frame": 19, "at": 6832.109709 }, { "type": "O", "frame": 18, "at": 6832.109709 }, { "type": "C", "frame": 18, "at": 6834.786916946778 }, { "type": "C", "frame": 19, "at": 6834.786916946778 }, { "type": "C", "frame": 16, "at": 6834.786917366211 }, { "type": "C", "frame": 15, "at": 6834.786917366211 }, { "type": "C", "frame": 14, "at": 6834.786917366211 }, { "type": "C", "frame": 13, "at": 6834.786917366211 }, { "type": "C", "frame": 12, "at": 6834.786917366211 }, { "type": "C", "frame": 11, "at": 6834.786917366211 }, { "type": "C", "frame": 10, "at": 6834.786917366211 }, { "type": "C", "frame": 9, "at": 6834.786917366211 }, { "type": "C", "frame": 8, "at": 6834.786917366211 }, { "type": "C", "frame": 20, "at": 6834.786917366211 }, { "type": "O", "frame": 6, "at": 6834.786917366211 }, { "type": "O", "frame": 7, "at": 6834.786917366211 }, { "type": "O", "frame": 8, "at": 6834.786917366211 }, { "type": "O", "frame": 9, "at": 6834.786917366211 }, { "type": "O", "frame": 10, "at": 6834.786917366211 }, { "type": "O", "frame": 11, "at": 6834.786917366211 }, { "type": "O", "frame": 12, "at": 6834.786917366211 }, { "type": "O", "frame": 13, "at": 6834.786917366211 }, { "type": "O", "frame": 14, "at": 6834.786917366211 }, { "type": "O", "frame": 15, "at": 6834.786917366211 }, { "type": "O", "frame": 16, "at": 6834.786917366211 }, { "type": "O", "frame": 21, "at": 6834.786917366211 }, { "type": "O", "frame": 22, "at": 6834.786917366211 }, { "type": "O", "frame": 23, "at": 6834.786917366211 }, { "type": "O", "frame": 24, "at": 6834.786917366211 }, { "type": "O", "frame": 18, "at": 6834.786917366211 }, { "type": "C", "frame": 18, "at": 6842.848625450318 }, { "type": "C", "frame": 24, "at": 6842.848625450318 }, { "type": "C", "frame": 23, "at": 6842.848625450318 }, { "type": "C", "frame": 22, "at": 6842.848625450318 }, { "type": "C", "frame": 21, "at": 6842.848625450318 }, { "type": "O", "frame": 17, "at": 6842.848625450318 }, { "type": "O", "frame": 18, "at": 6842.848625450318 }, { "type": "C", "frame": 18, "at": 6848.375708396911 }, { "type": "C", "frame": 17, "at": 6848.375708396911 }, { "type": "O", "frame": 19, "at": 6848.375709 }, { "type": "O", "frame": 18, "at": 6848.375709 }, { "type": "C", "frame": 18, "at": 6855.079250278839 }, { "type": "C", "frame": 19, "at": 6855.079250278839 }, { "type": "C", "frame": 16, "at": 6855.079250278839 }, { "type": "C", "frame": 15, "at": 6855.079250278839 }, { "type": "C", "frame": 14, "at": 6855.079250278839 }, { "type": "C", "frame": 13, "at": 6855.079250278839 }, { "type": "C", "frame": 12, "at": 6855.079250278839 }, { "type": "C", "frame": 11, "at": 6855.079250278839 }, { "type": "C", "frame": 10, "at": 6855.079250278839 }, { "type": "C", "frame": 9, "at": 6855.079250278839 }, { "type": "C", "frame": 8, "at": 6855.079250278839 }, { "type": "C", "frame": 7, "at": 6855.079250278839 }, { "type": "C", "frame": 6, "at": 6855.079250278839 }, { "type": "O", "frame": 20, "at": 6855.079250278839 }, { "type": "O", "frame": 18, "at": 6855.079250278839 }, { "type": "C", "frame": 18, "at": 6856.428334019661 }, { "type": "O", "frame": 8, "at": 6856.428334019661 }, { "type": "O", "frame": 9, "at": 6856.428334019661 }, { "type": "O", "frame": 10, "at": 6856.428334019661 }, { "type": "O", "frame": 11, "at": 6856.428334019661 }, { "type": "O", "frame": 12, "at": 6856.428334019661 }, { "type": "O", "frame": 13, "at": 6856.428334019661 }, { "type": "O", "frame": 14, "at": 6856.428334019661 }, { "type": "O", "frame": 15, "at": 6856.428334019661 }, { "type": "O", "frame": 16, "at": 6856.428334019661 }, { "type": "O", "frame": 21, "at": 6856.428334019661 }, { "type": "O", "frame": 22, "at": 6856.428334019661 }, { "type": "O", "frame": 23, "at": 6856.428334019661 }, { "type": "O", "frame": 24, "at": 6856.428334019661 }, { "type": "O", "frame": 18, "at": 6856.428334019661 }, { "type": "C", "frame": 18, "at": 6864.5094592594 }, { "type": "C", "frame": 24, "at": 6864.5094592594 }, { "type": "C", "frame": 23, "at": 6864.5094592594 }, { "type": "C", "frame": 22, "at": 6864.5094592594 }, { "type": "C", "frame": 21, "at": 6864.5094592594 }, { "type": "O", "frame": 17, "at": 6864.5094592594 }, { "type": "O", "frame": 18, "at": 6864.5094592594 }, { "type": "C", "frame": 18, "at": 6868.6184592059935 }, { "type": "C", "frame": 17, "at": 6868.6184592059935 }, { "type": "O", "frame": 19, "at": 6868.6184592059935 }, { "type": "O", "frame": 18, "at": 6868.6184592059935 }, { "type": "C", "frame": 18, "at": 6871.288459076294 }, { "type": "C", "frame": 19, "at": 6871.288459076294 }, { "type": "C", "frame": 16, "at": 6871.2884604953615 }, { "type": "C", "frame": 15, "at": 6871.2884604953615 }, { "type": "C", "frame": 14, "at": 6871.2884604953615 }, { "type": "C", "frame": 13, "at": 6871.2884604953615 }, { "type": "C", "frame": 12, "at": 6871.2884604953615 }, { "type": "C", "frame": 11, "at": 6871.2884604953615 }, { "type": "C", "frame": 10, "at": 6871.2884604953615 }, { "type": "C", "frame": 9, "at": 6871.2884604953615 }, { "type": "C", "frame": 8, "at": 6871.2884604953615 }, { "type": "C", "frame": 20, "at": 6871.2884604953615 }, { "type": "O", "frame": 6, "at": 6871.2884604953615 }, { "type": "O", "frame": 7, "at": 6871.2884604953615 }, { "type": "O", "frame": 8, "at": 6871.2884604953615 }, { "type": "O", "frame": 9, "at": 6871.2884604953615 }, { "type": "O", "frame": 10, "at": 6871.2884604953615 }, { "type": "O", "frame": 11, "at": 6871.2884604953615 }, { "type": "O", "frame": 12, "at": 6871.2884604953615 }, { "type": "O", "frame": 13, "at": 6871.2884604953615 }, { "type": "O", "frame": 14, "at": 6871.2884604953615 }, { "type": "O", "frame": 15, "at": 6871.2884604953615 }, { "type": "O", "frame": 16, "at": 6871.2884604953615 }, { "type": "O", "frame": 21, "at": 6871.2884604953615 }, { "type": "O", "frame": 22, "at": 6871.2884604953615 }, { "type": "O", "frame": 23, "at": 6871.2884604953615 }, { "type": "O", "frame": 24, "at": 6871.2884604953615 }, { "type": "O", "frame": 18, "at": 6871.2884604953615 }, { "type": "C", "frame": 18, "at": 6880.713209328064 }, { "type": "C", "frame": 24, "at": 6880.713209328064 }, { "type": "C", "frame": 23, "at": 6880.713209328064 }, { "type": "C", "frame": 22, "at": 6880.713209328064 }, { "type": "C", "frame": 21, "at": 6880.713209328064 }, { "type": "O", "frame": 17, "at": 6880.713209328064 }, { "type": "O", "frame": 18, "at": 6880.713209328064 }, { "type": "C", "frame": 18, "at": 6884.8521669772945 }, { "type": "C", "frame": 17, "at": 6884.8521669772945 }, { "type": "O", "frame": 19, "at": 6884.852167 }, { "type": "O", "frame": 18, "at": 6884.852167 }, { "type": "C", "frame": 18, "at": 6892.90516649646 }, { "type": "C", "frame": 19, "at": 6892.90516649646 }, { "type": "C", "frame": 16, "at": 6892.9051677554935 }, { "type": "C", "frame": 15, "at": 6892.9051677554935 }, { "type": "C", "frame": 14, "at": 6892.9051677554935 }, { "type": "C", "frame": 13, "at": 6892.9051677554935 }, { "type": "C", "frame": 12, "at": 6892.9051677554935 }, { "type": "C", "frame": 11, "at": 6892.9051677554935 }, { "type": "C", "frame": 10, "at": 6892.9051677554935 }, { "type": "C", "frame": 9, "at": 6892.9051677554935 }, { "type": "C", "frame": 8, "at": 6892.9051677554935 }, { "type": "C", "frame": 7, "at": 6892.9051677554935 }, { "type": "C", "frame": 6, "at": 6892.9051677554935 }, { "type": "O", "frame": 20, "at": 6892.9051677554935 }, { "type": "O", "frame": 8, "at": 6892.9051677554935 }, { "type": "O", "frame": 9, "at": 6892.9051677554935 }, { "type": "O", "frame": 10, "at": 6892.9051677554935 }, { "type": "O", "frame": 11, "at": 6892.9051677554935 }, { "type": "O", "frame": 12, "at": 6892.9051677554935 }, { "type": "O", "frame": 13, "at": 6892.9051677554935 }, { "type": "O", "frame": 14, "at": 6892.9051677554935 }, { "type": "O", "frame": 15, "at": 6892.9051677554935 }, { "type": "O", "frame": 16, "at": 6892.9051677554935 }, { "type": "O", "frame": 21, "at": 6892.9051677554935 }, { "type": "O", "frame": 22, "at": 6892.9051677554935 }, { "type": "O", "frame": 23, "at": 6892.9051677554935 }, { "type": "O", "frame": 24, "at": 6892.9051677554935 }, { "type": "O", "frame": 18, "at": 6892.9051677554935 }, { "type": "C", "frame": 18, "at": 6898.270666973297 }, { "type": "C", "frame": 24, "at": 6898.270666973297 }, { "type": "O", "frame": 29, "at": 6898.270667 }, { "type": "O", "frame": 18, "at": 6898.270667 }, { "type": "C", "frame": 18, "at": 6899.620209021751 }, { "type": "C", "frame": 29, "at": 6899.620209021751 }, { "type": "O", "frame": 24, "at": 6899.620209021751 }, { "type": "O", "frame": 18, "at": 6899.620209021751 }, { "type": "C", "frame": 18, "at": 6900.975500008949 }, { "type": "C", "frame": 24, "at": 6900.975500008949 }, { "type": "C", "frame": 23, "at": 6900.975500480835 }, { "type": "C", "frame": 22, "at": 6900.975500480835 }, { "type": "C", "frame": 21, "at": 6900.975500480835 }, { "type": "O", "frame": 17, "at": 6900.975500480835 }, { "type": "O", "frame": 18, "at": 6900.975500480835 }, { "type": "C", "frame": 18, "at": 6905.085999858856 }, { "type": "C", "frame": 17, "at": 6905.085999858856 }, { "type": "O", "frame": 19, "at": 6905.086 }, { "type": "O", "frame": 18, "at": 6905.086 }, { "type": "C", "frame": 18, "at": 6907.769208942414 }, { "type": "C", "frame": 19, "at": 6907.769208942414 }, { "type": "C", "frame": 16, "at": 6907.769210235779 }, { "type": "C", "frame": 15, "at": 6907.769210235779 }, { "type": "C", "frame": 14, "at": 6907.769210235779 }, { "type": "C", "frame": 13, "at": 6907.769210235779 }, { "type": "C", "frame": 12, "at": 6907.769210235779 }, { "type": "C", "frame": 11, "at": 6907.769210235779 }, { "type": "C", "frame": 10, "at": 6907.769210235779 }, { "type": "C", "frame": 9, "at": 6907.769210235779 }, { "type": "C", "frame": 8, "at": 6907.769210235779 }, { "type": "C", "frame": 20, "at": 6907.769210235779 }, { "type": "O", "frame": 6, "at": 6907.769210235779 }, { "type": "O", "frame": 7, "at": 6907.769210235779 }, { "type": "O", "frame": 8, "at": 6907.769210235779 }, { "type": "O", "frame": 9, "at": 6907.769210235779 }, { "type": "O", "frame": 10, "at": 6907.769210235779 }, { "type": "O", "frame": 11, "at": 6907.769210235779 }, { "type": "O", "frame": 12, "at": 6907.769210235779 }, { "type": "O", "frame": 13, "at": 6907.769210235779 }, { "type": "O", "frame": 14, "at": 6907.769210235779 }, { "type": "O", "frame": 15, "at": 6907.769210235779 }, { "type": "O", "frame": 16, "at": 6907.769210235779 }, { "type": "O", "frame": 21, "at": 6907.769210235779 }, { "type": "O", "frame": 22, "at": 6907.769210235779 }, { "type": "O", "frame": 23, "at": 6907.769210235779 }, { "type": "O", "frame": 24, "at": 6907.769210235779 }, { "type": "O", "frame": 18, "at": 6907.769210235779 }, { "type": "C", "frame": 18, "at": 6915.822041603455 }, { "type": "C", "frame": 24, "at": 6915.822041603455 }, { "type": "C", "frame": 23, "at": 6915.822041603455 }, { "type": "C", "frame": 22, "at": 6915.822041603455 }, { "type": "C", "frame": 21, "at": 6915.822041603455 }, { "type": "O", "frame": 17, "at": 6915.822042 }, { "type": "O", "frame": 18, "at": 6915.822042 }, { "type": "C", "frame": 18, "at": 6921.275584232513 }, { "type": "C", "frame": 17, "at": 6921.275584232513 }, { "type": "O", "frame": 19, "at": 6921.275584232513 }, { "type": "O", "frame": 18, "at": 6921.275584232513 }, { "type": "C", "frame": 18, "at": 6926.6437919315185 }, { "type": "C", "frame": 19, "at": 6926.6437919315185 }, { "type": "C", "frame": 16, "at": 6926.6437919315185 }, { "type": "C", "frame": 15, "at": 6926.6437919315185 }, { "type": "C", "frame": 14, "at": 6926.6437919315185 }, { "type": "C", "frame": 13, "at": 6926.6437919315185 }, { "type": "C", "frame": 12, "at": 6926.6437919315185 }, { "type": "C", "frame": 11, "at": 6926.6437919315185 }, { "type": "C", "frame": 10, "at": 6926.6437919315185 }, { "type": "C", "frame": 9, "at": 6926.6437919315185 }, { "type": "C", "frame": 8, "at": 6926.6437919315185 }, { "type": "C", "frame": 7, "at": 6926.6437919315185 }, { "type": "C", "frame": 6, "at": 6926.6437919315185 }, { "type": "O", "frame": 20, "at": 6926.643792 }, { "type": "O", "frame": 8, "at": 6926.643792 }, { "type": "O", "frame": 9, "at": 6926.643792 }, { "type": "O", "frame": 10, "at": 6926.643792 }, { "type": "O", "frame": 11, "at": 6926.643792 }, { "type": "O", "frame": 12, "at": 6926.643792 }, { "type": "O", "frame": 13, "at": 6926.643792 }, { "type": "O", "frame": 14, "at": 6926.643792 }, { "type": "O", "frame": 15, "at": 6926.643792 }, { "type": "O", "frame": 16, "at": 6926.643792 }, { "type": "O", "frame": 21, "at": 6926.643792 }, { "type": "O", "frame": 22, "at": 6926.643792 }, { "type": "O", "frame": 23, "at": 6926.643792 }, { "type": "O", "frame": 24, "at": 6926.643792 }, { "type": "O", "frame": 18, "at": 6926.643792 }, { "type": "C", "frame": 18, "at": 6936.070791092102 }, { "type": "C", "frame": 24, "at": 6936.070791092102 }, { "type": "C", "frame": 23, "at": 6936.070791092102 }, { "type": "C", "frame": 22, "at": 6936.070791092102 }, { "type": "C", "frame": 21, "at": 6936.070791092102 }, { "type": "O", "frame": 17, "at": 6936.070792 }, { "type": "O", "frame": 18, "at": 6936.070792 }, { "type": "C", "frame": 18, "at": 6940.256459037964 }, { "type": "C", "frame": 17, "at": 6940.256459037964 }, { "type": "O", "frame": 19, "at": 6940.256459037964 }, { "type": "O", "frame": 18, "at": 6940.256459037964 }, { "type": "C", "frame": 18, "at": 6941.594499947914 }, { "type": "C", "frame": 19, "at": 6941.594499947914 }, { "type": "C", "frame": 16, "at": 6941.594499947914 }, { "type": "C", "frame": 15, "at": 6941.594499947914 }, { "type": "C", "frame": 14, "at": 6941.594499947914 }, { "type": "C", "frame": 13, "at": 6941.594499947914 }, { "type": "C", "frame": 12, "at": 6941.594499947914 }, { "type": "C", "frame": 11, "at": 6941.594499947914 }, { "type": "C", "frame": 10, "at": 6941.594499947914 }, { "type": "C", "frame": 9, "at": 6941.594499947914 }, { "type": "C", "frame": 8, "at": 6941.594499947914 }, { "type": "C", "frame": 20, "at": 6941.594499947914 }, { "type": "O", "frame": 6, "at": 6941.5945 }, { "type": "O", "frame": 7, "at": 6941.5945 }, { "type": "O", "frame": 8, "at": 6941.5945 }, { "type": "O", "frame": 9, "at": 6941.5945 }, { "type": "O", "frame": 10, "at": 6941.5945 }, { "type": "O", "frame": 11, "at": 6941.5945 }, { "type": "O", "frame": 12, "at": 6941.5945 }, { "type": "O", "frame": 13, "at": 6941.5945 }, { "type": "O", "frame": 14, "at": 6941.5945 }, { "type": "O", "frame": 15, "at": 6941.5945 }, { "type": "O", "frame": 16, "at": 6941.5945 }, { "type": "O", "frame": 21, "at": 6941.5945 }, { "type": "O", "frame": 22, "at": 6941.5945 }, { "type": "O", "frame": 23, "at": 6941.5945 }, { "type": "O", "frame": 28, "at": 6941.5945 }, { "type": "O", "frame": 18, "at": 6941.5945 }, { "type": "C", "frame": 18, "at": 6942.942791993141 }, { "type": "C", "frame": 28, "at": 6942.942791993141 }, { "type": "O", "frame": 24, "at": 6942.942792 }, { "type": "O", "frame": 18, "at": 6942.942792 }, { "type": "C", "frame": 18, "at": 6951.051292480652 }, { "type": "C", "frame": 24, "at": 6951.051292480652 }, { "type": "C", "frame": 23, "at": 6951.051292480652 }, { "type": "C", "frame": 22, "at": 6951.051292480652 }, { "type": "C", "frame": 21, "at": 6951.051292480652 }, { "type": "O", "frame": 17, "at": 6951.051292480652 }, { "type": "O", "frame": 18, "at": 6951.051292480652 }, { "type": "C", "frame": 18, "at": 6955.184291897003 }, { "type": "C", "frame": 17, "at": 6955.184291897003 }, { "type": "O", "frame": 19, "at": 6955.184292 }, { "type": "O", "frame": 18, "at": 6955.184292 }, { "type": "C", "frame": 18, "at": 6960.517666500275 }, { "type": "C", "frame": 19, "at": 6960.517666500275 }, { "type": "C", "frame": 16, "at": 6960.517666500275 }, { "type": "C", "frame": 15, "at": 6960.517666500275 }, { "type": "C", "frame": 14, "at": 6960.517666500275 }, { "type": "C", "frame": 13, "at": 6960.517666500275 }, { "type": "C", "frame": 12, "at": 6960.517666500275 }, { "type": "C", "frame": 11, "at": 6960.517666500275 }, { "type": "C", "frame": 10, "at": 6960.517666500275 }, { "type": "C", "frame": 9, "at": 6960.517666500275 }, { "type": "C", "frame": 8, "at": 6960.517666500275 }, { "type": "C", "frame": 7, "at": 6960.517666500275 }, { "type": "C", "frame": 6, "at": 6960.517666500275 }, { "type": "O", "frame": 20, "at": 6960.517667 }, { "type": "O", "frame": 8, "at": 6960.517667 }, { "type": "O", "frame": 9, "at": 6960.517667 }, { "type": "O", "frame": 10, "at": 6960.517667 }, { "type": "O", "frame": 11, "at": 6960.517667 }, { "type": "O", "frame": 12, "at": 6960.517667 }, { "type": "O", "frame": 13, "at": 6960.517667 }, { "type": "O", "frame": 14, "at": 6960.517667 }, { "type": "O", "frame": 15, "at": 6960.517667 }, { "type": "O", "frame": 16, "at": 6960.517667 }, { "type": "O", "frame": 21, "at": 6960.517667 }, { "type": "O", "frame": 22, "at": 6960.517667 }, { "type": "O", "frame": 23, "at": 6960.517667 }, { "type": "O", "frame": 24, "at": 6960.517667 }, { "type": "O", "frame": 18, "at": 6960.517667 }, { "type": "C", "frame": 18, "at": 6969.925334160034 }, { "type": "C", "frame": 24, "at": 6969.925334160034 }, { "type": "C", "frame": 23, "at": 6969.925334160034 }, { "type": "C", "frame": 22, "at": 6969.925334160034 }, { "type": "C", "frame": 21, "at": 6969.925334160034 }, { "type": "O", "frame": 17, "at": 6969.925334160034 }, { "type": "O", "frame": 18, "at": 6969.925334160034 }, { "type": "C", "frame": 18, "at": 6974.022417091735 }, { "type": "C", "frame": 17, "at": 6974.022417091735 }, { "type": "O", "frame": 19, "at": 6974.022417091735 }, { "type": "O", "frame": 18, "at": 6974.022417091735 }, { "type": "C", "frame": 18, "at": 6982.021041801636 }, { "type": "C", "frame": 19, "at": 6982.021041801636 }, { "type": "C", "frame": 16, "at": 6982.02104300708 }, { "type": "C", "frame": 15, "at": 6982.02104300708 }, { "type": "C", "frame": 14, "at": 6982.02104300708 }, { "type": "C", "frame": 13, "at": 6982.02104300708 }, { "type": "C", "frame": 12, "at": 6982.02104300708 }, { "type": "C", "frame": 11, "at": 6982.02104300708 }, { "type": "C", "frame": 10, "at": 6982.02104300708 }, { "type": "C", "frame": 9, "at": 6982.02104300708 }, { "type": "C", "frame": 8, "at": 6982.02104300708 }, { "type": "C", "frame": 20, "at": 6982.02104300708 }, { "type": "O", "frame": 6, "at": 6982.02104300708 }, { "type": "O", "frame": 7, "at": 6982.02104300708 }, { "type": "O", "frame": 8, "at": 6982.02104300708 }, { "type": "O", "frame": 9, "at": 6982.02104300708 }, { "type": "O", "frame": 10, "at": 6982.02104300708 }, { "type": "O", "frame": 11, "at": 6982.02104300708 }, { "type": "O", "frame": 12, "at": 6982.02104300708 }, { "type": "O", "frame": 13, "at": 6982.02104300708 }, { "type": "O", "frame": 14, "at": 6982.02104300708 }, { "type": "O", "frame": 15, "at": 6982.02104300708 }, { "type": "O", "frame": 16, "at": 6982.02104300708 }, { "type": "O", "frame": 21, "at": 6982.02104300708 }, { "type": "O", "frame": 22, "at": 6982.02104300708 }, { "type": "O", "frame": 23, "at": 6982.02104300708 }, { "type": "O", "frame": 24, "at": 6982.02104300708 }, { "type": "O", "frame": 18, "at": 6982.02104300708 }, { "type": "C", "frame": 18, "at": 6990.095584045594 }, { "type": "C", "frame": 24, "at": 6990.095584045594 }, { "type": "C", "frame": 23, "at": 6990.095584045594 }, { "type": "C", "frame": 22, "at": 6990.095584045594 }, { "type": "C", "frame": 21, "at": 6990.095584045594 }, { "type": "O", "frame": 17, "at": 6990.095584045594 }, { "type": "O", "frame": 18, "at": 6990.095584045594 }, { "type": "C", "frame": 18, "at": 6995.594708526977 }, { "type": "C", "frame": 17, "at": 6995.594708526977 }, { "type": "O", "frame": 19, "at": 6995.594709 }, { "type": "O", "frame": 18, "at": 6995.594709 }, { "type": "C", "frame": 18, "at": 6996.947916945824 }, { "type": "C", "frame": 19, "at": 6996.947916945824 }, { "type": "C", "frame": 16, "at": 6996.947916945824 }, { "type": "C", "frame": 15, "at": 6996.947916945824 }, { "type": "C", "frame": 14, "at": 6996.947916945824 }, { "type": "C", "frame": 13, "at": 6996.947916945824 }, { "type": "C", "frame": 12, "at": 6996.947916945824 }, { "type": "C", "frame": 11, "at": 6996.947916945824 }, { "type": "C", "frame": 10, "at": 6996.947916945824 }, { "type": "C", "frame": 9, "at": 6996.947916945824 }, { "type": "C", "frame": 8, "at": 6996.947916945824 }, { "type": "C", "frame": 7, "at": 6996.947916945824 }, { "type": "C", "frame": 6, "at": 6996.947916945824 }, { "type": "O", "frame": 20, "at": 6996.947917 }, { "type": "O", "frame": 8, "at": 6996.947917 }, { "type": "O", "frame": 9, "at": 6996.947917 }, { "type": "O", "frame": 10, "at": 6996.947917 }, { "type": "O", "frame": 11, "at": 6996.947917 }, { "type": "O", "frame": 12, "at": 6996.947917 }, { "type": "O", "frame": 13, "at": 6996.947917 }, { "type": "O", "frame": 14, "at": 6996.947917 }, { "type": "O", "frame": 15, "at": 6996.947917 }, { "type": "O", "frame": 16, "at": 6996.947917 }, { "type": "O", "frame": 21, "at": 6996.947917 }, { "type": "O", "frame": 22, "at": 6996.947917 }, { "type": "O", "frame": 23, "at": 6996.947917 }, { "type": "O", "frame": 24, "at": 6996.947917 }, { "type": "O", "frame": 18, "at": 6996.947917 }, { "type": "C", "frame": 18, "at": 7003.675249592011 }, { "type": "C", "frame": 24, "at": 7003.675249592011 }, { "type": "O", "frame": 38, "at": 7003.67525 }, { "type": "O", "frame": 18, "at": 7003.67525 }, { "type": "C", "frame": 18, "at": 7005.023917025566 }, { "type": "C", "frame": 38, "at": 7005.023917025566 }, { "type": "C", "frame": 23, "at": 7005.023917025566 }, { "type": "C", "frame": 22, "at": 7005.023917025566 }, { "type": "C", "frame": 21, "at": 7005.023917025566 }, { "type": "O", "frame": 17, "at": 7005.023917025566 }, { "type": "O", "frame": 18, "at": 7005.023917025566 }, { "type": "C", "frame": 18, "at": 7009.1349590227055 }, { "type": "C", "frame": 17, "at": 7009.1349590227055 }, { "type": "O", "frame": 19, "at": 7009.1349590227055 }, { "type": "O", "frame": 18, "at": 7009.1349590227055 }, { "type": "C", "frame": 18, "at": 7015.790250080475 }, { "type": "C", "frame": 19, "at": 7015.790250080475 }, { "type": "C", "frame": 16, "at": 7015.790250080475 }, { "type": "C", "frame": 15, "at": 7015.790250080475 }, { "type": "C", "frame": 14, "at": 7015.790250080475 }, { "type": "C", "frame": 13, "at": 7015.790250080475 }, { "type": "C", "frame": 12, "at": 7015.790250080475 }, { "type": "C", "frame": 11, "at": 7015.790250080475 }, { "type": "C", "frame": 10, "at": 7015.790250080475 }, { "type": "C", "frame": 9, "at": 7015.790250080475 }, { "type": "C", "frame": 8, "at": 7015.790250080475 }, { "type": "C", "frame": 20, "at": 7015.790250080475 }, { "type": "O", "frame": 6, "at": 7015.790250080475 }, { "type": "O", "frame": 7, "at": 7015.790250080475 }, { "type": "O", "frame": 8, "at": 7015.790250080475 }, { "type": "O", "frame": 9, "at": 7015.790250080475 }, { "type": "O", "frame": 10, "at": 7015.790250080475 }, { "type": "O", "frame": 11, "at": 7015.790250080475 }, { "type": "O", "frame": 12, "at": 7015.790250080475 }, { "type": "O", "frame": 13, "at": 7015.790250080475 }, { "type": "O", "frame": 14, "at": 7015.790250080475 }, { "type": "O", "frame": 15, "at": 7015.790250080475 }, { "type": "O", "frame": 16, "at": 7015.790250080475 }, { "type": "O", "frame": 21, "at": 7015.790250080475 }, { "type": "O", "frame": 22, "at": 7015.790250080475 }, { "type": "O", "frame": 23, "at": 7015.790250080475 }, { "type": "O", "frame": 24, "at": 7015.790250080475 }, { "type": "O", "frame": 18, "at": 7015.790250080475 }, { "type": "C", "frame": 18, "at": 7023.862417396545 }, { "type": "C", "frame": 24, "at": 7023.862417396545 }, { "type": "C", "frame": 23, "at": 7023.862417396545 }, { "type": "C", "frame": 22, "at": 7023.862417396545 }, { "type": "C", "frame": 21, "at": 7023.862417396545 }, { "type": "O", "frame": 17, "at": 7023.862417396545 }, { "type": "O", "frame": 18, "at": 7023.862417396545 }, { "type": "C", "frame": 18, "at": 7029.328083770935 }, { "type": "C", "frame": 17, "at": 7029.328083770935 }, { "type": "O", "frame": 19, "at": 7029.328084 }, { "type": "O", "frame": 18, "at": 7029.328084 }, { "type": "C", "frame": 18, "at": 7034.694167145141 }, { "type": "C", "frame": 19, "at": 7034.694167145141 }, { "type": "C", "frame": 16, "at": 7034.694169219971 }, { "type": "C", "frame": 15, "at": 7034.694169219971 }, { "type": "C", "frame": 14, "at": 7034.694169219971 }, { "type": "C", "frame": 13, "at": 7034.694169219971 }, { "type": "C", "frame": 12, "at": 7034.694169219971 }, { "type": "C", "frame": 11, "at": 7034.694169219971 }, { "type": "C", "frame": 10, "at": 7034.694169219971 }, { "type": "C", "frame": 9, "at": 7034.694169219971 }, { "type": "C", "frame": 8, "at": 7034.694169219971 }, { "type": "C", "frame": 7, "at": 7034.694169219971 }, { "type": "C", "frame": 6, "at": 7034.694169219971 }, { "type": "O", "frame": 20, "at": 7034.694169219971 }, { "type": "O", "frame": 8, "at": 7034.694169219971 }, { "type": "O", "frame": 9, "at": 7034.694169219971 }, { "type": "O", "frame": 10, "at": 7034.694169219971 }, { "type": "O", "frame": 11, "at": 7034.694169219971 }, { "type": "O", "frame": 12, "at": 7034.694169219971 }, { "type": "O", "frame": 13, "at": 7034.694169219971 }, { "type": "O", "frame": 14, "at": 7034.694169219971 }, { "type": "O", "frame": 15, "at": 7034.694169219971 }, { "type": "O", "frame": 16, "at": 7034.694169219971 }, { "type": "O", "frame": 21, "at": 7034.694169219971 }, { "type": "O", "frame": 22, "at": 7034.694169219971 }, { "type": "O", "frame": 23, "at": 7034.694169219971 }, { "type": "O", "frame": 28, "at": 7034.694169219971 }, { "type": "O", "frame": 18, "at": 7034.694169219971 }, { "type": "C", "frame": 18, "at": 7036.036666971389 }, { "type": "C", "frame": 28, "at": 7036.036666971389 }, { "type": "O", "frame": 24, "at": 7036.036667 }, { "type": "O", "frame": 18, "at": 7036.036667 }, { "type": "C", "frame": 18, "at": 7044.106499801819 }, { "type": "C", "frame": 24, "at": 7044.106499801819 }, { "type": "C", "frame": 23, "at": 7044.106500488464 }, { "type": "C", "frame": 22, "at": 7044.106500488464 }, { "type": "C", "frame": 21, "at": 7044.106500488464 }, { "type": "O", "frame": 17, "at": 7044.106500488464 }, { "type": "O", "frame": 18, "at": 7044.106500488464 }, { "type": "C", "frame": 18, "at": 7048.208542198181 }, { "type": "C", "frame": 17, "at": 7048.208542198181 }, { "type": "O", "frame": 19, "at": 7048.208542198181 }, { "type": "O", "frame": 18, "at": 7048.208542198181 }, { "type": "C", "frame": 18, "at": 7049.549333940689 }, { "type": "C", "frame": 19, "at": 7049.549333940689 }, { "type": "C", "frame": 16, "at": 7049.549334388916 }, { "type": "C", "frame": 15, "at": 7049.549334388916 }, { "type": "C", "frame": 14, "at": 7049.549334388916 }, { "type": "C", "frame": 13, "at": 7049.549334388916 }, { "type": "C", "frame": 12, "at": 7049.549334388916 }, { "type": "C", "frame": 11, "at": 7049.549334388916 }, { "type": "C", "frame": 10, "at": 7049.549334388916 }, { "type": "C", "frame": 9, "at": 7049.549334388916 }, { "type": "C", "frame": 8, "at": 7049.549334388916 }, { "type": "C", "frame": 20, "at": 7049.549334388916 }, { "type": "O", "frame": 6, "at": 7049.549334388916 }, { "type": "O", "frame": 7, "at": 7049.549334388916 }, { "type": "O", "frame": 8, "at": 7049.549334388916 }, { "type": "O", "frame": 9, "at": 7049.549334388916 }, { "type": "O", "frame": 10, "at": 7049.549334388916 }, { "type": "O", "frame": 11, "at": 7049.549334388916 }, { "type": "O", "frame": 12, "at": 7049.549334388916 }, { "type": "O", "frame": 13, "at": 7049.549334388916 }, { "type": "O", "frame": 14, "at": 7049.549334388916 }, { "type": "O", "frame": 15, "at": 7049.549334388916 }, { "type": "O", "frame": 16, "at": 7049.549334388916 }, { "type": "O", "frame": 21, "at": 7049.549334388916 }, { "type": "O", "frame": 22, "at": 7049.549334388916 }, { "type": "O", "frame": 23, "at": 7049.549334388916 }, { "type": "O", "frame": 24, "at": 7049.549334388916 }, { "type": "O", "frame": 18, "at": 7049.549334388916 }, { "type": "C", "frame": 18, "at": 7052.242792080292 }, { "type": "C", "frame": 24, "at": 7052.242792080292 }, { "type": "O", "frame": 31, "at": 7052.242792080292 }, { "type": "O", "frame": 18, "at": 7052.242792080292 }, { "type": "C", "frame": 18, "at": 7053.582041968529 }, { "type": "C", "frame": 31, "at": 7053.582041968529 }, { "type": "O", "frame": 24, "at": 7053.582042 }, { "type": "O", "frame": 18, "at": 7053.582042 }, { "type": "C", "frame": 18, "at": 7056.270209095184 }, { "type": "C", "frame": 24, "at": 7056.270209095184 }, { "type": "O", "frame": 38, "at": 7056.270209095184 }, { "type": "O", "frame": 18, "at": 7056.270209095184 }, { "type": "C", "frame": 18, "at": 7057.619916961083 }, { "type": "C", "frame": 38, "at": 7057.619916961083 }, { "type": "C", "frame": 23, "at": 7057.619917343506 }, { "type": "C", "frame": 22, "at": 7057.619917343506 }, { "type": "C", "frame": 21, "at": 7057.619917343506 }, { "type": "O", "frame": 17, "at": 7057.619917343506 }, { "type": "O", "frame": 18, "at": 7057.619917343506 }, { "type": "C", "frame": 18, "at": 7063.168416584198 }, { "type": "C", "frame": 17, "at": 7063.168416584198 }, { "type": "O", "frame": 19, "at": 7063.168417 }, { "type": "O", "frame": 18, "at": 7063.168417 }, { "type": "C", "frame": 18, "at": 7068.529833816711 }, { "type": "C", "frame": 19, "at": 7068.529833816711 }, { "type": "C", "frame": 16, "at": 7068.529833816711 }, { "type": "C", "frame": 15, "at": 7068.529833816711 }, { "type": "C", "frame": 14, "at": 7068.529833816711 }, { "type": "C", "frame": 13, "at": 7068.529833816711 }, { "type": "C", "frame": 12, "at": 7068.529833816711 }, { "type": "C", "frame": 11, "at": 7068.529833816711 }, { "type": "C", "frame": 10, "at": 7068.529833816711 }, { "type": "C", "frame": 9, "at": 7068.529833816711 }, { "type": "C", "frame": 8, "at": 7068.529833816711 }, { "type": "C", "frame": 7, "at": 7068.529833816711 }, { "type": "C", "frame": 6, "at": 7068.529833816711 }, { "type": "O", "frame": 20, "at": 7068.529834 }, { "type": "O", "frame": 8, "at": 7068.529834 }, { "type": "O", "frame": 9, "at": 7068.529834 }, { "type": "O", "frame": 10, "at": 7068.529834 }, { "type": "O", "frame": 11, "at": 7068.529834 }, { "type": "O", "frame": 12, "at": 7068.529834 }, { "type": "O", "frame": 13, "at": 7068.529834 }, { "type": "O", "frame": 14, "at": 7068.529834 }, { "type": "O", "frame": 15, "at": 7068.529834 }, { "type": "O", "frame": 16, "at": 7068.529834 }, { "type": "O", "frame": 21, "at": 7068.529834 }, { "type": "O", "frame": 22, "at": 7068.529834 }, { "type": "O", "frame": 23, "at": 7068.529834 }, { "type": "O", "frame": 24, "at": 7068.529834 }, { "type": "O", "frame": 18, "at": 7068.529834 }, { "type": "C", "frame": 18, "at": 7071.260791984924 }, { "type": "C", "frame": 24, "at": 7071.260791984924 }, { "type": "O", "frame": 29, "at": 7071.260792 }, { "type": "O", "frame": 18, "at": 7071.260792 }, { "type": "C", "frame": 18, "at": 7072.603124959175 }, { "type": "C", "frame": 29, "at": 7072.603124959175 }, { "type": "O", "frame": 26, "at": 7072.603125 }, { "type": "O", "frame": 18, "at": 7072.603125 }, { "type": "C", "frame": 18, "at": 7073.942750000953 }, { "type": "C", "frame": 26, "at": 7073.942750000953 }, { "type": "O", "frame": 24, "at": 7073.942750000953 }, { "type": "O", "frame": 18, "at": 7073.942750000953 }, { "type": "C", "frame": 18, "at": 7077.991834186554 }, { "type": "C", "frame": 24, "at": 7077.991834186554 }, { "type": "C", "frame": 23, "at": 7077.991834186554 }, { "type": "C", "frame": 22, "at": 7077.991834186554 }, { "type": "C", "frame": 21, "at": 7077.991834186554 }, { "type": "O", "frame": 17, "at": 7077.991834186554 }, { "type": "O", "frame": 18, "at": 7077.991834186554 }, { "type": "C", "frame": 18, "at": 7082.12595875586 }, { "type": "C", "frame": 17, "at": 7082.12595875586 }, { "type": "O", "frame": 19, "at": 7082.125959 }, { "type": "O", "frame": 18, "at": 7082.125959 }, { "type": "C", "frame": 18, "at": 7083.456500014671 }, { "type": "C", "frame": 19, "at": 7083.456500014671 }, { "type": "C", "frame": 16, "at": 7083.456500014671 }, { "type": "C", "frame": 15, "at": 7083.456500014671 }, { "type": "C", "frame": 14, "at": 7083.456500014671 }, { "type": "C", "frame": 13, "at": 7083.456500014671 }, { "type": "C", "frame": 12, "at": 7083.456500014671 }, { "type": "C", "frame": 11, "at": 7083.456500014671 }, { "type": "C", "frame": 10, "at": 7083.456500014671 }, { "type": "C", "frame": 9, "at": 7083.456500014671 }, { "type": "C", "frame": 8, "at": 7083.456500014671 }, { "type": "C", "frame": 20, "at": 7083.456500014671 }, { "type": "O", "frame": 6, "at": 7083.456500014671 }, { "type": "O", "frame": 7, "at": 7083.456500014671 }, { "type": "O", "frame": 8, "at": 7083.456500014671 }, { "type": "O", "frame": 9, "at": 7083.456500014671 }, { "type": "O", "frame": 10, "at": 7083.456500014671 }, { "type": "O", "frame": 11, "at": 7083.456500014671 }, { "type": "O", "frame": 12, "at": 7083.456500014671 }, { "type": "O", "frame": 13, "at": 7083.456500014671 }, { "type": "O", "frame": 14, "at": 7083.456500014671 }, { "type": "O", "frame": 15, "at": 7083.456500014671 }, { "type": "O", "frame": 16, "at": 7083.456500014671 }, { "type": "O", "frame": 21, "at": 7083.456500014671 }, { "type": "O", "frame": 22, "at": 7083.456500014671 }, { "type": "O", "frame": 23, "at": 7083.456500014671 }, { "type": "O", "frame": 24, "at": 7083.456500014671 }, { "type": "O", "frame": 18, "at": 7083.456500014671 }, { "type": "C", "frame": 18, "at": 7090.183709091187 }, { "type": "C", "frame": 24, "at": 7090.183709091187 }, { "type": "O", "frame": 38, "at": 7090.183709091187 }, { "type": "O", "frame": 18, "at": 7090.183709091187 }, { "type": "C", "frame": 18, "at": 7091.5329999669875 }, { "type": "C", "frame": 38, "at": 7091.5329999669875 }, { "type": "O", "frame": 24, "at": 7091.533 }, { "type": "O", "frame": 18, "at": 7091.533 }, { "type": "C", "frame": 18, "at": 7092.893625028611 }, { "type": "C", "frame": 24, "at": 7092.893625028611 }, { "type": "C", "frame": 23, "at": 7092.893625205994 }, { "type": "C", "frame": 22, "at": 7092.893625205994 }, { "type": "C", "frame": 21, "at": 7092.893625205994 }, { "type": "O", "frame": 17, "at": 7092.893625205994 }, { "type": "O", "frame": 18, "at": 7092.893625205994 }, { "type": "C", "frame": 18, "at": 7097.089291790008 }, { "type": "C", "frame": 17, "at": 7097.089291790008 }, { "type": "O", "frame": 19, "at": 7097.089292 }, { "type": "O", "frame": 18, "at": 7097.089292 }, { "type": "C", "frame": 18, "at": 7103.754000137512 }, { "type": "C", "frame": 19, "at": 7103.754000137512 }, { "type": "C", "frame": 16, "at": 7103.754000137512 }, { "type": "C", "frame": 15, "at": 7103.754000137512 }, { "type": "C", "frame": 14, "at": 7103.754000137512 }, { "type": "C", "frame": 13, "at": 7103.754000137512 }, { "type": "C", "frame": 12, "at": 7103.754000137512 }, { "type": "C", "frame": 11, "at": 7103.754000137512 }, { "type": "C", "frame": 10, "at": 7103.754000137512 }, { "type": "C", "frame": 9, "at": 7103.754000137512 }, { "type": "C", "frame": 8, "at": 7103.754000137512 }, { "type": "O", "frame": 18, "at": 7103.754000137512 }, { "type": "C", "frame": 18, "at": 7105.167666963577 }, { "type": "C", "frame": 7, "at": 7105.167666963577 }, { "type": "C", "frame": 6, "at": 7105.167666963577 }, { "type": "O", "frame": 20, "at": 7105.167667 }, { "type": "O", "frame": 8, "at": 7105.167667 }, { "type": "O", "frame": 9, "at": 7105.167667 }, { "type": "O", "frame": 10, "at": 7105.167667 }, { "type": "O", "frame": 11, "at": 7105.167667 }, { "type": "O", "frame": 12, "at": 7105.167667 }, { "type": "O", "frame": 13, "at": 7105.167667 }, { "type": "O", "frame": 14, "at": 7105.167667 }, { "type": "O", "frame": 15, "at": 7105.167667 }, { "type": "O", "frame": 16, "at": 7105.167667 }, { "type": "O", "frame": 21, "at": 7105.167667 }, { "type": "O", "frame": 22, "at": 7105.167667 }, { "type": "O", "frame": 23, "at": 7105.167667 }, { "type": "O", "frame": 24, "at": 7105.167667 }, { "type": "O", "frame": 18, "at": 7105.167667 }, { "type": "C", "frame": 18, "at": 7113.232249824707 }, { "type": "C", "frame": 24, "at": 7113.232249824707 }, { "type": "C", "frame": 23, "at": 7113.232249824707 }, { "type": "C", "frame": 22, "at": 7113.232249824707 }, { "type": "C", "frame": 21, "at": 7113.232249824707 }, { "type": "O", "frame": 17, "at": 7113.23225 }, { "type": "O", "frame": 18, "at": 7113.23225 }, { "type": "C", "frame": 18, "at": 7117.323084140778 }, { "type": "C", "frame": 17, "at": 7117.323084140778 }, { "type": "O", "frame": 19, "at": 7117.323084140778 }, { "type": "O", "frame": 18, "at": 7117.323084140778 }, { "type": "C", "frame": 18, "at": 7120.007709148773 }, { "type": "C", "frame": 19, "at": 7120.007709148773 }, { "type": "C", "frame": 16, "at": 7120.007709148773 }, { "type": "C", "frame": 15, "at": 7120.007709148773 }, { "type": "C", "frame": 14, "at": 7120.007709148773 }, { "type": "C", "frame": 13, "at": 7120.007709148773 }, { "type": "C", "frame": 12, "at": 7120.007709148773 }, { "type": "C", "frame": 11, "at": 7120.007709148773 }, { "type": "C", "frame": 10, "at": 7120.007709148773 }, { "type": "C", "frame": 9, "at": 7120.007709148773 }, { "type": "C", "frame": 8, "at": 7120.007709148773 }, { "type": "C", "frame": 20, "at": 7120.007709148773 }, { "type": "O", "frame": 6, "at": 7120.007709148773 }, { "type": "O", "frame": 7, "at": 7120.007709148773 }, { "type": "O", "frame": 8, "at": 7120.007709148773 }, { "type": "O", "frame": 9, "at": 7120.007709148773 }, { "type": "O", "frame": 10, "at": 7120.007709148773 }, { "type": "O", "frame": 11, "at": 7120.007709148773 }, { "type": "O", "frame": 12, "at": 7120.007709148773 }, { "type": "O", "frame": 13, "at": 7120.007709148773 }, { "type": "O", "frame": 14, "at": 7120.007709148773 }, { "type": "O", "frame": 15, "at": 7120.007709148773 }, { "type": "O", "frame": 16, "at": 7120.007709148773 }, { "type": "O", "frame": 21, "at": 7120.007709148773 }, { "type": "O", "frame": 22, "at": 7120.007709148773 }, { "type": "O", "frame": 23, "at": 7120.007709148773 }, { "type": "O", "frame": 28, "at": 7120.007709148773 }, { "type": "O", "frame": 18, "at": 7120.007709148773 }, { "type": "C", "frame": 18, "at": 7121.36349997271 }, { "type": "C", "frame": 28, "at": 7121.36349997271 }, { "type": "O", "frame": 24, "at": 7121.3635 }, { "type": "O", "frame": 18, "at": 7121.3635 }, { "type": "C", "frame": 18, "at": 7129.464667678833 }, { "type": "C", "frame": 24, "at": 7129.464667678833 }, { "type": "C", "frame": 23, "at": 7129.464667770752 }, { "type": "C", "frame": 22, "at": 7129.464667770752 }, { "type": "C", "frame": 21, "at": 7129.464667770752 }, { "type": "O", "frame": 17, "at": 7129.464667770752 }, { "type": "O", "frame": 18, "at": 7129.464667770752 }, { "type": "C", "frame": 18, "at": 7133.568417228882 }, { "type": "C", "frame": 17, "at": 7133.568417228882 }, { "type": "O", "frame": 19, "at": 7133.568417228882 }, { "type": "O", "frame": 18, "at": 7133.568417228882 }, { "type": "C", "frame": 18, "at": 7141.541624950592 }, { "type": "C", "frame": 19, "at": 7141.541624950592 }, { "type": "C", "frame": 16, "at": 7141.541625473389 }, { "type": "C", "frame": 15, "at": 7141.541625473389 }, { "type": "C", "frame": 14, "at": 7141.541625473389 }, { "type": "C", "frame": 13, "at": 7141.541625473389 }, { "type": "C", "frame": 12, "at": 7141.541625473389 }, { "type": "C", "frame": 11, "at": 7141.541625473389 }, { "type": "C", "frame": 10, "at": 7141.541625473389 }, { "type": "C", "frame": 9, "at": 7141.541625473389 }, { "type": "C", "frame": 8, "at": 7141.541625473389 }, { "type": "C", "frame": 7, "at": 7141.541625473389 }, { "type": "C", "frame": 6, "at": 7141.541625473389 }, { "type": "O", "frame": 20, "at": 7141.541625473389 }, { "type": "O", "frame": 8, "at": 7141.541625473389 }, { "type": "O", "frame": 9, "at": 7141.541625473389 }, { "type": "O", "frame": 10, "at": 7141.541625473389 }, { "type": "O", "frame": 11, "at": 7141.541625473389 }, { "type": "O", "frame": 12, "at": 7141.541625473389 }, { "type": "O", "frame": 13, "at": 7141.541625473389 }, { "type": "O", "frame": 14, "at": 7141.541625473389 }, { "type": "O", "frame": 15, "at": 7141.541625473389 }, { "type": "O", "frame": 16, "at": 7141.541625473389 }, { "type": "O", "frame": 21, "at": 7141.541625473389 }, { "type": "O", "frame": 22, "at": 7141.541625473389 }, { "type": "O", "frame": 23, "at": 7141.541625473389 }, { "type": "O", "frame": 24, "at": 7141.541625473389 }, { "type": "O", "frame": 18, "at": 7141.541625473389 }, { "type": "C", "frame": 18, "at": 7149.599667526245 }, { "type": "C", "frame": 24, "at": 7149.599667526245 }, { "type": "C", "frame": 23, "at": 7149.599667526245 }, { "type": "C", "frame": 22, "at": 7149.599667526245 }, { "type": "C", "frame": 21, "at": 7149.599667526245 }, { "type": "O", "frame": 17, "at": 7149.599667526245 }, { "type": "O", "frame": 18, "at": 7149.599667526245 }, { "type": "C", "frame": 18, "at": 7155.017042087738 }, { "type": "C", "frame": 17, "at": 7155.017042087738 }, { "type": "O", "frame": 19, "at": 7155.017042087738 }, { "type": "O", "frame": 18, "at": 7155.017042087738 }, { "type": "C", "frame": 18, "at": 7160.333166916077 }, { "type": "C", "frame": 19, "at": 7160.333166916077 }, { "type": "C", "frame": 16, "at": 7160.3331670532225 }, { "type": "C", "frame": 15, "at": 7160.3331670532225 }, { "type": "C", "frame": 14, "at": 7160.3331670532225 }, { "type": "C", "frame": 13, "at": 7160.3331670532225 }, { "type": "C", "frame": 12, "at": 7160.3331670532225 }, { "type": "C", "frame": 11, "at": 7160.3331670532225 }, { "type": "C", "frame": 10, "at": 7160.3331670532225 }, { "type": "C", "frame": 9, "at": 7160.3331670532225 }, { "type": "C", "frame": 8, "at": 7160.3331670532225 }, { "type": "C", "frame": 20, "at": 7160.3331670532225 }, { "type": "O", "frame": 6, "at": 7160.3331670532225 }, { "type": "O", "frame": 7, "at": 7160.3331670532225 }, { "type": "O", "frame": 8, "at": 7160.3331670532225 }, { "type": "O", "frame": 9, "at": 7160.3331670532225 }, { "type": "O", "frame": 10, "at": 7160.3331670532225 }, { "type": "O", "frame": 11, "at": 7160.3331670532225 }, { "type": "O", "frame": 12, "at": 7160.3331670532225 }, { "type": "O", "frame": 13, "at": 7160.3331670532225 }, { "type": "O", "frame": 14, "at": 7160.3331670532225 }, { "type": "O", "frame": 15, "at": 7160.3331670532225 }, { "type": "O", "frame": 16, "at": 7160.3331670532225 }, { "type": "O", "frame": 21, "at": 7160.3331670532225 }, { "type": "O", "frame": 22, "at": 7160.3331670532225 }, { "type": "O", "frame": 23, "at": 7160.3331670532225 }, { "type": "O", "frame": 24, "at": 7160.3331670532225 }, { "type": "O", "frame": 18, "at": 7160.3331670532225 }, { "type": "C", "frame": 18, "at": 7165.717749996368 }, { "type": "C", "frame": 24, "at": 7165.717749996368 }, { "type": "O", "frame": 29, "at": 7165.71775 }, { "type": "O", "frame": 18, "at": 7165.71775 }, { "type": "C", "frame": 18, "at": 7167.054834054947 }, { "type": "C", "frame": 29, "at": 7167.054834054947 }, { "type": "O", "frame": 24, "at": 7167.054834054947 }, { "type": "O", "frame": 18, "at": 7167.054834054947 }, { "type": "C", "frame": 18, "at": 7168.392917028793 }, { "type": "C", "frame": 24, "at": 7168.392917028793 }, { "type": "O", "frame": 25, "at": 7168.392917028793 }, { "type": "O", "frame": 18, "at": 7168.392917028793 }, { "type": "C", "frame": 18, "at": 7169.743167005722 }, { "type": "C", "frame": 25, "at": 7169.743167005722 }, { "type": "C", "frame": 23, "at": 7169.743167801086 }, { "type": "C", "frame": 22, "at": 7169.743167801086 }, { "type": "C", "frame": 21, "at": 7169.743167801086 }, { "type": "O", "frame": 17, "at": 7169.743167801086 }, { "type": "O", "frame": 18, "at": 7169.743167801086 }, { "type": "C", "frame": 18, "at": 7173.815792160217 }, { "type": "C", "frame": 17, "at": 7173.815792160217 }, { "type": "O", "frame": 19, "at": 7173.815792160217 }, { "type": "O", "frame": 18, "at": 7173.815792160217 }, { "type": "C", "frame": 18, "at": 7176.508999979203 }, { "type": "C", "frame": 19, "at": 7176.508999979203 }, { "type": "C", "frame": 16, "at": 7176.5090016557615 }, { "type": "C", "frame": 15, "at": 7176.5090016557615 }, { "type": "C", "frame": 14, "at": 7176.5090016557615 }, { "type": "C", "frame": 13, "at": 7176.5090016557615 }, { "type": "C", "frame": 12, "at": 7176.5090016557615 }, { "type": "C", "frame": 11, "at": 7176.5090016557615 }, { "type": "C", "frame": 10, "at": 7176.5090016557615 }, { "type": "C", "frame": 9, "at": 7176.5090016557615 }, { "type": "C", "frame": 8, "at": 7176.5090016557615 }, { "type": "C", "frame": 7, "at": 7176.5090016557615 }, { "type": "C", "frame": 6, "at": 7176.5090016557615 }, { "type": "O", "frame": 20, "at": 7176.5090016557615 }, { "type": "O", "frame": 18, "at": 7176.5090016557615 }, { "type": "C", "frame": 18, "at": 7177.852124985695 }, { "type": "O", "frame": 8, "at": 7177.852125 }, { "type": "O", "frame": 9, "at": 7177.852125 }, { "type": "O", "frame": 10, "at": 7177.852125 }, { "type": "O", "frame": 11, "at": 7177.852125 }, { "type": "O", "frame": 12, "at": 7177.852125 }, { "type": "O", "frame": 13, "at": 7177.852125 }, { "type": "O", "frame": 14, "at": 7177.852125 }, { "type": "O", "frame": 15, "at": 7177.852125 }, { "type": "O", "frame": 16, "at": 7177.852125 }, { "type": "O", "frame": 21, "at": 7177.852125 }, { "type": "O", "frame": 22, "at": 7177.852125 }, { "type": "O", "frame": 23, "at": 7177.852125 }, { "type": "O", "frame": 24, "at": 7177.852125 }, { "type": "O", "frame": 18, "at": 7177.852125 }, { "type": "C", "frame": 18, "at": 7181.884542297364 }, { "type": "C", "frame": 24, "at": 7181.884542297364 }, { "type": "O", "frame": 28, "at": 7181.884542297364 }, { "type": "O", "frame": 18, "at": 7181.884542297364 }, { "type": "C", "frame": 18, "at": 7183.233584057991 }, { "type": "C", "frame": 28, "at": 7183.233584057991 }, { "type": "O", "frame": 24, "at": 7183.233584057991 }, { "type": "O", "frame": 18, "at": 7183.233584057991 }, { "type": "C", "frame": 18, "at": 7185.9575420154415 }, { "type": "C", "frame": 24, "at": 7185.9575420154415 }, { "type": "C", "frame": 23, "at": 7185.957542251587 }, { "type": "C", "frame": 22, "at": 7185.957542251587 }, { "type": "C", "frame": 21, "at": 7185.957542251587 }, { "type": "O", "frame": 17, "at": 7185.957542251587 }, { "type": "O", "frame": 18, "at": 7185.957542251587 }, { "type": "C", "frame": 18, "at": 7190.176874695007 }, { "type": "C", "frame": 17, "at": 7190.176874695007 }, { "type": "O", "frame": 19, "at": 7190.176875 }, { "type": "O", "frame": 18, "at": 7190.176875 }, { "type": "C", "frame": 18, "at": 7196.847624664307 }, { "type": "C", "frame": 19, "at": 7196.847624664307 }, { "type": "C", "frame": 16, "at": 7196.8476255645755 }, { "type": "C", "frame": 15, "at": 7196.8476255645755 }, { "type": "C", "frame": 14, "at": 7196.8476255645755 }, { "type": "C", "frame": 13, "at": 7196.8476255645755 }, { "type": "C", "frame": 12, "at": 7196.8476255645755 }, { "type": "C", "frame": 11, "at": 7196.8476255645755 }, { "type": "C", "frame": 10, "at": 7196.8476255645755 }, { "type": "C", "frame": 9, "at": 7196.8476255645755 }, { "type": "C", "frame": 8, "at": 7196.8476255645755 }, { "type": "C", "frame": 20, "at": 7196.847626861572 }, { "type": "O", "frame": 6, "at": 7196.847626861572 }, { "type": "O", "frame": 7, "at": 7196.847626861572 }, { "type": "O", "frame": 8, "at": 7196.847626861572 }, { "type": "O", "frame": 9, "at": 7196.847626861572 }, { "type": "O", "frame": 10, "at": 7196.847626861572 }, { "type": "O", "frame": 11, "at": 7196.847626861572 }, { "type": "O", "frame": 12, "at": 7196.847626861572 }, { "type": "O", "frame": 13, "at": 7196.847626861572 }, { "type": "O", "frame": 14, "at": 7196.847626861572 }, { "type": "O", "frame": 15, "at": 7196.847626861572 }, { "type": "O", "frame": 16, "at": 7196.847626861572 }, { "type": "O", "frame": 21, "at": 7196.847626861572 }, { "type": "O", "frame": 22, "at": 7196.847626861572 }, { "type": "O", "frame": 23, "at": 7196.847626861572 }, { "type": "O", "frame": 24, "at": 7196.847626861572 }, { "type": "O", "frame": 18, "at": 7196.847626861572 }, { "type": "C", "frame": 18, "at": 7199.55483411026 }, { "type": "C", "frame": 24, "at": 7199.55483411026 }, { "type": "O", "frame": 29, "at": 7199.55483411026 }, { "type": "O", "frame": 18, "at": 7199.55483411026 }, { "type": "C", "frame": 18, "at": 7200.896334043869 }, { "type": "C", "frame": 29, "at": 7200.896334043869 }, { "type": "O", "frame": 24, "at": 7200.896334043869 }, { "type": "O", "frame": 18, "at": 7200.896334043869 }, { "type": "C", "frame": 18, "at": 7206.275958843597 }, { "type": "C", "frame": 24, "at": 7206.275958843597 }, { "type": "C", "frame": 23, "at": 7206.275958843597 }, { "type": "C", "frame": 22, "at": 7206.275958843597 }, { "type": "C", "frame": 21, "at": 7206.275958843597 }, { "type": "O", "frame": 17, "at": 7206.275959 }, { "type": "O", "frame": 18, "at": 7206.275959 }, { "type": "C", "frame": 18, "at": 7210.385375007995 }, { "type": "C", "frame": 17, "at": 7210.385375007995 }, { "type": "O", "frame": 19, "at": 7210.385375007995 }, { "type": "O", "frame": 18, "at": 7210.385375007995 }, { "type": "C", "frame": 18, "at": 7211.716500020981 }, { "type": "C", "frame": 19, "at": 7211.716500020981 }, { "type": "C", "frame": 16, "at": 7211.71650050354 }, { "type": "C", "frame": 15, "at": 7211.71650050354 }, { "type": "C", "frame": 14, "at": 7211.71650050354 }, { "type": "C", "frame": 13, "at": 7211.71650050354 }, { "type": "C", "frame": 12, "at": 7211.71650050354 }, { "type": "C", "frame": 11, "at": 7211.71650050354 }, { "type": "C", "frame": 10, "at": 7211.71650050354 }, { "type": "C", "frame": 9, "at": 7211.71650050354 }, { "type": "C", "frame": 8, "at": 7211.71650050354 }, { "type": "C", "frame": 7, "at": 7211.71650050354 }, { "type": "C", "frame": 6, "at": 7211.71650050354 }, { "type": "O", "frame": 20, "at": 7211.71650050354 }, { "type": "O", "frame": 8, "at": 7211.71650050354 }, { "type": "O", "frame": 9, "at": 7211.71650050354 }, { "type": "O", "frame": 10, "at": 7211.71650050354 }, { "type": "O", "frame": 11, "at": 7211.71650050354 }, { "type": "O", "frame": 12, "at": 7211.71650050354 }, { "type": "O", "frame": 13, "at": 7211.71650050354 }, { "type": "O", "frame": 14, "at": 7211.71650050354 }, { "type": "O", "frame": 15, "at": 7211.71650050354 }, { "type": "O", "frame": 16, "at": 7211.71650050354 }, { "type": "O", "frame": 21, "at": 7211.71650050354 }, { "type": "O", "frame": 22, "at": 7211.71650050354 }, { "type": "O", "frame": 23, "at": 7211.71650050354 }, { "type": "O", "frame": 24, "at": 7211.71650050354 }, { "type": "O", "frame": 18, "at": 7211.71650050354 }, { "type": "C", "frame": 18, "at": 7219.773709014893 }, { "type": "C", "frame": 24, "at": 7219.773709014893 }, { "type": "C", "frame": 23, "at": 7219.773709014893 }, { "type": "C", "frame": 22, "at": 7219.773709014893 }, { "type": "C", "frame": 21, "at": 7219.773709014893 }, { "type": "O", "frame": 17, "at": 7219.773709014893 }, { "type": "O", "frame": 18, "at": 7219.773709014893 }, { "type": "C", "frame": 18, "at": 7225.221041859039 }, { "type": "C", "frame": 17, "at": 7225.221041859039 }, { "type": "O", "frame": 19, "at": 7225.221042 }, { "type": "O", "frame": 18, "at": 7225.221042 }, { "type": "C", "frame": 18, "at": 7230.574333988373 }, { "type": "C", "frame": 19, "at": 7230.574333988373 }, { "type": "C", "frame": 16, "at": 7230.574333988373 }, { "type": "C", "frame": 15, "at": 7230.574333988373 }, { "type": "C", "frame": 14, "at": 7230.574333988373 }, { "type": "C", "frame": 13, "at": 7230.574333988373 }, { "type": "C", "frame": 12, "at": 7230.574333988373 }, { "type": "C", "frame": 11, "at": 7230.574333988373 }, { "type": "C", "frame": 10, "at": 7230.574333988373 }, { "type": "C", "frame": 9, "at": 7230.574333988373 }, { "type": "C", "frame": 8, "at": 7230.574333988373 }, { "type": "C", "frame": 20, "at": 7230.574333988373 }, { "type": "O", "frame": 6, "at": 7230.574334 }, { "type": "O", "frame": 7, "at": 7230.574334 }, { "type": "O", "frame": 8, "at": 7230.574334 }, { "type": "O", "frame": 9, "at": 7230.574334 }, { "type": "O", "frame": 10, "at": 7230.574334 }, { "type": "O", "frame": 11, "at": 7230.574334 }, { "type": "O", "frame": 12, "at": 7230.574334 }, { "type": "O", "frame": 13, "at": 7230.574334 }, { "type": "O", "frame": 14, "at": 7230.574334 }, { "type": "O", "frame": 15, "at": 7230.574334 }, { "type": "O", "frame": 16, "at": 7230.574334 }, { "type": "O", "frame": 21, "at": 7230.574334 }, { "type": "O", "frame": 22, "at": 7230.574334 }, { "type": "O", "frame": 23, "at": 7230.574334 }, { "type": "O", "frame": 24, "at": 7230.574334 }, { "type": "O", "frame": 18, "at": 7230.574334 }, { "type": "C", "frame": 18, "at": 7233.269749973663 }, { "type": "C", "frame": 24, "at": 7233.269749973663 }, { "type": "O", "frame": 49, "at": 7233.26975 }, { "type": "O", "frame": 18, "at": 7233.26975 }, { "type": "C", "frame": 18, "at": 7234.621209026337 }, { "type": "C", "frame": 49, "at": 7234.621209026337 }, { "type": "O", "frame": 24, "at": 7234.621209026337 }, { "type": "O", "frame": 18, "at": 7234.621209026337 }, { "type": "C", "frame": 18, "at": 7238.658459041962 }, { "type": "C", "frame": 24, "at": 7238.658459041962 }, { "type": "O", "frame": 28, "at": 7238.658459041962 }, { "type": "O", "frame": 18, "at": 7238.658459041962 }, { "type": "C", "frame": 18, "at": 7240.0170000118105 }, { "type": "C", "frame": 28, "at": 7240.0170000118105 }, { "type": "C", "frame": 23, "at": 7240.017001007446 }, { "type": "C", "frame": 22, "at": 7240.017001007446 }, { "type": "C", "frame": 21, "at": 7240.017001007446 }, { "type": "O", "frame": 17, "at": 7240.017001007446 }, { "type": "O", "frame": 18, "at": 7240.017001007446 }, { "type": "C", "frame": 18, "at": 7244.13191727829 }, { "type": "C", "frame": 17, "at": 7244.13191727829 }, { "type": "O", "frame": 19, "at": 7244.13191727829 }, { "type": "O", "frame": 18, "at": 7244.13191727829 }, { "type": "C", "frame": 18, "at": 7245.494209051315 }, { "type": "C", "frame": 19, "at": 7245.494209051315 }, { "type": "C", "frame": 16, "at": 7245.494210098633 }, { "type": "C", "frame": 15, "at": 7245.494210098633 }, { "type": "C", "frame": 14, "at": 7245.494210098633 }, { "type": "C", "frame": 13, "at": 7245.494210098633 }, { "type": "C", "frame": 12, "at": 7245.494210098633 }, { "type": "C", "frame": 11, "at": 7245.494210098633 }, { "type": "C", "frame": 10, "at": 7245.494210098633 }, { "type": "C", "frame": 9, "at": 7245.494210098633 }, { "type": "C", "frame": 8, "at": 7245.494210098633 }, { "type": "C", "frame": 7, "at": 7245.494210098633 }, { "type": "C", "frame": 6, "at": 7245.494210098633 }, { "type": "O", "frame": 20, "at": 7245.494210098633 }, { "type": "O", "frame": 8, "at": 7245.494210098633 }, { "type": "O", "frame": 9, "at": 7245.494210098633 }, { "type": "O", "frame": 10, "at": 7245.494210098633 }, { "type": "O", "frame": 11, "at": 7245.494210098633 }, { "type": "O", "frame": 12, "at": 7245.494210098633 }, { "type": "O", "frame": 13, "at": 7245.494210098633 }, { "type": "O", "frame": 14, "at": 7245.494210098633 }, { "type": "O", "frame": 15, "at": 7245.494210098633 }, { "type": "O", "frame": 16, "at": 7245.494210098633 }, { "type": "O", "frame": 21, "at": 7245.494210098633 }, { "type": "O", "frame": 22, "at": 7245.494210098633 }, { "type": "O", "frame": 23, "at": 7245.494210098633 }, { "type": "O", "frame": 24, "at": 7245.494210098633 }, { "type": "O", "frame": 18, "at": 7245.494210098633 }, { "type": "C", "frame": 18, "at": 7248.174209066758 }, { "type": "C", "frame": 24, "at": 7248.174209066758 }, { "type": "O", "frame": 25, "at": 7248.174209066758 }, { "type": "O", "frame": 18, "at": 7248.174209066758 }, { "type": "C", "frame": 18, "at": 7249.51766705645 }, { "type": "C", "frame": 25, "at": 7249.51766705645 }, { "type": "O", "frame": 24, "at": 7249.51766705645 }, { "type": "O", "frame": 18, "at": 7249.51766705645 }, { "type": "C", "frame": 18, "at": 7254.898499672119 }, { "type": "C", "frame": 24, "at": 7254.898499672119 }, { "type": "C", "frame": 23, "at": 7254.8985001529545 }, { "type": "C", "frame": 22, "at": 7254.8985001529545 }, { "type": "C", "frame": 21, "at": 7254.8985001529545 }, { "type": "O", "frame": 17, "at": 7254.8985001529545 }, { "type": "O", "frame": 18, "at": 7254.8985001529545 }, { "type": "C", "frame": 18, "at": 7259.072875057221 }, { "type": "C", "frame": 17, "at": 7259.072875057221 }, { "type": "O", "frame": 19, "at": 7259.072875057221 }, { "type": "O", "frame": 18, "at": 7259.072875057221 }, { "type": "C", "frame": 18, "at": 7264.416874862671 }, { "type": "C", "frame": 19, "at": 7264.416874862671 }, { "type": "C", "frame": 16, "at": 7264.416875549683 }, { "type": "C", "frame": 15, "at": 7264.416875549683 }, { "type": "C", "frame": 14, "at": 7264.416875549683 }, { "type": "C", "frame": 13, "at": 7264.416875549683 }, { "type": "C", "frame": 12, "at": 7264.416875549683 }, { "type": "C", "frame": 11, "at": 7264.416875549683 }, { "type": "C", "frame": 10, "at": 7264.416875549683 }, { "type": "C", "frame": 9, "at": 7264.416875549683 }, { "type": "C", "frame": 8, "at": 7264.416875549683 }, { "type": "C", "frame": 20, "at": 7264.416875549683 }, { "type": "O", "frame": 6, "at": 7264.416875549683 }, { "type": "O", "frame": 7, "at": 7264.416875549683 }, { "type": "O", "frame": 8, "at": 7264.416875549683 }, { "type": "O", "frame": 9, "at": 7264.416875549683 }, { "type": "O", "frame": 10, "at": 7264.416875549683 }, { "type": "O", "frame": 11, "at": 7264.416875549683 }, { "type": "O", "frame": 12, "at": 7264.416875549683 }, { "type": "O", "frame": 13, "at": 7264.416875549683 }, { "type": "O", "frame": 14, "at": 7264.416875549683 }, { "type": "O", "frame": 15, "at": 7264.416875549683 }, { "type": "O", "frame": 16, "at": 7264.416875549683 }, { "type": "O", "frame": 21, "at": 7264.416875549683 }, { "type": "O", "frame": 22, "at": 7264.416875549683 }, { "type": "O", "frame": 23, "at": 7264.416875549683 }, { "type": "O", "frame": 24, "at": 7264.416875549683 }, { "type": "O", "frame": 18, "at": 7264.416875549683 }, { "type": "C", "frame": 18, "at": 7273.822709197998 }, { "type": "C", "frame": 24, "at": 7273.822709197998 }, { "type": "C", "frame": 23, "at": 7273.822709197998 }, { "type": "C", "frame": 22, "at": 7273.822709197998 }, { "type": "C", "frame": 21, "at": 7273.822709197998 }, { "type": "O", "frame": 17, "at": 7273.822709197998 }, { "type": "O", "frame": 18, "at": 7273.822709197998 }, { "type": "C", "frame": 18, "at": 7277.907667076477 }, { "type": "C", "frame": 17, "at": 7277.907667076477 }, { "type": "O", "frame": 19, "at": 7277.907667076477 }, { "type": "O", "frame": 18, "at": 7277.907667076477 }, { "type": "C", "frame": 18, "at": 7286.00770934314 }, { "type": "C", "frame": 19, "at": 7286.00770934314 }, { "type": "C", "frame": 16, "at": 7286.00770934314 }, { "type": "C", "frame": 15, "at": 7286.00770934314 }, { "type": "C", "frame": 14, "at": 7286.00770934314 }, { "type": "C", "frame": 13, "at": 7286.00770934314 }, { "type": "C", "frame": 12, "at": 7286.00770934314 }, { "type": "C", "frame": 11, "at": 7286.00770934314 }, { "type": "C", "frame": 10, "at": 7286.00770934314 }, { "type": "C", "frame": 9, "at": 7286.00770934314 }, { "type": "C", "frame": 8, "at": 7286.00770934314 }, { "type": "C", "frame": 7, "at": 7286.00770934314 }, { "type": "C", "frame": 6, "at": 7286.00770934314 }, { "type": "O", "frame": 20, "at": 7286.00770934314 }, { "type": "O", "frame": 8, "at": 7286.00770934314 }, { "type": "O", "frame": 9, "at": 7286.00770934314 }, { "type": "O", "frame": 10, "at": 7286.00770934314 }, { "type": "O", "frame": 11, "at": 7286.00770934314 }, { "type": "O", "frame": 12, "at": 7286.00770934314 }, { "type": "O", "frame": 13, "at": 7286.00770934314 }, { "type": "O", "frame": 14, "at": 7286.00770934314 }, { "type": "O", "frame": 15, "at": 7286.00770934314 }, { "type": "O", "frame": 16, "at": 7286.00770934314 }, { "type": "O", "frame": 21, "at": 7286.00770934314 }, { "type": "O", "frame": 22, "at": 7286.00770934314 }, { "type": "O", "frame": 23, "at": 7286.00770934314 }, { "type": "O", "frame": 24, "at": 7286.00770934314 }, { "type": "O", "frame": 18, "at": 7286.00770934314 }, { "type": "C", "frame": 18, "at": 7291.395874950776 }, { "type": "C", "frame": 24, "at": 7291.395874950776 }, { "type": "O", "frame": 28, "at": 7291.395875 }, { "type": "O", "frame": 18, "at": 7291.395875 }, { "type": "C", "frame": 18, "at": 7292.738292001724 }, { "type": "C", "frame": 28, "at": 7292.738292001724 }, { "type": "O", "frame": 31, "at": 7292.738292001724 }, { "type": "O", "frame": 18, "at": 7292.738292001724 }, { "type": "C", "frame": 18, "at": 7294.086292049591 }, { "type": "C", "frame": 31, "at": 7294.086292049591 }, { "type": "C", "frame": 23, "at": 7294.086292049591 }, { "type": "C", "frame": 22, "at": 7294.086292049591 }, { "type": "C", "frame": 21, "at": 7294.086292049591 }, { "type": "O", "frame": 17, "at": 7294.086292049591 }, { "type": "O", "frame": 18, "at": 7294.086292049591 }, { "type": "C", "frame": 18, "at": 7298.17237541217 }, { "type": "C", "frame": 17, "at": 7298.17237541217 }, { "type": "O", "frame": 19, "at": 7298.17237541217 }, { "type": "O", "frame": 18, "at": 7298.17237541217 }, { "type": "C", "frame": 18, "at": 7300.846041954041 }, { "type": "C", "frame": 19, "at": 7300.846041954041 }, { "type": "C", "frame": 16, "at": 7300.846042129883 }, { "type": "C", "frame": 15, "at": 7300.846042129883 }, { "type": "C", "frame": 14, "at": 7300.846042129883 }, { "type": "C", "frame": 13, "at": 7300.846042129883 }, { "type": "C", "frame": 12, "at": 7300.846042129883 }, { "type": "C", "frame": 11, "at": 7300.846042129883 }, { "type": "C", "frame": 10, "at": 7300.846042129883 }, { "type": "C", "frame": 9, "at": 7300.846042129883 }, { "type": "C", "frame": 8, "at": 7300.846042129883 }, { "type": "C", "frame": 20, "at": 7300.846042129883 }, { "type": "O", "frame": 6, "at": 7300.846042129883 }, { "type": "O", "frame": 7, "at": 7300.846042129883 }, { "type": "O", "frame": 8, "at": 7300.846042129883 }, { "type": "O", "frame": 9, "at": 7300.846042129883 }, { "type": "O", "frame": 10, "at": 7300.846042129883 }, { "type": "O", "frame": 11, "at": 7300.846042129883 }, { "type": "O", "frame": 12, "at": 7300.846042129883 }, { "type": "O", "frame": 13, "at": 7300.846042129883 }, { "type": "O", "frame": 14, "at": 7300.846042129883 }, { "type": "O", "frame": 15, "at": 7300.846042129883 }, { "type": "O", "frame": 16, "at": 7300.846042129883 }, { "type": "O", "frame": 21, "at": 7300.846042129883 }, { "type": "O", "frame": 22, "at": 7300.846042129883 }, { "type": "O", "frame": 23, "at": 7300.846042129883 }, { "type": "O", "frame": 24, "at": 7300.846042129883 }, { "type": "O", "frame": 18, "at": 7300.846042129883 }, { "type": "C", "frame": 18, "at": 7310.250792823975 }, { "type": "C", "frame": 24, "at": 7310.250792823975 }, { "type": "C", "frame": 23, "at": 7310.250792823975 }, { "type": "C", "frame": 22, "at": 7310.250792823975 }, { "type": "C", "frame": 21, "at": 7310.250792823975 }, { "type": "O", "frame": 17, "at": 7310.250792823975 }, { "type": "O", "frame": 18, "at": 7310.250792823975 }, { "type": "C", "frame": 18, "at": 7314.358084175293 }, { "type": "C", "frame": 17, "at": 7314.358084175293 }, { "type": "O", "frame": 19, "at": 7314.358084175293 }, { "type": "O", "frame": 18, "at": 7314.358084175293 }, { "type": "C", "frame": 18, "at": 7322.401292122254 }, { "type": "C", "frame": 19, "at": 7322.401292122254 }, { "type": "C", "frame": 16, "at": 7322.401292167847 }, { "type": "C", "frame": 15, "at": 7322.401292167847 }, { "type": "C", "frame": 14, "at": 7322.401292167847 }, { "type": "C", "frame": 13, "at": 7322.401292167847 }, { "type": "C", "frame": 12, "at": 7322.401292167847 }, { "type": "C", "frame": 11, "at": 7322.401292167847 }, { "type": "C", "frame": 10, "at": 7322.401292167847 }, { "type": "C", "frame": 9, "at": 7322.401292167847 }, { "type": "C", "frame": 8, "at": 7322.401292167847 }, { "type": "C", "frame": 7, "at": 7322.401292167847 }, { "type": "C", "frame": 6, "at": 7322.401292167847 }, { "type": "O", "frame": 20, "at": 7322.401292167847 }, { "type": "O", "frame": 8, "at": 7322.401292167847 }, { "type": "O", "frame": 9, "at": 7322.401292167847 }, { "type": "O", "frame": 10, "at": 7322.401292167847 }, { "type": "O", "frame": 11, "at": 7322.401292167847 }, { "type": "O", "frame": 12, "at": 7322.401292167847 }, { "type": "O", "frame": 13, "at": 7322.401292167847 }, { "type": "O", "frame": 14, "at": 7322.401292167847 }, { "type": "O", "frame": 15, "at": 7322.401292167847 }, { "type": "O", "frame": 16, "at": 7322.401292167847 }, { "type": "O", "frame": 21, "at": 7322.401292167847 }, { "type": "O", "frame": 22, "at": 7322.401292167847 }, { "type": "O", "frame": 23, "at": 7322.401292167847 }, { "type": "O", "frame": 24, "at": 7322.401292167847 }, { "type": "O", "frame": 18, "at": 7322.401292167847 }, { "type": "C", "frame": 18, "at": 7327.784375343505 }, { "type": "C", "frame": 24, "at": 7327.784375343505 }, { "type": "O", "frame": 31, "at": 7327.784375343505 }, { "type": "O", "frame": 18, "at": 7327.784375343505 }, { "type": "C", "frame": 18, "at": 7329.124249982834 }, { "type": "C", "frame": 31, "at": 7329.124249982834 }, { "type": "O", "frame": 24, "at": 7329.12425 }, { "type": "O", "frame": 18, "at": 7329.12425 }, { "type": "C", "frame": 18, "at": 7330.492749994278 }, { "type": "C", "frame": 24, "at": 7330.492749994278 }, { "type": "C", "frame": 23, "at": 7330.492750320617 }, { "type": "C", "frame": 22, "at": 7330.492750320617 }, { "type": "C", "frame": 21, "at": 7330.492750320617 }, { "type": "O", "frame": 17, "at": 7330.492750320617 }, { "type": "O", "frame": 18, "at": 7330.492750320617 }, { "type": "C", "frame": 18, "at": 7334.609374832154 }, { "type": "C", "frame": 17, "at": 7334.609374832154 }, { "type": "O", "frame": 19, "at": 7334.609375 }, { "type": "O", "frame": 18, "at": 7334.609375 }, { "type": "C", "frame": 18, "at": 7337.286499977112 }, { "type": "C", "frame": 19, "at": 7337.286499977112 }, { "type": "C", "frame": 16, "at": 7337.286500129882 }, { "type": "C", "frame": 15, "at": 7337.286500129882 }, { "type": "C", "frame": 14, "at": 7337.286500129882 }, { "type": "C", "frame": 13, "at": 7337.286500129882 }, { "type": "C", "frame": 12, "at": 7337.286500129882 }, { "type": "C", "frame": 11, "at": 7337.286500129882 }, { "type": "C", "frame": 10, "at": 7337.286500129882 }, { "type": "C", "frame": 9, "at": 7337.286500129882 }, { "type": "C", "frame": 8, "at": 7337.286500129882 }, { "type": "C", "frame": 20, "at": 7337.286500129882 }, { "type": "O", "frame": 6, "at": 7337.286500129882 }, { "type": "O", "frame": 7, "at": 7337.286500129882 }, { "type": "O", "frame": 8, "at": 7337.286500129882 }, { "type": "O", "frame": 9, "at": 7337.286500129882 }, { "type": "O", "frame": 10, "at": 7337.286500129882 }, { "type": "O", "frame": 11, "at": 7337.286500129882 }, { "type": "O", "frame": 12, "at": 7337.286500129882 }, { "type": "O", "frame": 13, "at": 7337.286500129882 }, { "type": "O", "frame": 14, "at": 7337.286500129882 }, { "type": "O", "frame": 15, "at": 7337.286500129882 }, { "type": "O", "frame": 16, "at": 7337.286500129882 }, { "type": "O", "frame": 21, "at": 7337.286500129882 }, { "type": "O", "frame": 22, "at": 7337.286500129882 }, { "type": "O", "frame": 23, "at": 7337.286500129882 }, { "type": "O", "frame": 24, "at": 7337.286500129882 }, { "type": "O", "frame": 18, "at": 7337.286500129882 }, { "type": "C", "frame": 18, "at": 7345.358959220886 }, { "type": "C", "frame": 24, "at": 7345.358959220886 }, { "type": "C", "frame": 23, "at": 7345.358959220886 }, { "type": "C", "frame": 22, "at": 7345.358959220886 }, { "type": "C", "frame": 21, "at": 7345.358959220886 }, { "type": "O", "frame": 17, "at": 7345.358959220886 }, { "type": "O", "frame": 18, "at": 7345.358959220886 }, { "type": "C", "frame": 18, "at": 7350.888250152954 }, { "type": "C", "frame": 17, "at": 7350.888250152954 }, { "type": "O", "frame": 19, "at": 7350.888250152954 }, { "type": "O", "frame": 18, "at": 7350.888250152954 }, { "type": "C", "frame": 18, "at": 7357.555499679565 }, { "type": "C", "frame": 19, "at": 7357.555499679565 }, { "type": "C", "frame": 16, "at": 7357.55550100708 }, { "type": "C", "frame": 15, "at": 7357.55550100708 }, { "type": "C", "frame": 14, "at": 7357.55550100708 }, { "type": "C", "frame": 13, "at": 7357.55550100708 }, { "type": "C", "frame": 12, "at": 7357.55550100708 }, { "type": "C", "frame": 11, "at": 7357.55550100708 }, { "type": "C", "frame": 10, "at": 7357.55550100708 }, { "type": "C", "frame": 9, "at": 7357.55550100708 }, { "type": "C", "frame": 8, "at": 7357.55550100708 }, { "type": "C", "frame": 7, "at": 7357.55550100708 }, { "type": "C", "frame": 6, "at": 7357.55550100708 }, { "type": "O", "frame": 20, "at": 7357.55550100708 }, { "type": "O", "frame": 8, "at": 7357.55550100708 }, { "type": "O", "frame": 9, "at": 7357.55550100708 }, { "type": "O", "frame": 10, "at": 7357.55550100708 }, { "type": "O", "frame": 11, "at": 7357.55550100708 }, { "type": "O", "frame": 12, "at": 7357.55550100708 }, { "type": "O", "frame": 13, "at": 7357.55550100708 }, { "type": "O", "frame": 14, "at": 7357.55550100708 }, { "type": "O", "frame": 15, "at": 7357.55550100708 }, { "type": "O", "frame": 16, "at": 7357.55550100708 }, { "type": "O", "frame": 21, "at": 7357.55550100708 }, { "type": "O", "frame": 22, "at": 7357.55550100708 }, { "type": "O", "frame": 23, "at": 7357.55550100708 }, { "type": "O", "frame": 24, "at": 7357.55550100708 }, { "type": "O", "frame": 18, "at": 7357.55550100708 }, { "type": "C", "frame": 18, "at": 7366.982583969117 }, { "type": "C", "frame": 24, "at": 7366.982583969117 }, { "type": "C", "frame": 23, "at": 7366.982583969117 }, { "type": "C", "frame": 22, "at": 7366.982583969117 }, { "type": "C", "frame": 21, "at": 7366.982583969117 }, { "type": "O", "frame": 17, "at": 7366.982584 }, { "type": "O", "frame": 18, "at": 7366.982584 }, { "type": "C", "frame": 18, "at": 7371.112874985108 }, { "type": "C", "frame": 17, "at": 7371.112874985108 }, { "type": "O", "frame": 19, "at": 7371.112875 }, { "type": "O", "frame": 18, "at": 7371.112875 }, { "type": "C", "frame": 18, "at": 7372.449458971977 }, { "type": "C", "frame": 19, "at": 7372.449458971977 }, { "type": "C", "frame": 16, "at": 7372.449459045411 }, { "type": "C", "frame": 15, "at": 7372.449459045411 }, { "type": "C", "frame": 14, "at": 7372.449459045411 }, { "type": "C", "frame": 13, "at": 7372.449459045411 }, { "type": "C", "frame": 12, "at": 7372.449459045411 }, { "type": "C", "frame": 11, "at": 7372.449459045411 }, { "type": "C", "frame": 10, "at": 7372.449459045411 }, { "type": "C", "frame": 9, "at": 7372.449459045411 }, { "type": "C", "frame": 8, "at": 7372.449459045411 }, { "type": "C", "frame": 20, "at": 7372.449459045411 }, { "type": "O", "frame": 6, "at": 7372.449459045411 }, { "type": "O", "frame": 7, "at": 7372.449459045411 }, { "type": "O", "frame": 8, "at": 7372.449459045411 }, { "type": "O", "frame": 9, "at": 7372.449459045411 }, { "type": "O", "frame": 10, "at": 7372.449459045411 }, { "type": "O", "frame": 11, "at": 7372.449459045411 }, { "type": "O", "frame": 12, "at": 7372.449459045411 }, { "type": "O", "frame": 13, "at": 7372.449459045411 }, { "type": "O", "frame": 14, "at": 7372.449459045411 }, { "type": "O", "frame": 15, "at": 7372.449459045411 }, { "type": "O", "frame": 16, "at": 7372.449459045411 }, { "type": "O", "frame": 21, "at": 7372.449459045411 }, { "type": "O", "frame": 22, "at": 7372.449459045411 }, { "type": "O", "frame": 23, "at": 7372.449459045411 }, { "type": "O", "frame": 41, "at": 7372.449459045411 }, { "type": "O", "frame": 18, "at": 7372.449459045411 }, { "type": "C", "frame": 18, "at": 7373.797125025162 }, { "type": "C", "frame": 41, "at": 7373.797125025162 }, { "type": "O", "frame": 24, "at": 7373.797125025162 }, { "type": "O", "frame": 18, "at": 7373.797125025162 }, { "type": "C", "frame": 18, "at": 7375.146624940872 }, { "type": "C", "frame": 24, "at": 7375.146624940872 }, { "type": "O", "frame": 29, "at": 7375.146625 }, { "type": "O", "frame": 18, "at": 7375.146625 }, { "type": "C", "frame": 18, "at": 7376.495709019661 }, { "type": "C", "frame": 29, "at": 7376.495709019661 }, { "type": "O", "frame": 24, "at": 7376.495709019661 }, { "type": "O", "frame": 18, "at": 7376.495709019661 }, { "type": "C", "frame": 18, "at": 7381.881709156402 }, { "type": "C", "frame": 24, "at": 7381.881709156402 }, { "type": "C", "frame": 23, "at": 7381.881709156402 }, { "type": "C", "frame": 22, "at": 7381.881709156402 }, { "type": "C", "frame": 21, "at": 7381.881709156402 }, { "type": "O", "frame": 17, "at": 7381.881709156402 }, { "type": "O", "frame": 18, "at": 7381.881709156402 }, { "type": "C", "frame": 18, "at": 7385.9971250499575 }, { "type": "C", "frame": 17, "at": 7385.9971250499575 }, { "type": "O", "frame": 19, "at": 7385.9971250499575 }, { "type": "O", "frame": 18, "at": 7385.9971250499575 }, { "type": "C", "frame": 18, "at": 7394.074834197998 }, { "type": "C", "frame": 19, "at": 7394.074834197998 }, { "type": "C", "frame": 16, "at": 7394.074834747681 }, { "type": "C", "frame": 15, "at": 7394.074834747681 }, { "type": "C", "frame": 14, "at": 7394.074834747681 }, { "type": "C", "frame": 13, "at": 7394.074834747681 }, { "type": "C", "frame": 12, "at": 7394.074834747681 }, { "type": "C", "frame": 11, "at": 7394.074834747681 }, { "type": "C", "frame": 10, "at": 7394.074834747681 }, { "type": "C", "frame": 9, "at": 7394.074834747681 }, { "type": "C", "frame": 8, "at": 7394.074834747681 }, { "type": "C", "frame": 7, "at": 7394.074834747681 }, { "type": "C", "frame": 6, "at": 7394.074834747681 }, { "type": "O", "frame": 20, "at": 7394.074834747681 }, { "type": "O", "frame": 8, "at": 7394.074834747681 }, { "type": "O", "frame": 9, "at": 7394.074834747681 }, { "type": "O", "frame": 10, "at": 7394.074834747681 }, { "type": "O", "frame": 11, "at": 7394.074834747681 }, { "type": "O", "frame": 12, "at": 7394.074834747681 }, { "type": "O", "frame": 13, "at": 7394.074834747681 }, { "type": "O", "frame": 14, "at": 7394.074834747681 }, { "type": "O", "frame": 15, "at": 7394.074834747681 }, { "type": "O", "frame": 16, "at": 7394.074834747681 }, { "type": "O", "frame": 21, "at": 7394.074834747681 }, { "type": "O", "frame": 22, "at": 7394.074834747681 }, { "type": "O", "frame": 23, "at": 7394.074834747681 }, { "type": "O", "frame": 24, "at": 7394.074834747681 }, { "type": "O", "frame": 18, "at": 7394.074834747681 }, { "type": "C", "frame": 18, "at": 7402.146249901184 }, { "type": "C", "frame": 24, "at": 7402.146249901184 }, { "type": "C", "frame": 23, "at": 7402.146249901184 }, { "type": "C", "frame": 22, "at": 7402.146249901184 }, { "type": "C", "frame": 21, "at": 7402.146249901184 }, { "type": "O", "frame": 17, "at": 7402.14625 }, { "type": "O", "frame": 18, "at": 7402.14625 }, { "type": "C", "frame": 18, "at": 7407.595792045593 }, { "type": "C", "frame": 17, "at": 7407.595792045593 }, { "type": "O", "frame": 19, "at": 7407.595792045593 }, { "type": "O", "frame": 18, "at": 7407.595792045593 }, { "type": "C", "frame": 18, "at": 7414.238583748047 }, { "type": "C", "frame": 19, "at": 7414.238583748047 }, { "type": "C", "frame": 16, "at": 7414.238583748047 }, { "type": "C", "frame": 15, "at": 7414.238583748047 }, { "type": "C", "frame": 14, "at": 7414.238583748047 }, { "type": "C", "frame": 13, "at": 7414.238583748047 }, { "type": "C", "frame": 12, "at": 7414.238583748047 }, { "type": "C", "frame": 11, "at": 7414.238583748047 }, { "type": "C", "frame": 10, "at": 7414.238583748047 }, { "type": "C", "frame": 9, "at": 7414.238583748047 }, { "type": "C", "frame": 8, "at": 7414.238583748047 }, { "type": "C", "frame": 20, "at": 7414.238583748047 }, { "type": "O", "frame": 6, "at": 7414.238584 }, { "type": "O", "frame": 7, "at": 7414.238584 }, { "type": "O", "frame": 8, "at": 7414.238584 }, { "type": "O", "frame": 9, "at": 7414.238584 }, { "type": "O", "frame": 10, "at": 7414.238584 }, { "type": "O", "frame": 11, "at": 7414.238584 }, { "type": "O", "frame": 12, "at": 7414.238584 }, { "type": "O", "frame": 13, "at": 7414.238584 }, { "type": "O", "frame": 14, "at": 7414.238584 }, { "type": "O", "frame": 15, "at": 7414.238584 }, { "type": "O", "frame": 16, "at": 7414.238584 }, { "type": "O", "frame": 21, "at": 7414.238584 }, { "type": "O", "frame": 22, "at": 7414.238584 }, { "type": "O", "frame": 23, "at": 7414.238584 }, { "type": "O", "frame": 24, "at": 7414.238584 }, { "type": "O", "frame": 18, "at": 7414.238584 }, { "type": "C", "frame": 18, "at": 7419.623459297546 }, { "type": "C", "frame": 24, "at": 7419.623459297546 }, { "type": "O", "frame": 25, "at": 7419.623459297546 }, { "type": "O", "frame": 18, "at": 7419.623459297546 }, { "type": "C", "frame": 18, "at": 7420.975374955544 }, { "type": "C", "frame": 25, "at": 7420.975374955544 }, { "type": "O", "frame": 24, "at": 7420.975375 }, { "type": "O", "frame": 18, "at": 7420.975375 }, { "type": "C", "frame": 18, "at": 7423.687959018707 }, { "type": "C", "frame": 24, "at": 7423.687959018707 }, { "type": "C", "frame": 23, "at": 7423.687959152588 }, { "type": "C", "frame": 22, "at": 7423.687959152588 }, { "type": "C", "frame": 21, "at": 7423.687959152588 }, { "type": "O", "frame": 17, "at": 7423.687959152588 }, { "type": "O", "frame": 18, "at": 7423.687959152588 }, { "type": "C", "frame": 18, "at": 7427.851624771484 }, { "type": "C", "frame": 17, "at": 7427.851624771484 }, { "type": "O", "frame": 19, "at": 7427.851625 }, { "type": "O", "frame": 18, "at": 7427.851625 }, { "type": "C", "frame": 18, "at": 7429.184584055901 }, { "type": "C", "frame": 19, "at": 7429.184584055901 }, { "type": "C", "frame": 16, "at": 7429.184585052856 }, { "type": "C", "frame": 15, "at": 7429.184585052856 }, { "type": "C", "frame": 14, "at": 7429.184585052856 }, { "type": "C", "frame": 13, "at": 7429.184585052856 }, { "type": "C", "frame": 12, "at": 7429.184585052856 }, { "type": "C", "frame": 11, "at": 7429.184585052856 }, { "type": "C", "frame": 10, "at": 7429.184585052856 }, { "type": "C", "frame": 9, "at": 7429.184585052856 }, { "type": "C", "frame": 8, "at": 7429.184585052856 }, { "type": "C", "frame": 7, "at": 7429.184585052856 }, { "type": "C", "frame": 6, "at": 7429.184585052856 }, { "type": "O", "frame": 20, "at": 7429.184585052856 }, { "type": "O", "frame": 8, "at": 7429.184585052856 }, { "type": "O", "frame": 9, "at": 7429.184585052856 }, { "type": "O", "frame": 10, "at": 7429.184585052856 }, { "type": "O", "frame": 11, "at": 7429.184585052856 }, { "type": "O", "frame": 12, "at": 7429.184585052856 }, { "type": "O", "frame": 13, "at": 7429.184585052856 }, { "type": "O", "frame": 14, "at": 7429.184585052856 }, { "type": "O", "frame": 15, "at": 7429.184585052856 }, { "type": "O", "frame": 16, "at": 7429.184585052856 }, { "type": "O", "frame": 21, "at": 7429.184585052856 }, { "type": "O", "frame": 22, "at": 7429.184585052856 }, { "type": "O", "frame": 23, "at": 7429.184585052856 }, { "type": "O", "frame": 24, "at": 7429.184585052856 }, { "type": "O", "frame": 18, "at": 7429.184585052856 }, { "type": "C", "frame": 18, "at": 7434.553833820709 }, { "type": "C", "frame": 24, "at": 7434.553833820709 }, { "type": "O", "frame": 26, "at": 7434.553834 }, { "type": "O", "frame": 18, "at": 7434.553834 }, { "type": "C", "frame": 18, "at": 7435.892709055313 }, { "type": "C", "frame": 26, "at": 7435.892709055313 }, { "type": "O", "frame": 24, "at": 7435.892709055313 }, { "type": "O", "frame": 18, "at": 7435.892709055313 }, { "type": "C", "frame": 18, "at": 7437.263041956314 }, { "type": "C", "frame": 24, "at": 7437.263041956314 }, { "type": "C", "frame": 23, "at": 7437.263041956314 }, { "type": "C", "frame": 22, "at": 7437.263041956314 }, { "type": "C", "frame": 21, "at": 7437.263041956314 }, { "type": "O", "frame": 17, "at": 7437.263042 }, { "type": "O", "frame": 18, "at": 7437.263042 }, { "type": "C", "frame": 18, "at": 7442.799375084106 }, { "type": "C", "frame": 17, "at": 7442.799375084106 }, { "type": "O", "frame": 19, "at": 7442.799375084106 }, { "type": "O", "frame": 18, "at": 7442.799375084106 }, { "type": "C", "frame": 18, "at": 7457.41049999237 }, { "type": "C", "frame": 19, "at": 7457.41049999237 }, { "type": "C", "frame": 16, "at": 7457.41049999237 }, { "type": "C", "frame": 15, "at": 7457.41049999237 }, { "type": "C", "frame": 14, "at": 7457.41049999237 }, { "type": "C", "frame": 13, "at": 7457.41049999237 }, { "type": "C", "frame": 12, "at": 7457.41049999237 }, { "type": "C", "frame": 11, "at": 7457.41049999237 }, { "type": "C", "frame": 10, "at": 7457.41049999237 }, { "type": "C", "frame": 9, "at": 7457.41049999237 }, { "type": "C", "frame": 8, "at": 7457.41049999237 }, { "type": "O", "frame": 18, "at": 7457.4105 }, { "type": "C", "frame": 18, "at": 7458.776208947182 }, { "type": "C", "frame": 20, "at": 7458.776209213623 }, { "type": "O", "frame": 6, "at": 7458.776209213623 }, { "type": "O", "frame": 7, "at": 7458.776209213623 }, { "type": "O", "frame": 8, "at": 7458.776209213623 }, { "type": "O", "frame": 9, "at": 7458.776209213623 }, { "type": "O", "frame": 10, "at": 7458.776209213623 }, { "type": "O", "frame": 11, "at": 7458.776209213623 }, { "type": "O", "frame": 12, "at": 7458.776209213623 }, { "type": "O", "frame": 13, "at": 7458.776209213623 }, { "type": "O", "frame": 14, "at": 7458.776209213623 }, { "type": "O", "frame": 15, "at": 7458.776209213623 }, { "type": "O", "frame": 16, "at": 7458.776209213623 }, { "type": "O", "frame": 21, "at": 7458.776209213623 }, { "type": "O", "frame": 22, "at": 7458.776209213623 }, { "type": "O", "frame": 23, "at": 7458.776209213623 }, { "type": "O", "frame": 24, "at": 7458.776209213623 }, { "type": "O", "frame": 18, "at": 7458.776209213623 }, { "type": "C", "frame": 18, "at": 7461.460749987014 }, { "type": "C", "frame": 24, "at": 7461.460749987014 }, { "type": "O", "frame": 29, "at": 7461.46075 }, { "type": "O", "frame": 18, "at": 7461.46075 }, { "type": "C", "frame": 18, "at": 7462.800125019074 }, { "type": "C", "frame": 29, "at": 7462.800125019074 }, { "type": "O", "frame": 28, "at": 7462.800125019074 }, { "type": "O", "frame": 18, "at": 7462.800125019074 }, { "type": "C", "frame": 18, "at": 7464.14637505722 }, { "type": "C", "frame": 28, "at": 7464.14637505722 }, { "type": "O", "frame": 24, "at": 7464.14637505722 }, { "type": "O", "frame": 18, "at": 7464.14637505722 }, { "type": "C", "frame": 18, "at": 7466.8477919693 }, { "type": "C", "frame": 24, "at": 7466.8477919693 }, { "type": "C", "frame": 23, "at": 7466.847792747863 }, { "type": "C", "frame": 22, "at": 7466.847792747863 }, { "type": "C", "frame": 21, "at": 7466.847792747863 }, { "type": "O", "frame": 17, "at": 7466.847792747863 }, { "type": "O", "frame": 18, "at": 7466.847792747863 }, { "type": "C", "frame": 18, "at": 7472.379416794006 }, { "type": "C", "frame": 17, "at": 7472.379416794006 }, { "type": "O", "frame": 19, "at": 7472.379417 }, { "type": "O", "frame": 18, "at": 7472.379417 }, { "type": "C", "frame": 18, "at": 7479.075625000183 }, { "type": "C", "frame": 19, "at": 7479.075625000183 }, { "type": "C", "frame": 16, "at": 7479.075628403076 }, { "type": "C", "frame": 15, "at": 7479.075628403076 }, { "type": "C", "frame": 14, "at": 7479.075628403076 }, { "type": "C", "frame": 13, "at": 7479.075628403076 }, { "type": "C", "frame": 12, "at": 7479.075628403076 }, { "type": "C", "frame": 11, "at": 7479.075628403076 }, { "type": "C", "frame": 10, "at": 7479.075628403076 }, { "type": "C", "frame": 9, "at": 7479.075628403076 }, { "type": "C", "frame": 8, "at": 7479.075628403076 }, { "type": "C", "frame": 7, "at": 7479.075628403076 }, { "type": "C", "frame": 6, "at": 7479.075628403076 }, { "type": "O", "frame": 20, "at": 7479.075628403076 }, { "type": "O", "frame": 18, "at": 7479.075628403076 }, { "type": "C", "frame": 18, "at": 7480.423834023476 }, { "type": "O", "frame": 8, "at": 7480.423834023476 }, { "type": "O", "frame": 9, "at": 7480.423834023476 }, { "type": "O", "frame": 10, "at": 7480.423834023476 }, { "type": "O", "frame": 11, "at": 7480.423834023476 }, { "type": "O", "frame": 12, "at": 7480.423834023476 }, { "type": "O", "frame": 13, "at": 7480.423834023476 }, { "type": "O", "frame": 14, "at": 7480.423834023476 }, { "type": "O", "frame": 15, "at": 7480.423834023476 }, { "type": "O", "frame": 16, "at": 7480.423834023476 }, { "type": "O", "frame": 21, "at": 7480.423834023476 }, { "type": "O", "frame": 22, "at": 7480.423834023476 }, { "type": "O", "frame": 23, "at": 7480.423834023476 }, { "type": "O", "frame": 24, "at": 7480.423834023476 }, { "type": "O", "frame": 18, "at": 7480.423834023476 }, { "type": "C", "frame": 18, "at": 7488.506500397095 }, { "type": "C", "frame": 24, "at": 7488.506500397095 }, { "type": "C", "frame": 23, "at": 7488.506500397095 }, { "type": "C", "frame": 22, "at": 7488.506500397095 }, { "type": "C", "frame": 21, "at": 7488.506500397095 }, { "type": "O", "frame": 17, "at": 7488.506500397095 }, { "type": "O", "frame": 18, "at": 7488.506500397095 }, { "type": "C", "frame": 18, "at": 7492.625958675385 }, { "type": "C", "frame": 17, "at": 7492.625958675385 }, { "type": "O", "frame": 19, "at": 7492.625959 }, { "type": "O", "frame": 18, "at": 7492.625959 }, { "type": "C", "frame": 18, "at": 7495.312542042145 }, { "type": "C", "frame": 19, "at": 7495.312542042145 }, { "type": "C", "frame": 16, "at": 7495.312542114624 }, { "type": "C", "frame": 15, "at": 7495.312542114624 }, { "type": "C", "frame": 14, "at": 7495.312542114624 }, { "type": "C", "frame": 13, "at": 7495.312542114624 }, { "type": "C", "frame": 12, "at": 7495.312542114624 }, { "type": "C", "frame": 11, "at": 7495.312542114624 }, { "type": "C", "frame": 10, "at": 7495.312542114624 }, { "type": "C", "frame": 9, "at": 7495.312542114624 }, { "type": "C", "frame": 8, "at": 7495.312542114624 }, { "type": "C", "frame": 20, "at": 7495.312542495728 }, { "type": "O", "frame": 6, "at": 7495.312542495728 }, { "type": "O", "frame": 7, "at": 7495.312542495728 }, { "type": "O", "frame": 8, "at": 7495.312542495728 }, { "type": "O", "frame": 9, "at": 7495.312542495728 }, { "type": "O", "frame": 10, "at": 7495.312542495728 }, { "type": "O", "frame": 11, "at": 7495.312542495728 }, { "type": "O", "frame": 12, "at": 7495.312542495728 }, { "type": "O", "frame": 13, "at": 7495.312542495728 }, { "type": "O", "frame": 14, "at": 7495.312542495728 }, { "type": "O", "frame": 15, "at": 7495.312542495728 }, { "type": "O", "frame": 16, "at": 7495.312542495728 }, { "type": "O", "frame": 21, "at": 7495.312542495728 }, { "type": "O", "frame": 22, "at": 7495.312542495728 }, { "type": "O", "frame": 23, "at": 7495.312542495728 }, { "type": "O", "frame": 24, "at": 7495.312542495728 }, { "type": "O", "frame": 18, "at": 7495.312542495728 }, { "type": "C", "frame": 18, "at": 7502.024416961853 }, { "type": "C", "frame": 24, "at": 7502.024416961853 }, { "type": "O", "frame": 25, "at": 7502.024417 }, { "type": "O", "frame": 18, "at": 7502.024417 }, { "type": "C", "frame": 18, "at": 7503.379834013168 }, { "type": "C", "frame": 25, "at": 7503.379834013168 }, { "type": "C", "frame": 23, "at": 7503.37983421344 }, { "type": "C", "frame": 22, "at": 7503.37983421344 }, { "type": "C", "frame": 21, "at": 7503.37983421344 }, { "type": "O", "frame": 17, "at": 7503.37983421344 }, { "type": "O", "frame": 18, "at": 7503.37983421344 }, { "type": "C", "frame": 18, "at": 7508.866291824707 }, { "type": "C", "frame": 17, "at": 7508.866291824707 }, { "type": "O", "frame": 19, "at": 7508.866292 }, { "type": "O", "frame": 18, "at": 7508.866292 }, { "type": "C", "frame": 18, "at": 7515.526166916076 }, { "type": "C", "frame": 19, "at": 7515.526166916076 }, { "type": "C", "frame": 16, "at": 7515.526166954223 }, { "type": "C", "frame": 15, "at": 7515.526166954223 }, { "type": "C", "frame": 14, "at": 7515.526166954223 }, { "type": "C", "frame": 13, "at": 7515.526166954223 }, { "type": "C", "frame": 12, "at": 7515.526166954223 }, { "type": "C", "frame": 11, "at": 7515.526166954223 }, { "type": "C", "frame": 10, "at": 7515.526166954223 }, { "type": "C", "frame": 9, "at": 7515.526166954223 }, { "type": "C", "frame": 8, "at": 7515.526166954223 }, { "type": "C", "frame": 7, "at": 7515.526166954223 }, { "type": "C", "frame": 6, "at": 7515.526166954223 }, { "type": "O", "frame": 20, "at": 7515.526167 }, { "type": "O", "frame": 8, "at": 7515.526167 }, { "type": "O", "frame": 9, "at": 7515.526167 }, { "type": "O", "frame": 10, "at": 7515.526167 }, { "type": "O", "frame": 11, "at": 7515.526167 }, { "type": "O", "frame": 12, "at": 7515.526167 }, { "type": "O", "frame": 13, "at": 7515.526167 }, { "type": "O", "frame": 14, "at": 7515.526167 }, { "type": "O", "frame": 15, "at": 7515.526167 }, { "type": "O", "frame": 16, "at": 7515.526167 }, { "type": "O", "frame": 21, "at": 7515.526167 }, { "type": "O", "frame": 22, "at": 7515.526167 }, { "type": "O", "frame": 23, "at": 7515.526167 }, { "type": "O", "frame": 24, "at": 7515.526167 }, { "type": "O", "frame": 18, "at": 7515.526167 }, { "type": "C", "frame": 18, "at": 7520.910834396545 }, { "type": "C", "frame": 24, "at": 7520.910834396545 }, { "type": "O", "frame": 29, "at": 7520.910834396545 }, { "type": "O", "frame": 18, "at": 7520.910834396545 }, { "type": "C", "frame": 18, "at": 7522.255708978066 }, { "type": "C", "frame": 29, "at": 7522.255708978066 }, { "type": "O", "frame": 24, "at": 7522.255709 }, { "type": "O", "frame": 18, "at": 7522.255709 }, { "type": "C", "frame": 18, "at": 7524.960125036606 }, { "type": "C", "frame": 24, "at": 7524.960125036606 }, { "type": "C", "frame": 23, "at": 7524.960125053589 }, { "type": "C", "frame": 22, "at": 7524.960125053589 }, { "type": "C", "frame": 21, "at": 7524.960125053589 }, { "type": "O", "frame": 17, "at": 7524.960125053589 }, { "type": "O", "frame": 18, "at": 7524.960125053589 }, { "type": "C", "frame": 18, "at": 7529.042375118255 }, { "type": "C", "frame": 17, "at": 7529.042375118255 }, { "type": "O", "frame": 19, "at": 7529.042375118255 }, { "type": "O", "frame": 18, "at": 7529.042375118255 }, { "type": "C", "frame": 18, "at": 7535.690750034332 }, { "type": "C", "frame": 19, "at": 7535.690750034332 }, { "type": "C", "frame": 16, "at": 7535.690750206177 }, { "type": "C", "frame": 15, "at": 7535.690750206177 }, { "type": "C", "frame": 14, "at": 7535.690750206177 }, { "type": "C", "frame": 13, "at": 7535.690750206177 }, { "type": "C", "frame": 12, "at": 7535.690750206177 }, { "type": "C", "frame": 11, "at": 7535.690750206177 }, { "type": "C", "frame": 10, "at": 7535.690750206177 }, { "type": "C", "frame": 9, "at": 7535.690750206177 }, { "type": "C", "frame": 8, "at": 7535.690750206177 }, { "type": "C", "frame": 20, "at": 7535.690750206177 }, { "type": "O", "frame": 6, "at": 7535.690750206177 }, { "type": "O", "frame": 7, "at": 7535.690750206177 }, { "type": "O", "frame": 8, "at": 7535.690750206177 }, { "type": "O", "frame": 9, "at": 7535.690750206177 }, { "type": "O", "frame": 10, "at": 7535.690750206177 }, { "type": "O", "frame": 11, "at": 7535.690750206177 }, { "type": "O", "frame": 12, "at": 7535.690750206177 }, { "type": "O", "frame": 13, "at": 7535.690750206177 }, { "type": "O", "frame": 14, "at": 7535.690750206177 }, { "type": "O", "frame": 15, "at": 7535.690750206177 }, { "type": "O", "frame": 16, "at": 7535.690750206177 }, { "type": "O", "frame": 21, "at": 7535.690750206177 }, { "type": "O", "frame": 22, "at": 7535.690750206177 }, { "type": "O", "frame": 23, "at": 7535.690750206177 }, { "type": "O", "frame": 24, "at": 7535.690750206177 }, { "type": "O", "frame": 18, "at": 7535.690750206177 }, { "type": "C", "frame": 18, "at": 7545.131749984741 }, { "type": "C", "frame": 24, "at": 7545.131749984741 }, { "type": "C", "frame": 23, "at": 7545.131749984741 }, { "type": "C", "frame": 22, "at": 7545.131749984741 }, { "type": "C", "frame": 21, "at": 7545.131749984741 }, { "type": "O", "frame": 17, "at": 7545.13175 }, { "type": "O", "frame": 18, "at": 7545.13175 }, { "type": "C", "frame": 18, "at": 7549.223833930969 }, { "type": "C", "frame": 17, "at": 7549.223833930969 }, { "type": "O", "frame": 19, "at": 7549.223834 }, { "type": "O", "frame": 18, "at": 7549.223834 }, { "type": "C", "frame": 18, "at": 7554.548541984925 }, { "type": "C", "frame": 19, "at": 7554.548541984925 }, { "type": "C", "frame": 16, "at": 7554.548543807983 }, { "type": "C", "frame": 15, "at": 7554.548543807983 }, { "type": "C", "frame": 14, "at": 7554.548543807983 }, { "type": "C", "frame": 13, "at": 7554.548543807983 }, { "type": "C", "frame": 12, "at": 7554.548543807983 }, { "type": "C", "frame": 11, "at": 7554.548543807983 }, { "type": "C", "frame": 10, "at": 7554.548543807983 }, { "type": "C", "frame": 9, "at": 7554.548543807983 }, { "type": "C", "frame": 8, "at": 7554.548543807983 }, { "type": "C", "frame": 7, "at": 7554.548543807983 }, { "type": "C", "frame": 6, "at": 7554.548543807983 }, { "type": "O", "frame": 20, "at": 7554.548543807983 }, { "type": "O", "frame": 8, "at": 7554.548543807983 }, { "type": "O", "frame": 9, "at": 7554.548543807983 }, { "type": "O", "frame": 10, "at": 7554.548543807983 }, { "type": "O", "frame": 11, "at": 7554.548543807983 }, { "type": "O", "frame": 12, "at": 7554.548543807983 }, { "type": "O", "frame": 13, "at": 7554.548543807983 }, { "type": "O", "frame": 14, "at": 7554.548543807983 }, { "type": "O", "frame": 15, "at": 7554.548543807983 }, { "type": "O", "frame": 16, "at": 7554.548543807983 }, { "type": "O", "frame": 21, "at": 7554.548543807983 }, { "type": "O", "frame": 22, "at": 7554.548543807983 }, { "type": "O", "frame": 23, "at": 7554.548543807983 }, { "type": "O", "frame": 24, "at": 7554.548543807983 }, { "type": "O", "frame": 18, "at": 7554.548543807983 }, { "type": "C", "frame": 18, "at": 7561.249999977295 }, { "type": "C", "frame": 24, "at": 7561.249999977295 }, { "type": "O", "frame": 31, "at": 7561.25 }, { "type": "O", "frame": 18, "at": 7561.25 }, { "type": "C", "frame": 18, "at": 7562.599292039871 }, { "type": "C", "frame": 31, "at": 7562.599292039871 }, { "type": "O", "frame": 24, "at": 7562.599292039871 }, { "type": "O", "frame": 18, "at": 7562.599292039871 }, { "type": "C", "frame": 18, "at": 7563.957499941055 }, { "type": "C", "frame": 24, "at": 7563.957499941055 }, { "type": "C", "frame": 23, "at": 7563.957499941055 }, { "type": "C", "frame": 22, "at": 7563.957499941055 }, { "type": "C", "frame": 21, "at": 7563.957499941055 }, { "type": "O", "frame": 17, "at": 7563.9575 }, { "type": "O", "frame": 18, "at": 7563.9575 }, { "type": "C", "frame": 18, "at": 7568.129375 }, { "type": "C", "frame": 17, "at": 7568.129375 }, { "type": "O", "frame": 19, "at": 7568.129375 }, { "type": "O", "frame": 18, "at": 7568.129375 }, { "type": "C", "frame": 18, "at": 7576.1341252517705 }, { "type": "C", "frame": 19, "at": 7576.1341252517705 }, { "type": "C", "frame": 16, "at": 7576.1341252517705 }, { "type": "C", "frame": 15, "at": 7576.1341252517705 }, { "type": "C", "frame": 14, "at": 7576.1341252517705 }, { "type": "C", "frame": 13, "at": 7576.1341252517705 }, { "type": "C", "frame": 12, "at": 7576.1341252517705 }, { "type": "C", "frame": 11, "at": 7576.1341252517705 }, { "type": "C", "frame": 10, "at": 7576.1341252517705 }, { "type": "C", "frame": 9, "at": 7576.1341252517705 }, { "type": "C", "frame": 8, "at": 7576.1341252517705 }, { "type": "C", "frame": 20, "at": 7576.1341252517705 }, { "type": "O", "frame": 6, "at": 7576.1341252517705 }, { "type": "O", "frame": 7, "at": 7576.1341252517705 }, { "type": "O", "frame": 8, "at": 7576.1341252517705 }, { "type": "O", "frame": 9, "at": 7576.1341252517705 }, { "type": "O", "frame": 10, "at": 7576.1341252517705 }, { "type": "O", "frame": 11, "at": 7576.1341252517705 }, { "type": "O", "frame": 12, "at": 7576.1341252517705 }, { "type": "O", "frame": 13, "at": 7576.1341252517705 }, { "type": "O", "frame": 14, "at": 7576.1341252517705 }, { "type": "O", "frame": 15, "at": 7576.1341252517705 }, { "type": "O", "frame": 16, "at": 7576.1341252517705 }, { "type": "O", "frame": 21, "at": 7576.1341252517705 }, { "type": "O", "frame": 22, "at": 7576.1341252517705 }, { "type": "O", "frame": 23, "at": 7576.1341252517705 }, { "type": "O", "frame": 24, "at": 7576.1341252517705 }, { "type": "O", "frame": 18, "at": 7576.1341252517705 }, { "type": "C", "frame": 18, "at": 7577.486750012397 }, { "type": "C", "frame": 24, "at": 7577.486750012397 }, { "type": "O", "frame": 28, "at": 7577.486750012397 }, { "type": "O", "frame": 18, "at": 7577.486750012397 }, { "type": "C", "frame": 18, "at": 7578.830958955765 }, { "type": "C", "frame": 28, "at": 7578.830958955765 }, { "type": "O", "frame": 24, "at": 7578.830959 }, { "type": "O", "frame": 18, "at": 7578.830959 }, { "type": "C", "frame": 18, "at": 7584.200874485382 }, { "type": "C", "frame": 24, "at": 7584.200874485382 }, { "type": "C", "frame": 23, "at": 7584.200875526428 }, { "type": "C", "frame": 22, "at": 7584.200875526428 }, { "type": "C", "frame": 21, "at": 7584.200875526428 }, { "type": "O", "frame": 17, "at": 7584.200875526428 }, { "type": "O", "frame": 18, "at": 7584.200875526428 }, { "type": "C", "frame": 18, "at": 7588.3539168396 }, { "type": "C", "frame": 17, "at": 7588.3539168396 }, { "type": "O", "frame": 19, "at": 7588.353917 }, { "type": "O", "frame": 18, "at": 7588.353917 }, { "type": "C", "frame": 18, "at": 7596.3401249620365 }, { "type": "C", "frame": 19, "at": 7596.3401249620365 }, { "type": "C", "frame": 16, "at": 7596.340126281738 }, { "type": "C", "frame": 15, "at": 7596.340126281738 }, { "type": "C", "frame": 14, "at": 7596.340126281738 }, { "type": "C", "frame": 13, "at": 7596.340126281738 }, { "type": "C", "frame": 12, "at": 7596.340126281738 }, { "type": "C", "frame": 11, "at": 7596.340126281738 }, { "type": "C", "frame": 10, "at": 7596.340126281738 }, { "type": "C", "frame": 9, "at": 7596.340126281738 }, { "type": "C", "frame": 8, "at": 7596.340126281738 }, { "type": "C", "frame": 7, "at": 7596.340126281738 }, { "type": "C", "frame": 6, "at": 7596.340126281738 }, { "type": "O", "frame": 20, "at": 7596.340126281738 }, { "type": "O", "frame": 8, "at": 7596.340126281738 }, { "type": "O", "frame": 9, "at": 7596.340126281738 }, { "type": "O", "frame": 10, "at": 7596.340126281738 }, { "type": "O", "frame": 11, "at": 7596.340126281738 }, { "type": "O", "frame": 12, "at": 7596.340126281738 }, { "type": "O", "frame": 13, "at": 7596.340126281738 }, { "type": "O", "frame": 14, "at": 7596.340126281738 }, { "type": "O", "frame": 15, "at": 7596.340126281738 }, { "type": "O", "frame": 16, "at": 7596.340126281738 }, { "type": "O", "frame": 21, "at": 7596.340126281738 }, { "type": "O", "frame": 22, "at": 7596.340126281738 }, { "type": "O", "frame": 23, "at": 7596.340126281738 }, { "type": "O", "frame": 24, "at": 7596.340126281738 }, { "type": "O", "frame": 18, "at": 7596.340126281738 }, { "type": "C", "frame": 18, "at": 7604.400334274292 }, { "type": "C", "frame": 24, "at": 7604.400334274292 }, { "type": "C", "frame": 23, "at": 7604.400334274292 }, { "type": "C", "frame": 22, "at": 7604.400334274292 }, { "type": "C", "frame": 21, "at": 7604.400334274292 }, { "type": "O", "frame": 17, "at": 7604.400334274292 }, { "type": "O", "frame": 18, "at": 7604.400334274292 }, { "type": "C", "frame": 18, "at": 7609.868750213989 }, { "type": "C", "frame": 17, "at": 7609.868750213989 }, { "type": "O", "frame": 19, "at": 7609.868750213989 }, { "type": "O", "frame": 18, "at": 7609.868750213989 }, { "type": "C", "frame": 18, "at": 7616.52829208374 }, { "type": "C", "frame": 19, "at": 7616.52829208374 }, { "type": "C", "frame": 16, "at": 7616.52829208374 }, { "type": "C", "frame": 15, "at": 7616.52829208374 }, { "type": "C", "frame": 14, "at": 7616.52829208374 }, { "type": "C", "frame": 13, "at": 7616.52829208374 }, { "type": "C", "frame": 12, "at": 7616.52829208374 }, { "type": "C", "frame": 11, "at": 7616.52829208374 }, { "type": "C", "frame": 10, "at": 7616.52829208374 }, { "type": "C", "frame": 9, "at": 7616.52829208374 }, { "type": "C", "frame": 8, "at": 7616.52829208374 }, { "type": "C", "frame": 20, "at": 7616.52829208374 }, { "type": "O", "frame": 6, "at": 7616.52829208374 }, { "type": "O", "frame": 7, "at": 7616.52829208374 }, { "type": "O", "frame": 8, "at": 7616.52829208374 }, { "type": "O", "frame": 9, "at": 7616.52829208374 }, { "type": "O", "frame": 10, "at": 7616.52829208374 }, { "type": "O", "frame": 11, "at": 7616.52829208374 }, { "type": "O", "frame": 12, "at": 7616.52829208374 }, { "type": "O", "frame": 13, "at": 7616.52829208374 }, { "type": "O", "frame": 14, "at": 7616.52829208374 }, { "type": "O", "frame": 15, "at": 7616.52829208374 }, { "type": "O", "frame": 16, "at": 7616.52829208374 }, { "type": "O", "frame": 21, "at": 7616.52829208374 }, { "type": "O", "frame": 22, "at": 7616.52829208374 }, { "type": "O", "frame": 23, "at": 7616.52829208374 }, { "type": "O", "frame": 24, "at": 7616.52829208374 }, { "type": "O", "frame": 18, "at": 7616.52829208374 }, { "type": "C", "frame": 18, "at": 7619.219499885742 }, { "type": "C", "frame": 24, "at": 7619.219499885742 }, { "type": "O", "frame": 29, "at": 7619.2195 }, { "type": "O", "frame": 18, "at": 7619.2195 }, { "type": "C", "frame": 18, "at": 7620.563375050545 }, { "type": "C", "frame": 29, "at": 7620.563375050545 }, { "type": "O", "frame": 24, "at": 7620.563375050545 }, { "type": "O", "frame": 18, "at": 7620.563375050545 }, { "type": "C", "frame": 18, "at": 7625.931624893188 }, { "type": "C", "frame": 24, "at": 7625.931624893188 }, { "type": "C", "frame": 23, "at": 7625.931624893188 }, { "type": "C", "frame": 22, "at": 7625.931624893188 }, { "type": "C", "frame": 21, "at": 7625.931624893188 }, { "type": "O", "frame": 17, "at": 7625.931625 }, { "type": "O", "frame": 18, "at": 7625.931625 }, { "type": "C", "frame": 18, "at": 7630.024166694641 }, { "type": "C", "frame": 17, "at": 7630.024166694641 }, { "type": "O", "frame": 19, "at": 7630.024167 }, { "type": "O", "frame": 18, "at": 7630.024167 }, { "type": "C", "frame": 18, "at": 7639.273959098999 }, { "type": "C", "frame": 19, "at": 7639.273959098999 }, { "type": "C", "frame": 16, "at": 7639.273959098999 }, { "type": "C", "frame": 15, "at": 7639.273959098999 }, { "type": "C", "frame": 14, "at": 7639.273959098999 }, { "type": "C", "frame": 13, "at": 7639.273959098999 }, { "type": "C", "frame": 12, "at": 7639.273959098999 }, { "type": "C", "frame": 11, "at": 7639.273959098999 }, { "type": "C", "frame": 10, "at": 7639.273959098999 }, { "type": "C", "frame": 9, "at": 7639.273959098999 }, { "type": "C", "frame": 8, "at": 7639.273959098999 }, { "type": "C", "frame": 7, "at": 7639.273959098999 }, { "type": "C", "frame": 6, "at": 7639.273959098999 }, { "type": "O", "frame": 20, "at": 7639.273959098999 }, { "type": "O", "frame": 8, "at": 7639.273959098999 }, { "type": "O", "frame": 9, "at": 7639.273959098999 }, { "type": "O", "frame": 10, "at": 7639.273959098999 }, { "type": "O", "frame": 11, "at": 7639.273959098999 }, { "type": "O", "frame": 12, "at": 7639.273959098999 }, { "type": "O", "frame": 13, "at": 7639.273959098999 }, { "type": "O", "frame": 14, "at": 7639.273959098999 }, { "type": "O", "frame": 15, "at": 7639.273959098999 }, { "type": "O", "frame": 16, "at": 7639.273959098999 }, { "type": "O", "frame": 21, "at": 7639.273959098999 }, { "type": "O", "frame": 22, "at": 7639.273959098999 }, { "type": "O", "frame": 23, "at": 7639.273959098999 }, { "type": "O", "frame": 24, "at": 7639.273959098999 }, { "type": "O", "frame": 18, "at": 7639.273959098999 }, { "type": "C", "frame": 18, "at": 7647.35029204596 }, { "type": "C", "frame": 24, "at": 7647.35029204596 }, { "type": "C", "frame": 23, "at": 7647.35029204596 }, { "type": "C", "frame": 22, "at": 7647.35029204596 }, { "type": "C", "frame": 21, "at": 7647.35029204596 }, { "type": "O", "frame": 17, "at": 7647.35029204596 }, { "type": "O", "frame": 18, "at": 7647.35029204596 }, { "type": "C", "frame": 18, "at": 7652.855500015442 }, { "type": "C", "frame": 17, "at": 7652.855500015442 }, { "type": "O", "frame": 19, "at": 7652.855500015442 }, { "type": "O", "frame": 18, "at": 7652.855500015442 }, { "type": "C", "frame": 18, "at": 7659.528750198364 }, { "type": "C", "frame": 19, "at": 7659.528750198364 }, { "type": "C", "frame": 16, "at": 7659.528750259766 }, { "type": "C", "frame": 15, "at": 7659.528750259766 }, { "type": "C", "frame": 14, "at": 7659.528750259766 }, { "type": "C", "frame": 13, "at": 7659.528750259766 }, { "type": "C", "frame": 12, "at": 7659.528750259766 }, { "type": "C", "frame": 11, "at": 7659.528750259766 }, { "type": "C", "frame": 10, "at": 7659.528750259766 }, { "type": "C", "frame": 9, "at": 7659.528750259766 }, { "type": "C", "frame": 8, "at": 7659.528750259766 }, { "type": "C", "frame": 20, "at": 7659.528750259766 }, { "type": "O", "frame": 6, "at": 7659.528750259766 }, { "type": "O", "frame": 7, "at": 7659.528750259766 }, { "type": "O", "frame": 18, "at": 7659.528750259766 }, { "type": "C", "frame": 18, "at": 7660.904459056855 }, { "type": "O", "frame": 8, "at": 7660.904459056855 }, { "type": "O", "frame": 9, "at": 7660.904459056855 }, { "type": "O", "frame": 10, "at": 7660.904459056855 }, { "type": "O", "frame": 11, "at": 7660.904459056855 }, { "type": "O", "frame": 12, "at": 7660.904459056855 }, { "type": "O", "frame": 13, "at": 7660.904459056855 }, { "type": "O", "frame": 14, "at": 7660.904459056855 }, { "type": "O", "frame": 15, "at": 7660.904459056855 }, { "type": "O", "frame": 16, "at": 7660.904459056855 }, { "type": "O", "frame": 21, "at": 7660.904459056855 }, { "type": "O", "frame": 22, "at": 7660.904459056855 }, { "type": "O", "frame": 23, "at": 7660.904459056855 }, { "type": "O", "frame": 29, "at": 7660.904459056855 }, { "type": "O", "frame": 18, "at": 7660.904459056855 }, { "type": "C", "frame": 18, "at": 7662.24566698111 }, { "type": "C", "frame": 29, "at": 7662.24566698111 }, { "type": "O", "frame": 24, "at": 7662.245667 }, { "type": "O", "frame": 18, "at": 7662.245667 }, { "type": "C", "frame": 18, "at": 7668.9489588930055 }, { "type": "C", "frame": 24, "at": 7668.9489588930055 }, { "type": "C", "frame": 23, "at": 7668.9489593509525 }, { "type": "C", "frame": 22, "at": 7668.9489593509525 }, { "type": "C", "frame": 21, "at": 7668.9489593509525 }, { "type": "O", "frame": 17, "at": 7668.9489593509525 }, { "type": "O", "frame": 18, "at": 7668.9489593509525 }, { "type": "C", "frame": 18, "at": 7673.086542255768 }, { "type": "C", "frame": 17, "at": 7673.086542255768 }, { "type": "O", "frame": 19, "at": 7673.086542255768 }, { "type": "O", "frame": 18, "at": 7673.086542255768 }, { "type": "C", "frame": 18, "at": 7681.103916992371 }, { "type": "C", "frame": 19, "at": 7681.103916992371 }, { "type": "C", "frame": 16, "at": 7681.103916992371 }, { "type": "C", "frame": 15, "at": 7681.103916992371 }, { "type": "C", "frame": 14, "at": 7681.103916992371 }, { "type": "C", "frame": 13, "at": 7681.103916992371 }, { "type": "C", "frame": 12, "at": 7681.103916992371 }, { "type": "C", "frame": 11, "at": 7681.103916992371 }, { "type": "C", "frame": 10, "at": 7681.103916992371 }, { "type": "C", "frame": 9, "at": 7681.103916992371 }, { "type": "C", "frame": 8, "at": 7681.103916992371 }, { "type": "C", "frame": 7, "at": 7681.103916992371 }, { "type": "C", "frame": 6, "at": 7681.103916992371 }, { "type": "O", "frame": 20, "at": 7681.103917 }, { "type": "O", "frame": 8, "at": 7681.103917 }, { "type": "O", "frame": 9, "at": 7681.103917 }, { "type": "O", "frame": 10, "at": 7681.103917 }, { "type": "O", "frame": 11, "at": 7681.103917 }, { "type": "O", "frame": 12, "at": 7681.103917 }, { "type": "O", "frame": 13, "at": 7681.103917 }, { "type": "O", "frame": 14, "at": 7681.103917 }, { "type": "O", "frame": 15, "at": 7681.103917 }, { "type": "O", "frame": 16, "at": 7681.103917 }, { "type": "O", "frame": 21, "at": 7681.103917 }, { "type": "O", "frame": 22, "at": 7681.103917 }, { "type": "O", "frame": 23, "at": 7681.103917 }, { "type": "O", "frame": 31, "at": 7681.103917 }, { "type": "O", "frame": 18, "at": 7681.103917 }, { "type": "C", "frame": 18, "at": 7682.49308395118 }, { "type": "C", "frame": 31, "at": 7682.49308395118 }, { "type": "O", "frame": 24, "at": 7682.493084 }, { "type": "O", "frame": 18, "at": 7682.493084 }, { "type": "C", "frame": 18, "at": 7690.599541710266 }, { "type": "C", "frame": 24, "at": 7690.599541710266 }, { "type": "C", "frame": 23, "at": 7690.599541710266 }, { "type": "C", "frame": 22, "at": 7690.599541710266 }, { "type": "C", "frame": 21, "at": 7690.599541710266 }, { "type": "O", "frame": 17, "at": 7690.599542 }, { "type": "O", "frame": 18, "at": 7690.599542 }, { "type": "C", "frame": 18, "at": 7696.580375053589 }, { "type": "C", "frame": 17, "at": 7696.580375053589 }, { "type": "O", "frame": 19, "at": 7696.580375053589 }, { "type": "O", "frame": 18, "at": 7696.580375053589 }, { "type": "C", "frame": 18, "at": 7699.295042081832 }, { "type": "C", "frame": 19, "at": 7699.295042081832 }, { "type": "C", "frame": 16, "at": 7699.295042869751 }, { "type": "C", "frame": 15, "at": 7699.295042869751 }, { "type": "C", "frame": 14, "at": 7699.295042869751 }, { "type": "C", "frame": 13, "at": 7699.295042869751 }, { "type": "C", "frame": 12, "at": 7699.295042869751 }, { "type": "C", "frame": 11, "at": 7699.295042869751 }, { "type": "C", "frame": 10, "at": 7699.295042869751 }, { "type": "C", "frame": 9, "at": 7699.295042869751 }, { "type": "C", "frame": 8, "at": 7699.295042869751 }, { "type": "O", "frame": 18, "at": 7699.295042869751 }, { "type": "C", "frame": 18, "at": 7700.648125014488 }, { "type": "C", "frame": 20, "at": 7700.648125526612 }, { "type": "O", "frame": 6, "at": 7700.648125526612 }, { "type": "O", "frame": 7, "at": 7700.648125526612 }, { "type": "O", "frame": 8, "at": 7700.648125526612 }, { "type": "O", "frame": 9, "at": 7700.648125526612 }, { "type": "O", "frame": 10, "at": 7700.648125526612 }, { "type": "O", "frame": 11, "at": 7700.648125526612 }, { "type": "O", "frame": 12, "at": 7700.648125526612 }, { "type": "O", "frame": 13, "at": 7700.648125526612 }, { "type": "O", "frame": 14, "at": 7700.648125526612 }, { "type": "O", "frame": 15, "at": 7700.648125526612 }, { "type": "O", "frame": 16, "at": 7700.648125526612 }, { "type": "O", "frame": 21, "at": 7700.648125526612 }, { "type": "O", "frame": 22, "at": 7700.648125526612 }, { "type": "O", "frame": 23, "at": 7700.648125526612 }, { "type": "O", "frame": 24, "at": 7700.648125526612 }, { "type": "O", "frame": 18, "at": 7700.648125526612 }, { "type": "C", "frame": 18, "at": 7701.99212498188 }, { "type": "C", "frame": 24, "at": 7701.99212498188 }, { "type": "O", "frame": 28, "at": 7701.992125 }, { "type": "O", "frame": 18, "at": 7701.992125 }, { "type": "C", "frame": 18, "at": 7703.3320419445035 }, { "type": "C", "frame": 28, "at": 7703.3320419445035 }, { "type": "O", "frame": 24, "at": 7703.332042 }, { "type": "O", "frame": 18, "at": 7703.332042 }, { "type": "C", "frame": 18, "at": 7704.672500035469 }, { "type": "C", "frame": 24, "at": 7704.672500035469 }, { "type": "O", "frame": 29, "at": 7704.672500035469 }, { "type": "O", "frame": 18, "at": 7704.672500035469 }, { "type": "C", "frame": 18, "at": 7706.014667019844 }, { "type": "C", "frame": 29, "at": 7706.014667019844 }, { "type": "O", "frame": 24, "at": 7706.014667019844 }, { "type": "O", "frame": 18, "at": 7706.014667019844 }, { "type": "C", "frame": 18, "at": 7708.694167102997 }, { "type": "C", "frame": 24, "at": 7708.694167102997 }, { "type": "O", "frame": 25, "at": 7708.694167102997 }, { "type": "O", "frame": 18, "at": 7708.694167102997 }, { "type": "C", "frame": 18, "at": 7710.043874961082 }, { "type": "C", "frame": 25, "at": 7710.043874961082 }, { "type": "C", "frame": 23, "at": 7710.043874961082 }, { "type": "C", "frame": 22, "at": 7710.043874961082 }, { "type": "C", "frame": 21, "at": 7710.043874961082 }, { "type": "O", "frame": 17, "at": 7710.043875 }, { "type": "O", "frame": 18, "at": 7710.043875 }, { "type": "C", "frame": 18, "at": 7714.153499862671 }, { "type": "C", "frame": 17, "at": 7714.153499862671 }, { "type": "O", "frame": 19, "at": 7714.1535 }, { "type": "O", "frame": 18, "at": 7714.1535 }, { "type": "C", "frame": 18, "at": 7716.82212487793 }, { "type": "C", "frame": 19, "at": 7716.82212487793 }, { "type": "C", "frame": 16, "at": 7716.82212487793 }, { "type": "C", "frame": 15, "at": 7716.82212487793 }, { "type": "C", "frame": 14, "at": 7716.82212487793 }, { "type": "C", "frame": 13, "at": 7716.82212487793 }, { "type": "C", "frame": 12, "at": 7716.82212487793 }, { "type": "C", "frame": 11, "at": 7716.82212487793 }, { "type": "C", "frame": 10, "at": 7716.82212487793 }, { "type": "C", "frame": 9, "at": 7716.82212487793 }, { "type": "C", "frame": 8, "at": 7716.82212487793 }, { "type": "C", "frame": 7, "at": 7716.82212487793 }, { "type": "C", "frame": 6, "at": 7716.82212487793 }, { "type": "O", "frame": 20, "at": 7716.822125 }, { "type": "O", "frame": 8, "at": 7716.822125 }, { "type": "O", "frame": 9, "at": 7716.822125 }, { "type": "O", "frame": 10, "at": 7716.822125 }, { "type": "O", "frame": 11, "at": 7716.822125 }, { "type": "O", "frame": 12, "at": 7716.822125 }, { "type": "O", "frame": 13, "at": 7716.822125 }, { "type": "O", "frame": 14, "at": 7716.822125 }, { "type": "O", "frame": 15, "at": 7716.822125 }, { "type": "O", "frame": 16, "at": 7716.822125 }, { "type": "O", "frame": 21, "at": 7716.822125 }, { "type": "O", "frame": 22, "at": 7716.822125 }, { "type": "O", "frame": 23, "at": 7716.822125 }, { "type": "O", "frame": 24, "at": 7716.822125 }, { "type": "O", "frame": 18, "at": 7716.822125 }, { "type": "C", "frame": 18, "at": 7724.874291938781 }, { "type": "C", "frame": 24, "at": 7724.874291938781 }, { "type": "C", "frame": 23, "at": 7724.874291938781 }, { "type": "C", "frame": 22, "at": 7724.874291938781 }, { "type": "C", "frame": 21, "at": 7724.874291938781 }, { "type": "O", "frame": 17, "at": 7724.874292 }, { "type": "O", "frame": 18, "at": 7724.874292 }, { "type": "C", "frame": 18, "at": 7730.406291588013 }, { "type": "C", "frame": 17, "at": 7730.406291588013 }, { "type": "O", "frame": 19, "at": 7730.406292 }, { "type": "O", "frame": 18, "at": 7730.406292 }, { "type": "C", "frame": 18, "at": 7738.3783750917355 }, { "type": "C", "frame": 19, "at": 7738.3783750917355 }, { "type": "C", "frame": 16, "at": 7738.3783750917355 }, { "type": "C", "frame": 15, "at": 7738.3783750917355 }, { "type": "C", "frame": 14, "at": 7738.3783750917355 }, { "type": "C", "frame": 13, "at": 7738.3783750917355 }, { "type": "C", "frame": 12, "at": 7738.3783750917355 }, { "type": "C", "frame": 11, "at": 7738.3783750917355 }, { "type": "C", "frame": 10, "at": 7738.3783750917355 }, { "type": "C", "frame": 9, "at": 7738.3783750917355 }, { "type": "C", "frame": 8, "at": 7738.3783750917355 }, { "type": "C", "frame": 20, "at": 7738.3783750917355 }, { "type": "O", "frame": 6, "at": 7738.3783750917355 }, { "type": "O", "frame": 7, "at": 7738.3783750917355 }, { "type": "O", "frame": 8, "at": 7738.3783750917355 }, { "type": "O", "frame": 9, "at": 7738.3783750917355 }, { "type": "O", "frame": 10, "at": 7738.3783750917355 }, { "type": "O", "frame": 11, "at": 7738.3783750917355 }, { "type": "O", "frame": 12, "at": 7738.3783750917355 }, { "type": "O", "frame": 13, "at": 7738.3783750917355 }, { "type": "O", "frame": 14, "at": 7738.3783750917355 }, { "type": "O", "frame": 15, "at": 7738.3783750917355 }, { "type": "O", "frame": 16, "at": 7738.3783750917355 }, { "type": "O", "frame": 21, "at": 7738.3783750917355 }, { "type": "O", "frame": 22, "at": 7738.3783750917355 }, { "type": "O", "frame": 23, "at": 7738.3783750917355 }, { "type": "O", "frame": 24, "at": 7738.3783750917355 }, { "type": "O", "frame": 18, "at": 7738.3783750917355 }, { "type": "C", "frame": 18, "at": 7743.734209007263 }, { "type": "C", "frame": 24, "at": 7743.734209007263 }, { "type": "O", "frame": 28, "at": 7743.734209007263 }, { "type": "O", "frame": 18, "at": 7743.734209007263 }, { "type": "C", "frame": 18, "at": 7745.073792039284 }, { "type": "C", "frame": 28, "at": 7745.073792039284 }, { "type": "O", "frame": 24, "at": 7745.073792039284 }, { "type": "O", "frame": 18, "at": 7745.073792039284 }, { "type": "C", "frame": 18, "at": 7746.442250032608 }, { "type": "C", "frame": 24, "at": 7746.442250032608 }, { "type": "C", "frame": 23, "at": 7746.4422501983645 }, { "type": "C", "frame": 22, "at": 7746.4422501983645 }, { "type": "C", "frame": 21, "at": 7746.4422501983645 }, { "type": "O", "frame": 17, "at": 7746.4422501983645 }, { "type": "O", "frame": 18, "at": 7746.4422501983645 }, { "type": "C", "frame": 18, "at": 7751.892291770935 }, { "type": "C", "frame": 17, "at": 7751.892291770935 }, { "type": "O", "frame": 19, "at": 7751.892292 }, { "type": "O", "frame": 18, "at": 7751.892292 }, { "type": "C", "frame": 18, "at": 7753.228417016213 }, { "type": "C", "frame": 19, "at": 7753.228417016213 }, { "type": "C", "frame": 16, "at": 7753.228418296814 }, { "type": "C", "frame": 15, "at": 7753.228418296814 }, { "type": "C", "frame": 14, "at": 7753.228418296814 }, { "type": "C", "frame": 13, "at": 7753.228418296814 }, { "type": "C", "frame": 12, "at": 7753.228418296814 }, { "type": "C", "frame": 11, "at": 7753.228418296814 }, { "type": "C", "frame": 10, "at": 7753.228418296814 }, { "type": "C", "frame": 9, "at": 7753.228418296814 }, { "type": "C", "frame": 8, "at": 7753.228418296814 }, { "type": "C", "frame": 7, "at": 7753.228418296814 }, { "type": "C", "frame": 6, "at": 7753.228418296814 }, { "type": "O", "frame": 20, "at": 7753.228418296814 }, { "type": "O", "frame": 18, "at": 7753.228418296814 }, { "type": "C", "frame": 18, "at": 7754.570499977295 }, { "type": "O", "frame": 8, "at": 7754.5705 }, { "type": "O", "frame": 9, "at": 7754.5705 }, { "type": "O", "frame": 10, "at": 7754.5705 }, { "type": "O", "frame": 11, "at": 7754.5705 }, { "type": "O", "frame": 12, "at": 7754.5705 }, { "type": "O", "frame": 13, "at": 7754.5705 }, { "type": "O", "frame": 14, "at": 7754.5705 }, { "type": "O", "frame": 15, "at": 7754.5705 }, { "type": "O", "frame": 16, "at": 7754.5705 }, { "type": "O", "frame": 21, "at": 7754.5705 }, { "type": "O", "frame": 22, "at": 7754.5705 }, { "type": "O", "frame": 23, "at": 7754.5705 }, { "type": "O", "frame": 24, "at": 7754.5705 }, { "type": "O", "frame": 18, "at": 7754.5705 }, { "type": "C", "frame": 18, "at": 7762.636167152405 }, { "type": "C", "frame": 24, "at": 7762.636167152405 }, { "type": "C", "frame": 23, "at": 7762.636167152405 }, { "type": "C", "frame": 22, "at": 7762.636167152405 }, { "type": "C", "frame": 21, "at": 7762.636167152405 }, { "type": "O", "frame": 17, "at": 7762.636167152405 }, { "type": "O", "frame": 18, "at": 7762.636167152405 }, { "type": "C", "frame": 18, "at": 7766.706624935333 }, { "type": "C", "frame": 17, "at": 7766.706624935333 }, { "type": "O", "frame": 19, "at": 7766.706625 }, { "type": "O", "frame": 18, "at": 7766.706625 }, { "type": "C", "frame": 18, "at": 7774.685042396545 }, { "type": "C", "frame": 19, "at": 7774.685042396545 }, { "type": "C", "frame": 16, "at": 7774.685043914795 }, { "type": "C", "frame": 15, "at": 7774.685043914795 }, { "type": "C", "frame": 14, "at": 7774.685043914795 }, { "type": "C", "frame": 13, "at": 7774.685043914795 }, { "type": "C", "frame": 12, "at": 7774.685043914795 }, { "type": "C", "frame": 11, "at": 7774.685043914795 }, { "type": "C", "frame": 10, "at": 7774.685043914795 }, { "type": "C", "frame": 9, "at": 7774.685043914795 }, { "type": "C", "frame": 8, "at": 7774.685043914795 }, { "type": "C", "frame": 20, "at": 7774.685043914795 }, { "type": "O", "frame": 6, "at": 7774.685043914795 }, { "type": "O", "frame": 7, "at": 7774.685043914795 }, { "type": "O", "frame": 8, "at": 7774.685043914795 }, { "type": "O", "frame": 9, "at": 7774.685043914795 }, { "type": "O", "frame": 10, "at": 7774.685043914795 }, { "type": "O", "frame": 11, "at": 7774.685043914795 }, { "type": "O", "frame": 12, "at": 7774.685043914795 }, { "type": "O", "frame": 13, "at": 7774.685043914795 }, { "type": "O", "frame": 14, "at": 7774.685043914795 }, { "type": "O", "frame": 15, "at": 7774.685043914795 }, { "type": "O", "frame": 16, "at": 7774.685043914795 }, { "type": "O", "frame": 21, "at": 7774.685043914795 }, { "type": "O", "frame": 22, "at": 7774.685043914795 }, { "type": "O", "frame": 23, "at": 7774.685043914795 }, { "type": "O", "frame": 24, "at": 7774.685043914795 }, { "type": "O", "frame": 18, "at": 7774.685043914795 }, { "type": "C", "frame": 18, "at": 7784.0826669694825 }, { "type": "C", "frame": 24, "at": 7784.0826669694825 }, { "type": "C", "frame": 23, "at": 7784.0826669694825 }, { "type": "C", "frame": 22, "at": 7784.0826669694825 }, { "type": "C", "frame": 21, "at": 7784.0826669694825 }, { "type": "O", "frame": 17, "at": 7784.082667 }, { "type": "O", "frame": 18, "at": 7784.082667 }, { "type": "C", "frame": 18, "at": 7788.244084007446 }, { "type": "C", "frame": 17, "at": 7788.244084007446 }, { "type": "O", "frame": 19, "at": 7788.244084007446 }, { "type": "O", "frame": 18, "at": 7788.244084007446 }, { "type": "C", "frame": 18, "at": 7789.575000047096 }, { "type": "C", "frame": 19, "at": 7789.575000047096 }, { "type": "C", "frame": 16, "at": 7789.575001335327 }, { "type": "C", "frame": 15, "at": 7789.575001335327 }, { "type": "C", "frame": 14, "at": 7789.575001335327 }, { "type": "C", "frame": 13, "at": 7789.575001335327 }, { "type": "C", "frame": 12, "at": 7789.575001335327 }, { "type": "C", "frame": 11, "at": 7789.575001335327 }, { "type": "C", "frame": 10, "at": 7789.575001335327 }, { "type": "C", "frame": 9, "at": 7789.575001335327 }, { "type": "C", "frame": 8, "at": 7789.575001335327 }, { "type": "C", "frame": 7, "at": 7789.575001335327 }, { "type": "C", "frame": 6, "at": 7789.575001335327 }, { "type": "O", "frame": 20, "at": 7789.575001335327 }, { "type": "O", "frame": 8, "at": 7789.575001335327 }, { "type": "O", "frame": 9, "at": 7789.575001335327 }, { "type": "O", "frame": 10, "at": 7789.575001335327 }, { "type": "O", "frame": 11, "at": 7789.575001335327 }, { "type": "O", "frame": 12, "at": 7789.575001335327 }, { "type": "O", "frame": 13, "at": 7789.575001335327 }, { "type": "O", "frame": 14, "at": 7789.575001335327 }, { "type": "O", "frame": 15, "at": 7789.575001335327 }, { "type": "O", "frame": 16, "at": 7789.575001335327 }, { "type": "O", "frame": 21, "at": 7789.575001335327 }, { "type": "O", "frame": 22, "at": 7789.575001335327 }, { "type": "O", "frame": 23, "at": 7789.575001335327 }, { "type": "O", "frame": 31, "at": 7789.575001335327 }, { "type": "O", "frame": 18, "at": 7789.575001335327 }, { "type": "C", "frame": 18, "at": 7790.914792013168 }, { "type": "C", "frame": 31, "at": 7790.914792013168 }, { "type": "O", "frame": 24, "at": 7790.914792013168 }, { "type": "O", "frame": 18, "at": 7790.914792013168 }, { "type": "C", "frame": 18, "at": 7793.615499912445 }, { "type": "C", "frame": 24, "at": 7793.615499912445 }, { "type": "O", "frame": 26, "at": 7793.6155 }, { "type": "O", "frame": 18, "at": 7793.6155 }, { "type": "C", "frame": 18, "at": 7794.959167030334 }, { "type": "C", "frame": 26, "at": 7794.959167030334 }, { "type": "O", "frame": 24, "at": 7794.959167030334 }, { "type": "O", "frame": 18, "at": 7794.959167030334 }, { "type": "C", "frame": 18, "at": 7798.9919171297 }, { "type": "C", "frame": 24, "at": 7798.9919171297 }, { "type": "C", "frame": 23, "at": 7798.9919171297 }, { "type": "C", "frame": 22, "at": 7798.9919171297 }, { "type": "C", "frame": 21, "at": 7798.9919171297 }, { "type": "O", "frame": 17, "at": 7798.9919171297 }, { "type": "O", "frame": 18, "at": 7798.9919171297 }, { "type": "C", "frame": 18, "at": 7803.096791610901 }, { "type": "C", "frame": 17, "at": 7803.096791610901 }, { "type": "O", "frame": 19, "at": 7803.096792 }, { "type": "O", "frame": 18, "at": 7803.096792 }, { "type": "C", "frame": 18, "at": 7811.172084587281 }, { "type": "C", "frame": 19, "at": 7811.172084587281 }, { "type": "C", "frame": 16, "at": 7811.172084587281 }, { "type": "C", "frame": 15, "at": 7811.172084587281 }, { "type": "C", "frame": 14, "at": 7811.172084587281 }, { "type": "C", "frame": 13, "at": 7811.172084587281 }, { "type": "C", "frame": 12, "at": 7811.172084587281 }, { "type": "C", "frame": 11, "at": 7811.172084587281 }, { "type": "C", "frame": 10, "at": 7811.172084587281 }, { "type": "C", "frame": 9, "at": 7811.172084587281 }, { "type": "C", "frame": 8, "at": 7811.172084587281 }, { "type": "C", "frame": 20, "at": 7811.172084587281 }, { "type": "O", "frame": 6, "at": 7811.172084587281 }, { "type": "O", "frame": 7, "at": 7811.172084587281 }, { "type": "O", "frame": 8, "at": 7811.172084587281 }, { "type": "O", "frame": 9, "at": 7811.172084587281 }, { "type": "O", "frame": 10, "at": 7811.172084587281 }, { "type": "O", "frame": 11, "at": 7811.172084587281 }, { "type": "O", "frame": 12, "at": 7811.172084587281 }, { "type": "O", "frame": 13, "at": 7811.172084587281 }, { "type": "O", "frame": 14, "at": 7811.172084587281 }, { "type": "O", "frame": 15, "at": 7811.172084587281 }, { "type": "O", "frame": 16, "at": 7811.172084587281 }, { "type": "O", "frame": 21, "at": 7811.172084587281 }, { "type": "O", "frame": 22, "at": 7811.172084587281 }, { "type": "O", "frame": 23, "at": 7811.172084587281 }, { "type": "O", "frame": 24, "at": 7811.172084587281 }, { "type": "O", "frame": 18, "at": 7811.172084587281 }, { "type": "C", "frame": 18, "at": 7819.229750778564 }, { "type": "C", "frame": 24, "at": 7819.229750778564 }, { "type": "C", "frame": 23, "at": 7819.229750778564 }, { "type": "C", "frame": 22, "at": 7819.229750778564 }, { "type": "C", "frame": 21, "at": 7819.229750778564 }, { "type": "O", "frame": 17, "at": 7819.229750778564 }, { "type": "O", "frame": 18, "at": 7819.229750778564 }, { "type": "C", "frame": 18, "at": 7823.370209060669 }, { "type": "C", "frame": 17, "at": 7823.370209060669 }, { "type": "O", "frame": 19, "at": 7823.370209060669 }, { "type": "O", "frame": 18, "at": 7823.370209060669 }, { "type": "C", "frame": 18, "at": 7826.062499782928 }, { "type": "C", "frame": 19, "at": 7826.062499782928 }, { "type": "C", "frame": 16, "at": 7826.0625001453245 }, { "type": "C", "frame": 15, "at": 7826.0625001453245 }, { "type": "C", "frame": 14, "at": 7826.0625001453245 }, { "type": "C", "frame": 13, "at": 7826.0625001453245 }, { "type": "C", "frame": 12, "at": 7826.0625001453245 }, { "type": "C", "frame": 11, "at": 7826.0625001453245 }, { "type": "C", "frame": 10, "at": 7826.0625001453245 }, { "type": "C", "frame": 9, "at": 7826.0625001453245 }, { "type": "C", "frame": 8, "at": 7826.0625001453245 }, { "type": "C", "frame": 7, "at": 7826.0625001453245 }, { "type": "C", "frame": 6, "at": 7826.0625001453245 }, { "type": "O", "frame": 20, "at": 7826.0625001453245 }, { "type": "O", "frame": 8, "at": 7826.0625001453245 }, { "type": "O", "frame": 9, "at": 7826.0625001453245 }, { "type": "O", "frame": 10, "at": 7826.0625001453245 }, { "type": "O", "frame": 11, "at": 7826.0625001453245 }, { "type": "O", "frame": 12, "at": 7826.0625001453245 }, { "type": "O", "frame": 13, "at": 7826.0625001453245 }, { "type": "O", "frame": 14, "at": 7826.0625001453245 }, { "type": "O", "frame": 15, "at": 7826.0625001453245 }, { "type": "O", "frame": 16, "at": 7826.0625001453245 }, { "type": "O", "frame": 21, "at": 7826.0625001453245 }, { "type": "O", "frame": 22, "at": 7826.0625001453245 }, { "type": "O", "frame": 23, "at": 7826.0625001453245 }, { "type": "O", "frame": 38, "at": 7826.0625001453245 }, { "type": "O", "frame": 18, "at": 7826.0625001453245 }, { "type": "C", "frame": 18, "at": 7827.400416970253 }, { "type": "C", "frame": 38, "at": 7827.400416970253 }, { "type": "O", "frame": 24, "at": 7827.400417 }, { "type": "O", "frame": 18, "at": 7827.400417 }, { "type": "C", "frame": 18, "at": 7830.0803748666685 }, { "type": "C", "frame": 24, "at": 7830.0803748666685 }, { "type": "O", "frame": 25, "at": 7830.080375 }, { "type": "O", "frame": 18, "at": 7830.080375 }, { "type": "C", "frame": 18, "at": 7831.418458982467 }, { "type": "C", "frame": 25, "at": 7831.418458982467 }, { "type": "O", "frame": 24, "at": 7831.418459 }, { "type": "O", "frame": 18, "at": 7831.418459 }, { "type": "C", "frame": 18, "at": 7834.10820919455 }, { "type": "C", "frame": 24, "at": 7834.10820919455 }, { "type": "C", "frame": 23, "at": 7834.108209609985 }, { "type": "C", "frame": 22, "at": 7834.108209609985 }, { "type": "C", "frame": 21, "at": 7834.108209609985 }, { "type": "O", "frame": 17, "at": 7834.108209609985 }, { "type": "O", "frame": 18, "at": 7834.108209609985 }, { "type": "C", "frame": 18, "at": 7838.201709137329 }, { "type": "C", "frame": 17, "at": 7838.201709137329 }, { "type": "O", "frame": 19, "at": 7838.201709137329 }, { "type": "O", "frame": 18, "at": 7838.201709137329 }, { "type": "C", "frame": 18, "at": 7846.214875427612 }, { "type": "C", "frame": 19, "at": 7846.214875427612 }, { "type": "C", "frame": 16, "at": 7846.214875427612 }, { "type": "C", "frame": 15, "at": 7846.214875427612 }, { "type": "C", "frame": 14, "at": 7846.214875427612 }, { "type": "C", "frame": 13, "at": 7846.214875427612 }, { "type": "C", "frame": 12, "at": 7846.214875427612 }, { "type": "C", "frame": 11, "at": 7846.214875427612 }, { "type": "C", "frame": 10, "at": 7846.214875427612 }, { "type": "C", "frame": 9, "at": 7846.214875427612 }, { "type": "C", "frame": 8, "at": 7846.214875427612 }, { "type": "C", "frame": 20, "at": 7846.214875427612 }, { "type": "O", "frame": 6, "at": 7846.214875427612 }, { "type": "O", "frame": 7, "at": 7846.214875427612 }, { "type": "O", "frame": 8, "at": 7846.214875427612 }, { "type": "O", "frame": 9, "at": 7846.214875427612 }, { "type": "O", "frame": 10, "at": 7846.214875427612 }, { "type": "O", "frame": 11, "at": 7846.214875427612 }, { "type": "O", "frame": 12, "at": 7846.214875427612 }, { "type": "O", "frame": 13, "at": 7846.214875427612 }, { "type": "O", "frame": 14, "at": 7846.214875427612 }, { "type": "O", "frame": 15, "at": 7846.214875427612 }, { "type": "O", "frame": 16, "at": 7846.214875427612 }, { "type": "O", "frame": 21, "at": 7846.214875427612 }, { "type": "O", "frame": 22, "at": 7846.214875427612 }, { "type": "O", "frame": 23, "at": 7846.214875427612 }, { "type": "O", "frame": 24, "at": 7846.214875427612 }, { "type": "O", "frame": 18, "at": 7846.214875427612 }, { "type": "C", "frame": 18, "at": 7855.636459129333 }, { "type": "C", "frame": 24, "at": 7855.636459129333 }, { "type": "C", "frame": 23, "at": 7855.636459129333 }, { "type": "C", "frame": 22, "at": 7855.636459129333 }, { "type": "C", "frame": 21, "at": 7855.636459129333 }, { "type": "O", "frame": 17, "at": 7855.636459129333 }, { "type": "O", "frame": 18, "at": 7855.636459129333 }, { "type": "C", "frame": 18, "at": 7859.794749863037 }, { "type": "C", "frame": 17, "at": 7859.794749863037 }, { "type": "O", "frame": 19, "at": 7859.79475 }, { "type": "O", "frame": 18, "at": 7859.79475 }, { "type": "C", "frame": 18, "at": 7862.478459144592 }, { "type": "C", "frame": 19, "at": 7862.478459144592 }, { "type": "C", "frame": 16, "at": 7862.478459144592 }, { "type": "C", "frame": 15, "at": 7862.478459144592 }, { "type": "C", "frame": 14, "at": 7862.478459144592 }, { "type": "C", "frame": 13, "at": 7862.478459144592 }, { "type": "C", "frame": 12, "at": 7862.478459144592 }, { "type": "C", "frame": 11, "at": 7862.478459144592 }, { "type": "C", "frame": 10, "at": 7862.478459144592 }, { "type": "C", "frame": 9, "at": 7862.478459144592 }, { "type": "C", "frame": 8, "at": 7862.478459144592 }, { "type": "C", "frame": 7, "at": 7862.478459144592 }, { "type": "C", "frame": 6, "at": 7862.478459144592 }, { "type": "O", "frame": 20, "at": 7862.478459144592 }, { "type": "O", "frame": 8, "at": 7862.478459144592 }, { "type": "O", "frame": 9, "at": 7862.478459144592 }, { "type": "O", "frame": 10, "at": 7862.478459144592 }, { "type": "O", "frame": 11, "at": 7862.478459144592 }, { "type": "O", "frame": 12, "at": 7862.478459144592 }, { "type": "O", "frame": 13, "at": 7862.478459144592 }, { "type": "O", "frame": 14, "at": 7862.478459144592 }, { "type": "O", "frame": 15, "at": 7862.478459144592 }, { "type": "O", "frame": 16, "at": 7862.478459144592 }, { "type": "O", "frame": 21, "at": 7862.478459144592 }, { "type": "O", "frame": 22, "at": 7862.478459144592 }, { "type": "O", "frame": 23, "at": 7862.478459144592 }, { "type": "O", "frame": 24, "at": 7862.478459144592 }, { "type": "O", "frame": 18, "at": 7862.478459144592 }, { "type": "C", "frame": 18, "at": 7863.826292037376 }, { "type": "C", "frame": 24, "at": 7863.826292037376 }, { "type": "O", "frame": 25, "at": 7863.826292037376 }, { "type": "O", "frame": 18, "at": 7863.826292037376 }, { "type": "C", "frame": 18, "at": 7865.167458973114 }, { "type": "C", "frame": 25, "at": 7865.167458973114 }, { "type": "O", "frame": 24, "at": 7865.167459 }, { "type": "O", "frame": 18, "at": 7865.167459 }, { "type": "C", "frame": 18, "at": 7871.892666805634 }, { "type": "C", "frame": 24, "at": 7871.892666805634 }, { "type": "C", "frame": 23, "at": 7871.89266741217 }, { "type": "C", "frame": 22, "at": 7871.89266741217 }, { "type": "C", "frame": 21, "at": 7871.89266741217 }, { "type": "O", "frame": 17, "at": 7871.89266741217 }, { "type": "O", "frame": 18, "at": 7871.89266741217 }, { "type": "C", "frame": 18, "at": 7876.028249923889 }, { "type": "C", "frame": 17, "at": 7876.028249923889 }, { "type": "O", "frame": 19, "at": 7876.02825 }, { "type": "O", "frame": 18, "at": 7876.02825 }, { "type": "C", "frame": 18, "at": 7884.005958816529 }, { "type": "C", "frame": 19, "at": 7884.005958816529 }, { "type": "C", "frame": 16, "at": 7884.005959152588 }, { "type": "C", "frame": 15, "at": 7884.005959152588 }, { "type": "C", "frame": 14, "at": 7884.005959152588 }, { "type": "C", "frame": 13, "at": 7884.005959152588 }, { "type": "C", "frame": 12, "at": 7884.005959152588 }, { "type": "C", "frame": 11, "at": 7884.005959152588 }, { "type": "C", "frame": 10, "at": 7884.005959152588 }, { "type": "C", "frame": 9, "at": 7884.005959152588 }, { "type": "C", "frame": 8, "at": 7884.005959152588 }, { "type": "C", "frame": 20, "at": 7884.005959152588 }, { "type": "O", "frame": 6, "at": 7884.005959152588 }, { "type": "O", "frame": 7, "at": 7884.005959152588 }, { "type": "O", "frame": 8, "at": 7884.005959152588 }, { "type": "O", "frame": 9, "at": 7884.005959152588 }, { "type": "O", "frame": 10, "at": 7884.005959152588 }, { "type": "O", "frame": 11, "at": 7884.005959152588 }, { "type": "O", "frame": 12, "at": 7884.005959152588 }, { "type": "O", "frame": 13, "at": 7884.005959152588 }, { "type": "O", "frame": 14, "at": 7884.005959152588 }, { "type": "O", "frame": 15, "at": 7884.005959152588 }, { "type": "O", "frame": 16, "at": 7884.005959152588 }, { "type": "O", "frame": 21, "at": 7884.005959152588 }, { "type": "O", "frame": 22, "at": 7884.005959152588 }, { "type": "O", "frame": 23, "at": 7884.005959152588 }, { "type": "O", "frame": 24, "at": 7884.005959152588 }, { "type": "O", "frame": 18, "at": 7884.005959152588 }, { "type": "C", "frame": 18, "at": 7892.064917053589 }, { "type": "C", "frame": 24, "at": 7892.064917053589 }, { "type": "C", "frame": 23, "at": 7892.064917053589 }, { "type": "C", "frame": 22, "at": 7892.064917053589 }, { "type": "C", "frame": 21, "at": 7892.064917053589 }, { "type": "O", "frame": 17, "at": 7892.064917053589 }, { "type": "O", "frame": 18, "at": 7892.064917053589 }, { "type": "C", "frame": 18, "at": 7897.555458934967 }, { "type": "C", "frame": 17, "at": 7897.555458934967 }, { "type": "O", "frame": 19, "at": 7897.555459 }, { "type": "O", "frame": 18, "at": 7897.555459 }, { "type": "C", "frame": 18, "at": 7904.193417049774 }, { "type": "C", "frame": 19, "at": 7904.193417049774 }, { "type": "C", "frame": 16, "at": 7904.193417049774 }, { "type": "C", "frame": 15, "at": 7904.193417049774 }, { "type": "C", "frame": 14, "at": 7904.193417049774 }, { "type": "C", "frame": 13, "at": 7904.193417049774 }, { "type": "C", "frame": 12, "at": 7904.193417049774 }, { "type": "C", "frame": 11, "at": 7904.193417049774 }, { "type": "C", "frame": 10, "at": 7904.193417049774 }, { "type": "C", "frame": 9, "at": 7904.193417049774 }, { "type": "C", "frame": 8, "at": 7904.193417049774 }, { "type": "C", "frame": 7, "at": 7904.193417049774 }, { "type": "C", "frame": 6, "at": 7904.193417049774 }, { "type": "O", "frame": 20, "at": 7904.193417049774 }, { "type": "O", "frame": 8, "at": 7904.193417049774 }, { "type": "O", "frame": 9, "at": 7904.193417049774 }, { "type": "O", "frame": 10, "at": 7904.193417049774 }, { "type": "O", "frame": 11, "at": 7904.193417049774 }, { "type": "O", "frame": 12, "at": 7904.193417049774 }, { "type": "O", "frame": 13, "at": 7904.193417049774 }, { "type": "O", "frame": 14, "at": 7904.193417049774 }, { "type": "O", "frame": 15, "at": 7904.193417049774 }, { "type": "O", "frame": 16, "at": 7904.193417049774 }, { "type": "O", "frame": 21, "at": 7904.193417049774 }, { "type": "O", "frame": 22, "at": 7904.193417049774 }, { "type": "O", "frame": 23, "at": 7904.193417049774 }, { "type": "O", "frame": 24, "at": 7904.193417049774 }, { "type": "O", "frame": 18, "at": 7904.193417049774 }, { "type": "C", "frame": 18, "at": 7905.92654197139 }, { "type": "C", "frame": 24, "at": 7905.92654197139 }, { "type": "O", "frame": 26, "at": 7905.926542 }, { "type": "O", "frame": 18, "at": 7905.926542 }, { "type": "C", "frame": 18, "at": 7912.090833858673 }, { "type": "C", "frame": 26, "at": 7912.090833858673 }, { "type": "O", "frame": 24, "at": 7912.090834 }, { "type": "O", "frame": 18, "at": 7912.090834 }, { "type": "C", "frame": 18, "at": 7913.682916977295 }, { "type": "C", "frame": 24, "at": 7913.682916977295 }, { "type": "C", "frame": 23, "at": 7913.682917045777 }, { "type": "C", "frame": 22, "at": 7913.682917045777 }, { "type": "C", "frame": 21, "at": 7913.682917045777 }, { "type": "O", "frame": 17, "at": 7913.682917045777 }, { "type": "O", "frame": 18, "at": 7913.682917045777 }, { "type": "C", "frame": 18, "at": 7919.137709022705 }, { "type": "C", "frame": 17, "at": 7919.137709022705 }, { "type": "O", "frame": 19, "at": 7919.137709022705 }, { "type": "O", "frame": 18, "at": 7919.137709022705 }, { "type": "C", "frame": 18, "at": 7920.6386250041805 }, { "type": "C", "frame": 19, "at": 7920.6386250041805 }, { "type": "C", "frame": 16, "at": 7920.6386250041805 }, { "type": "C", "frame": 15, "at": 7920.6386250041805 }, { "type": "C", "frame": 14, "at": 7920.6386250041805 }, { "type": "C", "frame": 13, "at": 7920.6386250041805 }, { "type": "C", "frame": 12, "at": 7920.6386250041805 }, { "type": "C", "frame": 11, "at": 7920.6386250041805 }, { "type": "C", "frame": 10, "at": 7920.6386250041805 }, { "type": "C", "frame": 9, "at": 7920.6386250041805 }, { "type": "C", "frame": 8, "at": 7920.6386250041805 }, { "type": "C", "frame": 20, "at": 7920.6386250041805 }, { "type": "O", "frame": 6, "at": 7920.6386250041805 }, { "type": "O", "frame": 7, "at": 7920.6386250041805 }, { "type": "O", "frame": 8, "at": 7920.6386250041805 }, { "type": "O", "frame": 9, "at": 7920.6386250041805 }, { "type": "O", "frame": 10, "at": 7920.6386250041805 }, { "type": "O", "frame": 11, "at": 7920.6386250041805 }, { "type": "O", "frame": 12, "at": 7920.6386250041805 }, { "type": "O", "frame": 13, "at": 7920.6386250041805 }, { "type": "O", "frame": 14, "at": 7920.6386250041805 }, { "type": "O", "frame": 15, "at": 7920.6386250041805 }, { "type": "O", "frame": 16, "at": 7920.6386250041805 }, { "type": "O", "frame": 21, "at": 7920.6386250041805 }, { "type": "O", "frame": 22, "at": 7920.6386250041805 }, { "type": "O", "frame": 23, "at": 7920.6386250041805 }, { "type": "O", "frame": 24, "at": 7920.6386250041805 }, { "type": "O", "frame": 18, "at": 7920.6386250041805 }, { "type": "C", "frame": 18, "at": 7929.521875236511 }, { "type": "C", "frame": 24, "at": 7929.521875236511 }, { "type": "O", "frame": 25, "at": 7929.521875236511 }, { "type": "O", "frame": 18, "at": 7929.521875236511 }, { "type": "C", "frame": 18, "at": 7931.618125057221 }, { "type": "C", "frame": 25, "at": 7931.618125057221 }, { "type": "C", "frame": 23, "at": 7931.618125057221 }, { "type": "C", "frame": 22, "at": 7931.618125057221 }, { "type": "C", "frame": 21, "at": 7931.618125057221 }, { "type": "O", "frame": 17, "at": 7931.618125057221 }, { "type": "O", "frame": 18, "at": 7931.618125057221 }, { "type": "C", "frame": 18, "at": 7937.559542217255 }, { "type": "C", "frame": 17, "at": 7937.559542217255 }, { "type": "O", "frame": 19, "at": 7937.559542217255 }, { "type": "O", "frame": 18, "at": 7937.559542217255 }, { "type": "C", "frame": 18, "at": 7945.435249626343 }, { "type": "C", "frame": 19, "at": 7945.435249626343 }, { "type": "C", "frame": 16, "at": 7945.435250137329 }, { "type": "C", "frame": 15, "at": 7945.435250137329 }, { "type": "C", "frame": 14, "at": 7945.435250137329 }, { "type": "C", "frame": 13, "at": 7945.435250137329 }, { "type": "C", "frame": 12, "at": 7945.435250137329 }, { "type": "C", "frame": 11, "at": 7945.435250137329 }, { "type": "C", "frame": 10, "at": 7945.435250137329 }, { "type": "C", "frame": 9, "at": 7945.435250137329 }, { "type": "C", "frame": 8, "at": 7945.435250137329 }, { "type": "C", "frame": 7, "at": 7945.435250137329 }, { "type": "C", "frame": 6, "at": 7945.435250137329 }, { "type": "O", "frame": 20, "at": 7945.435250137329 }, { "type": "O", "frame": 8, "at": 7945.435250137329 }, { "type": "O", "frame": 9, "at": 7945.435250137329 }, { "type": "O", "frame": 10, "at": 7945.435250137329 }, { "type": "O", "frame": 11, "at": 7945.435250137329 }, { "type": "O", "frame": 12, "at": 7945.435250137329 }, { "type": "O", "frame": 13, "at": 7945.435250137329 }, { "type": "O", "frame": 14, "at": 7945.435250137329 }, { "type": "O", "frame": 15, "at": 7945.435250137329 }, { "type": "O", "frame": 16, "at": 7945.435250137329 }, { "type": "O", "frame": 21, "at": 7945.435250137329 }, { "type": "O", "frame": 22, "at": 7945.435250137329 }, { "type": "O", "frame": 23, "at": 7945.435250137329 }, { "type": "O", "frame": 24, "at": 7945.435250137329 }, { "type": "O", "frame": 18, "at": 7945.435250137329 }, { "type": "C", "frame": 18, "at": 7953.550624565125 }, { "type": "C", "frame": 24, "at": 7953.550624565125 }, { "type": "C", "frame": 23, "at": 7953.550624565125 }, { "type": "C", "frame": 22, "at": 7953.550624565125 }, { "type": "C", "frame": 21, "at": 7953.550624565125 }, { "type": "O", "frame": 17, "at": 7953.550625 }, { "type": "O", "frame": 18, "at": 7953.550625 }, { "type": "C", "frame": 18, "at": 7959.0092918014525 }, { "type": "C", "frame": 17, "at": 7959.0092918014525 }, { "type": "O", "frame": 19, "at": 7959.009292 }, { "type": "O", "frame": 18, "at": 7959.009292 }, { "type": "C", "frame": 18, "at": 7965.713416450683 }, { "type": "C", "frame": 19, "at": 7965.713416450683 }, { "type": "C", "frame": 16, "at": 7965.713416450683 }, { "type": "C", "frame": 15, "at": 7965.713416450683 }, { "type": "C", "frame": 14, "at": 7965.713416450683 }, { "type": "C", "frame": 13, "at": 7965.713416450683 }, { "type": "C", "frame": 12, "at": 7965.713416450683 }, { "type": "C", "frame": 11, "at": 7965.713416450683 }, { "type": "C", "frame": 10, "at": 7965.713416450683 }, { "type": "C", "frame": 9, "at": 7965.713416450683 }, { "type": "C", "frame": 8, "at": 7965.713416450683 }, { "type": "O", "frame": 18, "at": 7965.713417 }, { "type": "C", "frame": 18, "at": 7967.055208987419 }, { "type": "C", "frame": 20, "at": 7967.055208987419 }, { "type": "O", "frame": 6, "at": 7967.055209 }, { "type": "O", "frame": 7, "at": 7967.055209 }, { "type": "O", "frame": 8, "at": 7967.055209 }, { "type": "O", "frame": 9, "at": 7967.055209 }, { "type": "O", "frame": 10, "at": 7967.055209 }, { "type": "O", "frame": 11, "at": 7967.055209 }, { "type": "O", "frame": 12, "at": 7967.055209 }, { "type": "O", "frame": 13, "at": 7967.055209 }, { "type": "O", "frame": 14, "at": 7967.055209 }, { "type": "O", "frame": 15, "at": 7967.055209 }, { "type": "O", "frame": 16, "at": 7967.055209 }, { "type": "O", "frame": 21, "at": 7967.055209 }, { "type": "O", "frame": 22, "at": 7967.055209 }, { "type": "O", "frame": 23, "at": 7967.055209 }, { "type": "O", "frame": 29, "at": 7967.055209 }, { "type": "O", "frame": 18, "at": 7967.055209 }, { "type": "C", "frame": 18, "at": 7968.4073340486375 }, { "type": "C", "frame": 29, "at": 7968.4073340486375 }, { "type": "O", "frame": 24, "at": 7968.4073340486375 }, { "type": "O", "frame": 18, "at": 7968.4073340486375 }, { "type": "C", "frame": 18, "at": 7975.1307498515935 }, { "type": "C", "frame": 24, "at": 7975.1307498515935 }, { "type": "C", "frame": 23, "at": 7975.130750496277 }, { "type": "C", "frame": 22, "at": 7975.130750496277 }, { "type": "C", "frame": 21, "at": 7975.130750496277 }, { "type": "O", "frame": 17, "at": 7975.130750496277 }, { "type": "O", "frame": 18, "at": 7975.130750496277 }, { "type": "C", "frame": 18, "at": 7980.692125141144 }, { "type": "C", "frame": 17, "at": 7980.692125141144 }, { "type": "O", "frame": 19, "at": 7980.692125141144 }, { "type": "O", "frame": 18, "at": 7980.692125141144 }, { "type": "C", "frame": 18, "at": 7982.062042035102 }, { "type": "C", "frame": 19, "at": 7982.062042035102 }, { "type": "C", "frame": 16, "at": 7982.062042076477 }, { "type": "C", "frame": 15, "at": 7982.062042076477 }, { "type": "C", "frame": 14, "at": 7982.062042076477 }, { "type": "C", "frame": 13, "at": 7982.062042076477 }, { "type": "C", "frame": 12, "at": 7982.062042076477 }, { "type": "C", "frame": 11, "at": 7982.062042076477 }, { "type": "C", "frame": 10, "at": 7982.062042076477 }, { "type": "C", "frame": 9, "at": 7982.062042076477 }, { "type": "C", "frame": 8, "at": 7982.062042076477 }, { "type": "C", "frame": 7, "at": 7982.062042076477 }, { "type": "C", "frame": 6, "at": 7982.062042076477 }, { "type": "O", "frame": 20, "at": 7982.062042076477 }, { "type": "O", "frame": 8, "at": 7982.062042076477 }, { "type": "O", "frame": 9, "at": 7982.062042076477 }, { "type": "O", "frame": 10, "at": 7982.062042076477 }, { "type": "O", "frame": 11, "at": 7982.062042076477 }, { "type": "O", "frame": 12, "at": 7982.062042076477 }, { "type": "O", "frame": 13, "at": 7982.062042076477 }, { "type": "O", "frame": 14, "at": 7982.062042076477 }, { "type": "O", "frame": 15, "at": 7982.062042076477 }, { "type": "O", "frame": 16, "at": 7982.062042076477 }, { "type": "O", "frame": 21, "at": 7982.062042076477 }, { "type": "O", "frame": 22, "at": 7982.062042076477 }, { "type": "O", "frame": 23, "at": 7982.062042076477 }, { "type": "O", "frame": 24, "at": 7982.062042076477 }, { "type": "O", "frame": 18, "at": 7982.062042076477 }, { "type": "C", "frame": 18, "at": 7984.753041984741 }, { "type": "C", "frame": 24, "at": 7984.753041984741 }, { "type": "O", "frame": 29, "at": 7984.753042 }, { "type": "O", "frame": 18, "at": 7984.753042 }, { "type": "C", "frame": 18, "at": 7986.100500004952 }, { "type": "C", "frame": 29, "at": 7986.100500004952 }, { "type": "O", "frame": 24, "at": 7986.100500004952 }, { "type": "O", "frame": 18, "at": 7986.100500004952 }, { "type": "C", "frame": 18, "at": 7990.132334125518 }, { "type": "C", "frame": 24, "at": 7990.132334125518 }, { "type": "C", "frame": 23, "at": 7990.132334125518 }, { "type": "C", "frame": 22, "at": 7990.132334125518 }, { "type": "C", "frame": 21, "at": 7990.132334125518 }, { "type": "O", "frame": 17, "at": 7990.132334125518 }, { "type": "O", "frame": 18, "at": 7990.132334125518 }, { "type": "C", "frame": 18, "at": 7995.590208774933 }, { "type": "C", "frame": 17, "at": 7995.590208774933 }, { "type": "O", "frame": 19, "at": 7995.590209 }, { "type": "O", "frame": 18, "at": 7995.590209 }, { "type": "C", "frame": 18, "at": 8002.271000378021 }, { "type": "C", "frame": 19, "at": 8002.271000378021 }, { "type": "C", "frame": 16, "at": 8002.271000378021 }, { "type": "C", "frame": 15, "at": 8002.271000378021 }, { "type": "C", "frame": 14, "at": 8002.271000378021 }, { "type": "C", "frame": 13, "at": 8002.271000378021 }, { "type": "C", "frame": 12, "at": 8002.271000378021 }, { "type": "C", "frame": 11, "at": 8002.271000378021 }, { "type": "C", "frame": 10, "at": 8002.271000378021 }, { "type": "C", "frame": 9, "at": 8002.271000378021 }, { "type": "C", "frame": 8, "at": 8002.271000378021 }, { "type": "C", "frame": 20, "at": 8002.271000378021 }, { "type": "O", "frame": 6, "at": 8002.271000378021 }, { "type": "O", "frame": 27, "at": 8002.271000378021 }, { "type": "O", "frame": 18, "at": 8002.271000378021 }, { "type": "C", "frame": 18, "at": 8003.620084019661 }, { "type": "C", "frame": 27, "at": 8003.620084019661 }, { "type": "O", "frame": 7, "at": 8003.620084019661 }, { "type": "O", "frame": 8, "at": 8003.620084019661 }, { "type": "O", "frame": 9, "at": 8003.620084019661 }, { "type": "O", "frame": 10, "at": 8003.620084019661 }, { "type": "O", "frame": 11, "at": 8003.620084019661 }, { "type": "O", "frame": 12, "at": 8003.620084019661 }, { "type": "O", "frame": 13, "at": 8003.620084019661 }, { "type": "O", "frame": 14, "at": 8003.620084019661 }, { "type": "O", "frame": 15, "at": 8003.620084019661 }, { "type": "O", "frame": 16, "at": 8003.620084019661 }, { "type": "O", "frame": 21, "at": 8003.620084019661 }, { "type": "O", "frame": 22, "at": 8003.620084019661 }, { "type": "O", "frame": 23, "at": 8003.620084019661 }, { "type": "O", "frame": 24, "at": 8003.620084019661 }, { "type": "O", "frame": 18, "at": 8003.620084019661 }, { "type": "C", "frame": 18, "at": 8011.679708671936 }, { "type": "C", "frame": 24, "at": 8011.679708671936 }, { "type": "C", "frame": 23, "at": 8011.679708671936 }, { "type": "C", "frame": 22, "at": 8011.679708671936 }, { "type": "C", "frame": 21, "at": 8011.679708671936 }, { "type": "O", "frame": 17, "at": 8011.679709 }, { "type": "O", "frame": 18, "at": 8011.679709 }, { "type": "C", "frame": 18, "at": 8015.781458897003 }, { "type": "C", "frame": 17, "at": 8015.781458897003 }, { "type": "O", "frame": 19, "at": 8015.781459 }, { "type": "O", "frame": 18, "at": 8015.781459 }, { "type": "C", "frame": 18, "at": 8018.475584175476 }, { "type": "C", "frame": 19, "at": 8018.475584175476 }, { "type": "C", "frame": 16, "at": 8018.475584175476 }, { "type": "C", "frame": 15, "at": 8018.475584175476 }, { "type": "C", "frame": 14, "at": 8018.475584175476 }, { "type": "C", "frame": 13, "at": 8018.475584175476 }, { "type": "C", "frame": 12, "at": 8018.475584175476 }, { "type": "C", "frame": 11, "at": 8018.475584175476 }, { "type": "C", "frame": 10, "at": 8018.475584175476 }, { "type": "C", "frame": 9, "at": 8018.475584175476 }, { "type": "C", "frame": 8, "at": 8018.475584175476 }, { "type": "C", "frame": 7, "at": 8018.475584175476 }, { "type": "C", "frame": 6, "at": 8018.475584175476 }, { "type": "O", "frame": 20, "at": 8018.475584175476 }, { "type": "O", "frame": 8, "at": 8018.475584175476 }, { "type": "O", "frame": 9, "at": 8018.475584175476 }, { "type": "O", "frame": 10, "at": 8018.475584175476 }, { "type": "O", "frame": 11, "at": 8018.475584175476 }, { "type": "O", "frame": 12, "at": 8018.475584175476 }, { "type": "O", "frame": 13, "at": 8018.475584175476 }, { "type": "O", "frame": 14, "at": 8018.475584175476 }, { "type": "O", "frame": 15, "at": 8018.475584175476 }, { "type": "O", "frame": 16, "at": 8018.475584175476 }, { "type": "O", "frame": 21, "at": 8018.475584175476 }, { "type": "O", "frame": 22, "at": 8018.475584175476 }, { "type": "O", "frame": 23, "at": 8018.475584175476 }, { "type": "O", "frame": 24, "at": 8018.475584175476 }, { "type": "O", "frame": 18, "at": 8018.475584175476 }, { "type": "C", "frame": 18, "at": 8026.530416458496 }, { "type": "C", "frame": 24, "at": 8026.530416458496 }, { "type": "C", "frame": 23, "at": 8026.530416458496 }, { "type": "C", "frame": 22, "at": 8026.530416458496 }, { "type": "C", "frame": 21, "at": 8026.530416458496 }, { "type": "O", "frame": 17, "at": 8026.530417 }, { "type": "O", "frame": 18, "at": 8026.530417 }, { "type": "C", "frame": 18, "at": 8030.605625187103 }, { "type": "C", "frame": 17, "at": 8030.605625187103 }, { "type": "O", "frame": 19, "at": 8030.605625187103 }, { "type": "O", "frame": 18, "at": 8030.605625187103 }, { "type": "C", "frame": 18, "at": 8039.742791976929 }, { "type": "C", "frame": 19, "at": 8039.742791976929 }, { "type": "C", "frame": 16, "at": 8039.742791976929 }, { "type": "C", "frame": 15, "at": 8039.742791976929 }, { "type": "C", "frame": 14, "at": 8039.742791976929 }, { "type": "C", "frame": 13, "at": 8039.742791976929 }, { "type": "C", "frame": 12, "at": 8039.742791976929 }, { "type": "C", "frame": 11, "at": 8039.742791976929 }, { "type": "C", "frame": 10, "at": 8039.742791976929 }, { "type": "C", "frame": 9, "at": 8039.742791976929 }, { "type": "C", "frame": 8, "at": 8039.742791976929 }, { "type": "C", "frame": 20, "at": 8039.742791976929 }, { "type": "O", "frame": 6, "at": 8039.742792 }, { "type": "O", "frame": 7, "at": 8039.742792 }, { "type": "O", "frame": 8, "at": 8039.742792 }, { "type": "O", "frame": 9, "at": 8039.742792 }, { "type": "O", "frame": 10, "at": 8039.742792 }, { "type": "O", "frame": 11, "at": 8039.742792 }, { "type": "O", "frame": 12, "at": 8039.742792 }, { "type": "O", "frame": 13, "at": 8039.742792 }, { "type": "O", "frame": 14, "at": 8039.742792 }, { "type": "O", "frame": 15, "at": 8039.742792 }, { "type": "O", "frame": 16, "at": 8039.742792 }, { "type": "O", "frame": 21, "at": 8039.742792 }, { "type": "O", "frame": 22, "at": 8039.742792 }, { "type": "O", "frame": 23, "at": 8039.742792 }, { "type": "O", "frame": 24, "at": 8039.742792 }, { "type": "O", "frame": 18, "at": 8039.742792 }, { "type": "C", "frame": 18, "at": 8049.1974171297 }, { "type": "C", "frame": 24, "at": 8049.1974171297 }, { "type": "C", "frame": 23, "at": 8049.1974171297 }, { "type": "C", "frame": 22, "at": 8049.1974171297 }, { "type": "C", "frame": 21, "at": 8049.1974171297 }, { "type": "O", "frame": 17, "at": 8049.1974171297 }, { "type": "O", "frame": 18, "at": 8049.1974171297 }, { "type": "C", "frame": 18, "at": 8056.574374893372 }, { "type": "C", "frame": 17, "at": 8056.574374893372 }, { "type": "C", "frame": 16, "at": 8056.574375023071 }, { "type": "C", "frame": 15, "at": 8056.574375023071 }, { "type": "C", "frame": 14, "at": 8056.574375023071 }, { "type": "C", "frame": 13, "at": 8056.574375023071 }, { "type": "C", "frame": 12, "at": 8056.574375023071 }, { "type": "C", "frame": 11, "at": 8056.574375023071 }, { "type": "C", "frame": 10, "at": 8056.574375023071 }, { "type": "C", "frame": 9, "at": 8056.574375023071 }, { "type": "C", "frame": 8, "at": 8056.574375023071 }, { "type": "C", "frame": 7, "at": 8056.574375023071 }, { "type": "C", "frame": 6, "at": 8056.574375023071 }, { "type": "O", "frame": 20, "at": 8056.574375023071 }, { "type": "O", "frame": 18, "at": 8056.574375023071 }, { "type": "C", "frame": 18, "at": 8058.085208978653 }, { "type": "O", "frame": 8, "at": 8058.085209 }, { "type": "O", "frame": 9, "at": 8058.085209 }, { "type": "O", "frame": 10, "at": 8058.085209 }, { "type": "O", "frame": 11, "at": 8058.085209 }, { "type": "O", "frame": 12, "at": 8058.085209 }, { "type": "O", "frame": 13, "at": 8058.085209 }, { "type": "O", "frame": 14, "at": 8058.085209 }, { "type": "O", "frame": 15, "at": 8058.085209 }, { "type": "O", "frame": 16, "at": 8058.085209 }, { "type": "O", "frame": 21, "at": 8058.085209 }, { "type": "O", "frame": 22, "at": 8058.085209 }, { "type": "O", "frame": 23, "at": 8058.085209 }, { "type": "O", "frame": 24, "at": 8058.085209 }, { "type": "O", "frame": 18, "at": 8058.085209 }, { "type": "C", "frame": 18, "at": 8065.233542072662 }, { "type": "C", "frame": 24, "at": 8065.233542072662 }, { "type": "O", "frame": 29, "at": 8065.233542072662 }, { "type": "O", "frame": 18, "at": 8065.233542072662 }, { "type": "C", "frame": 18, "at": 8066.714250003044 }, { "type": "C", "frame": 29, "at": 8066.714250003044 }, { "type": "O", "frame": 24, "at": 8066.714250003044 }, { "type": "O", "frame": 18, "at": 8066.714250003044 }, { "type": "C", "frame": 18, "at": 8068.293834002495 }, { "type": "C", "frame": 24, "at": 8068.293834002495 }, { "type": "C", "frame": 23, "at": 8068.293834002495 }, { "type": "C", "frame": 22, "at": 8068.293834002495 }, { "type": "C", "frame": 21, "at": 8068.293834002495 }, { "type": "O", "frame": 17, "at": 8068.293834002495 }, { "type": "O", "frame": 18, "at": 8068.293834002495 }, { "type": "C", "frame": 18, "at": 8073.030792026886 }, { "type": "C", "frame": 17, "at": 8073.030792026886 }, { "type": "O", "frame": 19, "at": 8073.030792026886 }, { "type": "O", "frame": 18, "at": 8073.030792026886 }, { "type": "C", "frame": 18, "at": 8078.389541866485 }, { "type": "C", "frame": 19, "at": 8078.389541866485 }, { "type": "C", "frame": 16, "at": 8078.389543640503 }, { "type": "C", "frame": 15, "at": 8078.389543640503 }, { "type": "C", "frame": 14, "at": 8078.389543640503 }, { "type": "C", "frame": 13, "at": 8078.389543640503 }, { "type": "C", "frame": 12, "at": 8078.389543640503 }, { "type": "C", "frame": 11, "at": 8078.389543640503 }, { "type": "C", "frame": 10, "at": 8078.389543640503 }, { "type": "C", "frame": 9, "at": 8078.389543640503 }, { "type": "C", "frame": 8, "at": 8078.389543640503 }, { "type": "C", "frame": 20, "at": 8078.389543640503 }, { "type": "O", "frame": 6, "at": 8078.389543640503 }, { "type": "O", "frame": 7, "at": 8078.389543640503 }, { "type": "O", "frame": 8, "at": 8078.389543640503 }, { "type": "O", "frame": 9, "at": 8078.389543640503 }, { "type": "O", "frame": 10, "at": 8078.389543640503 }, { "type": "O", "frame": 11, "at": 8078.389543640503 }, { "type": "O", "frame": 12, "at": 8078.389543640503 }, { "type": "O", "frame": 13, "at": 8078.389543640503 }, { "type": "O", "frame": 14, "at": 8078.389543640503 }, { "type": "O", "frame": 15, "at": 8078.389543640503 }, { "type": "O", "frame": 16, "at": 8078.389543640503 }, { "type": "O", "frame": 21, "at": 8078.389543640503 }, { "type": "O", "frame": 22, "at": 8078.389543640503 }, { "type": "O", "frame": 23, "at": 8078.389543640503 }, { "type": "O", "frame": 24, "at": 8078.389543640503 }, { "type": "O", "frame": 18, "at": 8078.389543640503 }, { "type": "C", "frame": 18, "at": 8087.843292610351 }, { "type": "C", "frame": 24, "at": 8087.843292610351 }, { "type": "C", "frame": 23, "at": 8087.843292610351 }, { "type": "C", "frame": 22, "at": 8087.843292610351 }, { "type": "C", "frame": 21, "at": 8087.843292610351 }, { "type": "O", "frame": 17, "at": 8087.843292610351 }, { "type": "O", "frame": 18, "at": 8087.843292610351 }, { "type": "C", "frame": 18, "at": 8093.306208851043 }, { "type": "C", "frame": 17, "at": 8093.306208851043 }, { "type": "O", "frame": 19, "at": 8093.306209 }, { "type": "O", "frame": 18, "at": 8093.306209 }, { "type": "C", "frame": 18, "at": 8101.354459198365 }, { "type": "C", "frame": 19, "at": 8101.354459198365 }, { "type": "C", "frame": 16, "at": 8101.354459198365 }, { "type": "C", "frame": 15, "at": 8101.354459198365 }, { "type": "C", "frame": 14, "at": 8101.354459198365 }, { "type": "C", "frame": 13, "at": 8101.354459198365 }, { "type": "C", "frame": 12, "at": 8101.354459198365 }, { "type": "C", "frame": 11, "at": 8101.354459198365 }, { "type": "C", "frame": 10, "at": 8101.354459198365 }, { "type": "C", "frame": 9, "at": 8101.354459198365 }, { "type": "C", "frame": 8, "at": 8101.354459198365 }, { "type": "C", "frame": 7, "at": 8101.354459198365 }, { "type": "C", "frame": 6, "at": 8101.354459198365 }, { "type": "O", "frame": 20, "at": 8101.354459198365 }, { "type": "O", "frame": 8, "at": 8101.354459198365 }, { "type": "O", "frame": 9, "at": 8101.354459198365 }, { "type": "O", "frame": 10, "at": 8101.354459198365 }, { "type": "O", "frame": 11, "at": 8101.354459198365 }, { "type": "O", "frame": 12, "at": 8101.354459198365 }, { "type": "O", "frame": 13, "at": 8101.354459198365 }, { "type": "O", "frame": 14, "at": 8101.354459198365 }, { "type": "O", "frame": 15, "at": 8101.354459198365 }, { "type": "O", "frame": 16, "at": 8101.354459198365 }, { "type": "O", "frame": 21, "at": 8101.354459198365 }, { "type": "O", "frame": 22, "at": 8101.354459198365 }, { "type": "O", "frame": 23, "at": 8101.354459198365 }, { "type": "O", "frame": 24, "at": 8101.354459198365 }, { "type": "O", "frame": 18, "at": 8101.354459198365 }, { "type": "C", "frame": 18, "at": 8108.0672089580385 }, { "type": "C", "frame": 24, "at": 8108.0672089580385 }, { "type": "O", "frame": 28, "at": 8108.067209 }, { "type": "O", "frame": 18, "at": 8108.067209 }, { "type": "C", "frame": 18, "at": 8109.416249985107 }, { "type": "C", "frame": 28, "at": 8109.416249985107 }, { "type": "C", "frame": 23, "at": 8109.416249985107 }, { "type": "C", "frame": 22, "at": 8109.416249985107 }, { "type": "C", "frame": 21, "at": 8109.416249985107 }, { "type": "O", "frame": 17, "at": 8109.41625 }, { "type": "O", "frame": 18, "at": 8109.41625 }, { "type": "C", "frame": 18, "at": 8114.881084213257 }, { "type": "C", "frame": 17, "at": 8114.881084213257 }, { "type": "O", "frame": 19, "at": 8114.881084213257 }, { "type": "O", "frame": 18, "at": 8114.881084213257 }, { "type": "C", "frame": 18, "at": 8116.211041962036 }, { "type": "C", "frame": 19, "at": 8116.211041962036 }, { "type": "C", "frame": 16, "at": 8116.211041962036 }, { "type": "C", "frame": 15, "at": 8116.211041962036 }, { "type": "C", "frame": 14, "at": 8116.211041962036 }, { "type": "C", "frame": 13, "at": 8116.211041962036 }, { "type": "C", "frame": 12, "at": 8116.211041962036 }, { "type": "C", "frame": 11, "at": 8116.211041962036 }, { "type": "C", "frame": 10, "at": 8116.211041962036 }, { "type": "C", "frame": 9, "at": 8116.211041962036 }, { "type": "C", "frame": 8, "at": 8116.211041962036 }, { "type": "C", "frame": 20, "at": 8116.211041962036 }, { "type": "O", "frame": 6, "at": 8116.211042 }, { "type": "O", "frame": 7, "at": 8116.211042 }, { "type": "O", "frame": 8, "at": 8116.211042 }, { "type": "O", "frame": 9, "at": 8116.211042 }, { "type": "O", "frame": 10, "at": 8116.211042 }, { "type": "O", "frame": 11, "at": 8116.211042 }, { "type": "O", "frame": 12, "at": 8116.211042 }, { "type": "O", "frame": 13, "at": 8116.211042 }, { "type": "O", "frame": 14, "at": 8116.211042 }, { "type": "O", "frame": 15, "at": 8116.211042 }, { "type": "O", "frame": 16, "at": 8116.211042 }, { "type": "O", "frame": 21, "at": 8116.211042 }, { "type": "O", "frame": 22, "at": 8116.211042 }, { "type": "O", "frame": 23, "at": 8116.211042 }, { "type": "O", "frame": 28, "at": 8116.211042 }, { "type": "O", "frame": 18, "at": 8116.211042 }, { "type": "C", "frame": 18, "at": 8117.551292015259 }, { "type": "C", "frame": 28, "at": 8117.551292015259 }, { "type": "O", "frame": 24, "at": 8117.551292015259 }, { "type": "O", "frame": 18, "at": 8117.551292015259 }, { "type": "C", "frame": 18, "at": 8125.377124843781 }, { "type": "C", "frame": 24, "at": 8125.377124843781 }, { "type": "C", "frame": 23, "at": 8125.377124843781 }, { "type": "C", "frame": 22, "at": 8125.377124843781 }, { "type": "C", "frame": 21, "at": 8125.377124843781 }, { "type": "O", "frame": 17, "at": 8125.377125 }, { "type": "O", "frame": 18, "at": 8125.377125 }, { "type": "C", "frame": 18, "at": 8131.0529167404175 }, { "type": "C", "frame": 17, "at": 8131.0529167404175 }, { "type": "O", "frame": 19, "at": 8131.052917 }, { "type": "O", "frame": 18, "at": 8131.052917 }, { "type": "C", "frame": 18, "at": 8137.71999978656 }, { "type": "C", "frame": 19, "at": 8137.71999978656 }, { "type": "C", "frame": 16, "at": 8137.71999978656 }, { "type": "C", "frame": 15, "at": 8137.71999978656 }, { "type": "C", "frame": 14, "at": 8137.71999978656 }, { "type": "C", "frame": 13, "at": 8137.71999978656 }, { "type": "C", "frame": 12, "at": 8137.71999978656 }, { "type": "C", "frame": 11, "at": 8137.71999978656 }, { "type": "C", "frame": 10, "at": 8137.71999978656 }, { "type": "C", "frame": 9, "at": 8137.71999978656 }, { "type": "C", "frame": 8, "at": 8137.71999978656 }, { "type": "C", "frame": 7, "at": 8137.71999978656 }, { "type": "C", "frame": 6, "at": 8137.71999978656 }, { "type": "O", "frame": 20, "at": 8137.72 }, { "type": "O", "frame": 8, "at": 8137.72 }, { "type": "O", "frame": 9, "at": 8137.72 }, { "type": "O", "frame": 10, "at": 8137.72 }, { "type": "O", "frame": 11, "at": 8137.72 }, { "type": "O", "frame": 12, "at": 8137.72 }, { "type": "O", "frame": 13, "at": 8137.72 }, { "type": "O", "frame": 14, "at": 8137.72 }, { "type": "O", "frame": 15, "at": 8137.72 }, { "type": "O", "frame": 16, "at": 8137.72 }, { "type": "O", "frame": 21, "at": 8137.72 }, { "type": "O", "frame": 22, "at": 8137.72 }, { "type": "O", "frame": 23, "at": 8137.72 }, { "type": "O", "frame": 24, "at": 8137.72 }, { "type": "O", "frame": 18, "at": 8137.72 }, { "type": "C", "frame": 18, "at": 8143.087042541504 }, { "type": "C", "frame": 24, "at": 8143.087042541504 }, { "type": "O", "frame": 38, "at": 8143.087042541504 }, { "type": "O", "frame": 18, "at": 8143.087042541504 }, { "type": "C", "frame": 18, "at": 8144.42929198951 }, { "type": "C", "frame": 38, "at": 8144.42929198951 }, { "type": "O", "frame": 24, "at": 8144.429292 }, { "type": "O", "frame": 18, "at": 8144.429292 }, { "type": "C", "frame": 18, "at": 8147.126416958038 }, { "type": "C", "frame": 24, "at": 8147.126416958038 }, { "type": "C", "frame": 23, "at": 8147.12641784668 }, { "type": "C", "frame": 22, "at": 8147.12641784668 }, { "type": "C", "frame": 21, "at": 8147.12641784668 }, { "type": "O", "frame": 17, "at": 8147.12641784668 }, { "type": "O", "frame": 18, "at": 8147.12641784668 }, { "type": "C", "frame": 18, "at": 8151.229667026703 }, { "type": "C", "frame": 17, "at": 8151.229667026703 }, { "type": "O", "frame": 19, "at": 8151.229667026703 }, { "type": "O", "frame": 18, "at": 8151.229667026703 }, { "type": "C", "frame": 18, "at": 8153.964459232513 }, { "type": "C", "frame": 19, "at": 8153.964459232513 }, { "type": "C", "frame": 16, "at": 8153.964459232513 }, { "type": "C", "frame": 15, "at": 8153.964459232513 }, { "type": "C", "frame": 14, "at": 8153.964459232513 }, { "type": "C", "frame": 13, "at": 8153.964459232513 }, { "type": "C", "frame": 12, "at": 8153.964459232513 }, { "type": "C", "frame": 11, "at": 8153.964459232513 }, { "type": "C", "frame": 10, "at": 8153.964459232513 }, { "type": "C", "frame": 9, "at": 8153.964459232513 }, { "type": "C", "frame": 8, "at": 8153.964459232513 }, { "type": "C", "frame": 20, "at": 8153.964459232513 }, { "type": "O", "frame": 6, "at": 8153.964459232513 }, { "type": "O", "frame": 7, "at": 8153.964459232513 }, { "type": "O", "frame": 8, "at": 8153.964459232513 }, { "type": "O", "frame": 9, "at": 8153.964459232513 }, { "type": "O", "frame": 10, "at": 8153.964459232513 }, { "type": "O", "frame": 11, "at": 8153.964459232513 }, { "type": "O", "frame": 12, "at": 8153.964459232513 }, { "type": "O", "frame": 13, "at": 8153.964459232513 }, { "type": "O", "frame": 14, "at": 8153.964459232513 }, { "type": "O", "frame": 15, "at": 8153.964459232513 }, { "type": "O", "frame": 16, "at": 8153.964459232513 }, { "type": "O", "frame": 21, "at": 8153.964459232513 }, { "type": "O", "frame": 22, "at": 8153.964459232513 }, { "type": "O", "frame": 23, "at": 8153.964459232513 }, { "type": "O", "frame": 24, "at": 8153.964459232513 }, { "type": "O", "frame": 18, "at": 8153.964459232513 }, { "type": "C", "frame": 18, "at": 8162.043792305359 }, { "type": "C", "frame": 24, "at": 8162.043792305359 }, { "type": "C", "frame": 23, "at": 8162.043792305359 }, { "type": "C", "frame": 22, "at": 8162.043792305359 }, { "type": "C", "frame": 21, "at": 8162.043792305359 }, { "type": "O", "frame": 17, "at": 8162.043792305359 }, { "type": "O", "frame": 18, "at": 8162.043792305359 }, { "type": "C", "frame": 18, "at": 8166.198958625977 }, { "type": "C", "frame": 17, "at": 8166.198958625977 }, { "type": "O", "frame": 19, "at": 8166.198959 }, { "type": "O", "frame": 18, "at": 8166.198959 }, { "type": "C", "frame": 18, "at": 8172.862625248322 }, { "type": "C", "frame": 19, "at": 8172.862625248322 }, { "type": "C", "frame": 16, "at": 8172.862627563843 }, { "type": "C", "frame": 15, "at": 8172.862627563843 }, { "type": "C", "frame": 14, "at": 8172.862627563843 }, { "type": "C", "frame": 13, "at": 8172.862627563843 }, { "type": "C", "frame": 12, "at": 8172.862627563843 }, { "type": "C", "frame": 11, "at": 8172.862627563843 }, { "type": "C", "frame": 10, "at": 8172.862627563843 }, { "type": "C", "frame": 9, "at": 8172.862627563843 }, { "type": "C", "frame": 8, "at": 8172.862627563843 }, { "type": "C", "frame": 7, "at": 8172.862627563843 }, { "type": "C", "frame": 6, "at": 8172.862627563843 }, { "type": "O", "frame": 20, "at": 8172.862627563843 }, { "type": "O", "frame": 8, "at": 8172.862627563843 }, { "type": "O", "frame": 9, "at": 8172.862627563843 }, { "type": "O", "frame": 10, "at": 8172.862627563843 }, { "type": "O", "frame": 11, "at": 8172.862627563843 }, { "type": "O", "frame": 12, "at": 8172.862627563843 }, { "type": "O", "frame": 13, "at": 8172.862627563843 }, { "type": "O", "frame": 14, "at": 8172.862627563843 }, { "type": "O", "frame": 15, "at": 8172.862627563843 }, { "type": "O", "frame": 16, "at": 8172.862627563843 }, { "type": "O", "frame": 21, "at": 8172.862627563843 }, { "type": "O", "frame": 22, "at": 8172.862627563843 }, { "type": "O", "frame": 23, "at": 8172.862627563843 }, { "type": "O", "frame": 24, "at": 8172.862627563843 }, { "type": "O", "frame": 18, "at": 8172.862627563843 }, { "type": "C", "frame": 18, "at": 8180.921084281921 }, { "type": "C", "frame": 24, "at": 8180.921084281921 }, { "type": "C", "frame": 23, "at": 8180.921084281921 }, { "type": "C", "frame": 22, "at": 8180.921084281921 }, { "type": "C", "frame": 21, "at": 8180.921084281921 }, { "type": "O", "frame": 17, "at": 8180.921084281921 }, { "type": "O", "frame": 18, "at": 8180.921084281921 }, { "type": "C", "frame": 18, "at": 8185.089334083923 }, { "type": "C", "frame": 17, "at": 8185.089334083923 }, { "type": "O", "frame": 19, "at": 8185.089334083923 }, { "type": "O", "frame": 18, "at": 8185.089334083923 }, { "type": "C", "frame": 18, "at": 8193.08458374823 }, { "type": "C", "frame": 19, "at": 8193.08458374823 }, { "type": "C", "frame": 16, "at": 8193.08458374823 }, { "type": "C", "frame": 15, "at": 8193.08458374823 }, { "type": "C", "frame": 14, "at": 8193.08458374823 }, { "type": "C", "frame": 13, "at": 8193.08458374823 }, { "type": "C", "frame": 12, "at": 8193.08458374823 }, { "type": "C", "frame": 11, "at": 8193.08458374823 }, { "type": "C", "frame": 10, "at": 8193.08458374823 }, { "type": "C", "frame": 9, "at": 8193.08458374823 }, { "type": "C", "frame": 8, "at": 8193.08458374823 }, { "type": "C", "frame": 20, "at": 8193.08458374823 }, { "type": "O", "frame": 6, "at": 8193.084584 }, { "type": "O", "frame": 7, "at": 8193.084584 }, { "type": "O", "frame": 8, "at": 8193.084584 }, { "type": "O", "frame": 9, "at": 8193.084584 }, { "type": "O", "frame": 10, "at": 8193.084584 }, { "type": "O", "frame": 11, "at": 8193.084584 }, { "type": "O", "frame": 12, "at": 8193.084584 }, { "type": "O", "frame": 13, "at": 8193.084584 }, { "type": "O", "frame": 14, "at": 8193.084584 }, { "type": "O", "frame": 15, "at": 8193.084584 }, { "type": "O", "frame": 16, "at": 8193.084584 }, { "type": "O", "frame": 21, "at": 8193.084584 }, { "type": "O", "frame": 22, "at": 8193.084584 }, { "type": "O", "frame": 23, "at": 8193.084584 }, { "type": "O", "frame": 24, "at": 8193.084584 }, { "type": "O", "frame": 18, "at": 8193.084584 }, { "type": "C", "frame": 18, "at": 8201.156084778198 }, { "type": "C", "frame": 24, "at": 8201.156084778198 }, { "type": "O", "frame": 31, "at": 8201.156084778198 }, { "type": "O", "frame": 18, "at": 8201.156084778198 }, { "type": "C", "frame": 18, "at": 8202.51437502993 }, { "type": "C", "frame": 31, "at": 8202.51437502993 }, { "type": "C", "frame": 23, "at": 8202.5143754505 }, { "type": "C", "frame": 22, "at": 8202.5143754505 }, { "type": "C", "frame": 21, "at": 8202.5143754505 }, { "type": "O", "frame": 17, "at": 8202.5143754505 }, { "type": "O", "frame": 18, "at": 8202.5143754505 }, { "type": "C", "frame": 18, "at": 8208.083333759309 }, { "type": "C", "frame": 17, "at": 8208.083333759309 }, { "type": "C", "frame": 16, "at": 8208.083334686646 }, { "type": "C", "frame": 15, "at": 8208.083334686646 }, { "type": "C", "frame": 14, "at": 8208.083334686646 }, { "type": "C", "frame": 13, "at": 8208.083334686646 }, { "type": "C", "frame": 12, "at": 8208.083334686646 }, { "type": "C", "frame": 11, "at": 8208.083334686646 }, { "type": "C", "frame": 10, "at": 8208.083334686646 }, { "type": "C", "frame": 9, "at": 8208.083334686646 }, { "type": "C", "frame": 8, "at": 8208.083334686646 }, { "type": "C", "frame": 7, "at": 8208.083334686646 }, { "type": "C", "frame": 6, "at": 8208.083334686646 }, { "type": "O", "frame": 20, "at": 8208.083334686646 }, { "type": "O", "frame": 18, "at": 8208.083334686646 }, { "type": "C", "frame": 18, "at": 8209.447999985108 }, { "type": "O", "frame": 8, "at": 8209.448 }, { "type": "O", "frame": 9, "at": 8209.448 }, { "type": "O", "frame": 10, "at": 8209.448 }, { "type": "O", "frame": 11, "at": 8209.448 }, { "type": "O", "frame": 12, "at": 8209.448 }, { "type": "O", "frame": 13, "at": 8209.448 }, { "type": "O", "frame": 14, "at": 8209.448 }, { "type": "O", "frame": 15, "at": 8209.448 }, { "type": "O", "frame": 16, "at": 8209.448 }, { "type": "O", "frame": 21, "at": 8209.448 }, { "type": "O", "frame": 22, "at": 8209.448 }, { "type": "O", "frame": 23, "at": 8209.448 }, { "type": "O", "frame": 24, "at": 8209.448 }, { "type": "O", "frame": 18, "at": 8209.448 }, { "type": "C", "frame": 18, "at": 8217.50437550354 }, { "type": "C", "frame": 24, "at": 8217.50437550354 }, { "type": "C", "frame": 23, "at": 8217.50437550354 }, { "type": "C", "frame": 22, "at": 8217.50437550354 }, { "type": "C", "frame": 21, "at": 8217.50437550354 }, { "type": "O", "frame": 17, "at": 8217.50437550354 }, { "type": "O", "frame": 18, "at": 8217.50437550354 }, { "type": "C", "frame": 18, "at": 8221.627749938965 }, { "type": "C", "frame": 17, "at": 8221.627749938965 }, { "type": "O", "frame": 19, "at": 8221.62775 }, { "type": "O", "frame": 18, "at": 8221.62775 }, { "type": "C", "frame": 18, "at": 8229.640291770935 }, { "type": "C", "frame": 19, "at": 8229.640291770935 }, { "type": "C", "frame": 16, "at": 8229.640295074463 }, { "type": "C", "frame": 15, "at": 8229.640295074463 }, { "type": "C", "frame": 14, "at": 8229.640295074463 }, { "type": "C", "frame": 13, "at": 8229.640295074463 }, { "type": "C", "frame": 12, "at": 8229.640295074463 }, { "type": "C", "frame": 11, "at": 8229.640295074463 }, { "type": "C", "frame": 10, "at": 8229.640295074463 }, { "type": "C", "frame": 9, "at": 8229.640295074463 }, { "type": "C", "frame": 8, "at": 8229.640295074463 }, { "type": "C", "frame": 20, "at": 8229.640295074463 }, { "type": "O", "frame": 6, "at": 8229.640295074463 }, { "type": "O", "frame": 7, "at": 8229.640295074463 }, { "type": "O", "frame": 8, "at": 8229.640295074463 }, { "type": "O", "frame": 9, "at": 8229.640295074463 }, { "type": "O", "frame": 10, "at": 8229.640295074463 }, { "type": "O", "frame": 11, "at": 8229.640295074463 }, { "type": "O", "frame": 12, "at": 8229.640295074463 }, { "type": "O", "frame": 13, "at": 8229.640295074463 }, { "type": "O", "frame": 14, "at": 8229.640295074463 }, { "type": "O", "frame": 15, "at": 8229.640295074463 }, { "type": "O", "frame": 40, "at": 8229.640295074463 }, { "type": "O", "frame": 18, "at": 8229.640295074463 }, { "type": "C", "frame": 18, "at": 8230.9802499525 }, { "type": "C", "frame": 40, "at": 8230.9802499525 }, { "type": "O", "frame": 16, "at": 8230.98025 }, { "type": "O", "frame": 21, "at": 8230.98025 }, { "type": "O", "frame": 22, "at": 8230.98025 }, { "type": "O", "frame": 23, "at": 8230.98025 }, { "type": "O", "frame": 24, "at": 8230.98025 }, { "type": "O", "frame": 18, "at": 8230.98025 }, { "type": "C", "frame": 18, "at": 8237.697000144959 }, { "type": "C", "frame": 24, "at": 8237.697000144959 }, { "type": "O", "frame": 25, "at": 8237.697000144959 }, { "type": "O", "frame": 18, "at": 8237.697000144959 }, { "type": "C", "frame": 18, "at": 8239.055749985695 }, { "type": "C", "frame": 25, "at": 8239.055749985695 }, { "type": "C", "frame": 23, "at": 8239.055750488282 }, { "type": "C", "frame": 22, "at": 8239.055750488282 }, { "type": "C", "frame": 21, "at": 8239.055750488282 }, { "type": "O", "frame": 17, "at": 8239.055750488282 }, { "type": "O", "frame": 18, "at": 8239.055750488282 }, { "type": "C", "frame": 18, "at": 8243.145166980743 }, { "type": "C", "frame": 17, "at": 8243.145166980743 }, { "type": "O", "frame": 19, "at": 8243.145167 }, { "type": "O", "frame": 18, "at": 8243.145167 }, { "type": "C", "frame": 18, "at": 8251.139584190552 }, { "type": "C", "frame": 19, "at": 8251.139584190552 }, { "type": "C", "frame": 16, "at": 8251.139586090088 }, { "type": "C", "frame": 15, "at": 8251.139586090088 }, { "type": "C", "frame": 14, "at": 8251.139586090088 }, { "type": "C", "frame": 13, "at": 8251.139586090088 }, { "type": "C", "frame": 12, "at": 8251.139586090088 }, { "type": "C", "frame": 11, "at": 8251.139586090088 }, { "type": "C", "frame": 10, "at": 8251.139586090088 }, { "type": "C", "frame": 9, "at": 8251.139586090088 }, { "type": "C", "frame": 8, "at": 8251.139586090088 }, { "type": "C", "frame": 7, "at": 8251.139586090088 }, { "type": "C", "frame": 6, "at": 8251.139586090088 }, { "type": "O", "frame": 20, "at": 8251.139586090088 }, { "type": "O", "frame": 8, "at": 8251.139586090088 }, { "type": "O", "frame": 9, "at": 8251.139586090088 }, { "type": "O", "frame": 10, "at": 8251.139586090088 }, { "type": "O", "frame": 11, "at": 8251.139586090088 }, { "type": "O", "frame": 12, "at": 8251.139586090088 }, { "type": "O", "frame": 13, "at": 8251.139586090088 }, { "type": "O", "frame": 14, "at": 8251.139586090088 }, { "type": "O", "frame": 15, "at": 8251.139586090088 }, { "type": "O", "frame": 16, "at": 8251.139586090088 }, { "type": "O", "frame": 21, "at": 8251.139586090088 }, { "type": "O", "frame": 22, "at": 8251.139586090088 }, { "type": "O", "frame": 23, "at": 8251.139586090088 }, { "type": "O", "frame": 24, "at": 8251.139586090088 }, { "type": "O", "frame": 18, "at": 8251.139586090088 }, { "type": "C", "frame": 18, "at": 8259.185334617981 }, { "type": "C", "frame": 24, "at": 8259.185334617981 }, { "type": "C", "frame": 23, "at": 8259.185334617981 }, { "type": "C", "frame": 22, "at": 8259.185334617981 }, { "type": "C", "frame": 21, "at": 8259.185334617981 }, { "type": "O", "frame": 17, "at": 8259.185334617981 }, { "type": "O", "frame": 18, "at": 8259.185334617981 }, { "type": "C", "frame": 18, "at": 8264.614042076477 }, { "type": "C", "frame": 17, "at": 8264.614042076477 }, { "type": "O", "frame": 19, "at": 8264.614042076477 }, { "type": "O", "frame": 18, "at": 8264.614042076477 }, { "type": "C", "frame": 18, "at": 8265.944833950225 }, { "type": "C", "frame": 19, "at": 8265.944833950225 }, { "type": "C", "frame": 16, "at": 8265.944834167847 }, { "type": "C", "frame": 15, "at": 8265.944834167847 }, { "type": "C", "frame": 14, "at": 8265.944834167847 }, { "type": "C", "frame": 13, "at": 8265.944834167847 }, { "type": "C", "frame": 12, "at": 8265.944834167847 }, { "type": "C", "frame": 11, "at": 8265.944834167847 }, { "type": "C", "frame": 10, "at": 8265.944834167847 }, { "type": "C", "frame": 9, "at": 8265.944834167847 }, { "type": "C", "frame": 8, "at": 8265.944834167847 }, { "type": "C", "frame": 20, "at": 8265.944834167847 }, { "type": "O", "frame": 6, "at": 8265.944834167847 }, { "type": "O", "frame": 7, "at": 8265.944834167847 }, { "type": "O", "frame": 8, "at": 8265.944834167847 }, { "type": "O", "frame": 9, "at": 8265.944834167847 }, { "type": "O", "frame": 10, "at": 8265.944834167847 }, { "type": "O", "frame": 11, "at": 8265.944834167847 }, { "type": "O", "frame": 12, "at": 8265.944834167847 }, { "type": "O", "frame": 13, "at": 8265.944834167847 }, { "type": "O", "frame": 14, "at": 8265.944834167847 }, { "type": "O", "frame": 15, "at": 8265.944834167847 }, { "type": "O", "frame": 16, "at": 8265.944834167847 }, { "type": "O", "frame": 21, "at": 8265.944834167847 }, { "type": "O", "frame": 22, "at": 8265.944834167847 }, { "type": "O", "frame": 23, "at": 8265.944834167847 }, { "type": "O", "frame": 25, "at": 8265.944834167847 }, { "type": "O", "frame": 18, "at": 8265.944834167847 }, { "type": "C", "frame": 18, "at": 8267.286875015625 }, { "type": "C", "frame": 25, "at": 8267.286875015625 }, { "type": "O", "frame": 26, "at": 8267.286875015625 }, { "type": "O", "frame": 18, "at": 8267.286875015625 }, { "type": "C", "frame": 18, "at": 8268.654250016212 }, { "type": "C", "frame": 26, "at": 8268.654250016212 }, { "type": "O", "frame": 24, "at": 8268.654250016212 }, { "type": "O", "frame": 18, "at": 8268.654250016212 }, { "type": "C", "frame": 18, "at": 8274.09579214859 }, { "type": "C", "frame": 24, "at": 8274.09579214859 }, { "type": "O", "frame": 26, "at": 8274.09579214859 }, { "type": "O", "frame": 18, "at": 8274.09579214859 }, { "type": "C", "frame": 18, "at": 8275.453834001724 }, { "type": "C", "frame": 26, "at": 8275.453834001724 }, { "type": "C", "frame": 23, "at": 8275.453834001724 }, { "type": "C", "frame": 22, "at": 8275.453834001724 }, { "type": "C", "frame": 21, "at": 8275.453834001724 }, { "type": "O", "frame": 17, "at": 8275.453834001724 }, { "type": "O", "frame": 18, "at": 8275.453834001724 }, { "type": "C", "frame": 18, "at": 8279.572791996368 }, { "type": "C", "frame": 17, "at": 8279.572791996368 }, { "type": "O", "frame": 19, "at": 8279.572792 }, { "type": "O", "frame": 18, "at": 8279.572792 }, { "type": "C", "frame": 18, "at": 8287.588375038331 }, { "type": "C", "frame": 19, "at": 8287.588375038331 }, { "type": "C", "frame": 16, "at": 8287.588375038331 }, { "type": "C", "frame": 15, "at": 8287.588375038331 }, { "type": "C", "frame": 14, "at": 8287.588375038331 }, { "type": "C", "frame": 13, "at": 8287.588375038331 }, { "type": "C", "frame": 12, "at": 8287.588375038331 }, { "type": "C", "frame": 11, "at": 8287.588375038331 }, { "type": "C", "frame": 10, "at": 8287.588375038331 }, { "type": "C", "frame": 9, "at": 8287.588375038331 }, { "type": "C", "frame": 8, "at": 8287.588375038331 }, { "type": "C", "frame": 7, "at": 8287.588375038331 }, { "type": "C", "frame": 6, "at": 8287.588375038331 }, { "type": "O", "frame": 20, "at": 8287.588375038331 }, { "type": "O", "frame": 8, "at": 8287.588375038331 }, { "type": "O", "frame": 9, "at": 8287.588375038331 }, { "type": "O", "frame": 10, "at": 8287.588375038331 }, { "type": "O", "frame": 11, "at": 8287.588375038331 }, { "type": "O", "frame": 12, "at": 8287.588375038331 }, { "type": "O", "frame": 13, "at": 8287.588375038331 }, { "type": "O", "frame": 14, "at": 8287.588375038331 }, { "type": "O", "frame": 15, "at": 8287.588375038331 }, { "type": "O", "frame": 16, "at": 8287.588375038331 }, { "type": "O", "frame": 21, "at": 8287.588375038331 }, { "type": "O", "frame": 22, "at": 8287.588375038331 }, { "type": "O", "frame": 23, "at": 8287.588375038331 }, { "type": "O", "frame": 24, "at": 8287.588375038331 }, { "type": "O", "frame": 18, "at": 8287.588375038331 }, { "type": "C", "frame": 18, "at": 8295.658208755493 }, { "type": "C", "frame": 24, "at": 8295.658208755493 }, { "type": "C", "frame": 23, "at": 8295.658208755493 }, { "type": "C", "frame": 22, "at": 8295.658208755493 }, { "type": "C", "frame": 21, "at": 8295.658208755493 }, { "type": "O", "frame": 17, "at": 8295.658209 }, { "type": "O", "frame": 18, "at": 8295.658209 }, { "type": "C", "frame": 18, "at": 8301.137708816894 }, { "type": "C", "frame": 17, "at": 8301.137708816894 }, { "type": "O", "frame": 19, "at": 8301.137709 }, { "type": "O", "frame": 18, "at": 8301.137709 }, { "type": "C", "frame": 18, "at": 8302.468749978432 }, { "type": "C", "frame": 19, "at": 8302.468749978432 }, { "type": "C", "frame": 16, "at": 8302.468749978432 }, { "type": "C", "frame": 15, "at": 8302.468749978432 }, { "type": "C", "frame": 14, "at": 8302.468749978432 }, { "type": "C", "frame": 13, "at": 8302.468749978432 }, { "type": "C", "frame": 12, "at": 8302.468749978432 }, { "type": "C", "frame": 11, "at": 8302.468749978432 }, { "type": "C", "frame": 10, "at": 8302.468749978432 }, { "type": "C", "frame": 9, "at": 8302.468749978432 }, { "type": "C", "frame": 8, "at": 8302.468749978432 }, { "type": "C", "frame": 20, "at": 8302.468749978432 }, { "type": "O", "frame": 6, "at": 8302.46875 }, { "type": "O", "frame": 7, "at": 8302.46875 }, { "type": "O", "frame": 8, "at": 8302.46875 }, { "type": "O", "frame": 9, "at": 8302.46875 }, { "type": "O", "frame": 10, "at": 8302.46875 }, { "type": "O", "frame": 11, "at": 8302.46875 }, { "type": "O", "frame": 12, "at": 8302.46875 }, { "type": "O", "frame": 13, "at": 8302.46875 }, { "type": "O", "frame": 14, "at": 8302.46875 }, { "type": "O", "frame": 15, "at": 8302.46875 }, { "type": "O", "frame": 16, "at": 8302.46875 }, { "type": "O", "frame": 21, "at": 8302.46875 }, { "type": "O", "frame": 22, "at": 8302.46875 }, { "type": "O", "frame": 23, "at": 8302.46875 }, { "type": "O", "frame": 24, "at": 8302.46875 }, { "type": "O", "frame": 18, "at": 8302.46875 }, { "type": "C", "frame": 18, "at": 8310.5562915802 }, { "type": "C", "frame": 24, "at": 8310.5562915802 }, { "type": "C", "frame": 23, "at": 8310.5562915802 }, { "type": "C", "frame": 22, "at": 8310.5562915802 }, { "type": "C", "frame": 21, "at": 8310.5562915802 }, { "type": "O", "frame": 17, "at": 8310.556292 }, { "type": "O", "frame": 18, "at": 8310.556292 }, { "type": "C", "frame": 18, "at": 8316.0079168703 }, { "type": "C", "frame": 17, "at": 8316.0079168703 }, { "type": "O", "frame": 19, "at": 8316.007917 }, { "type": "O", "frame": 18, "at": 8316.007917 }, { "type": "C", "frame": 18, "at": 8322.705624653046 }, { "type": "C", "frame": 19, "at": 8322.705624653046 }, { "type": "C", "frame": 16, "at": 8322.705625534058 }, { "type": "C", "frame": 15, "at": 8322.705625534058 }, { "type": "C", "frame": 14, "at": 8322.705625534058 }, { "type": "C", "frame": 13, "at": 8322.705625534058 }, { "type": "C", "frame": 12, "at": 8322.705625534058 }, { "type": "C", "frame": 11, "at": 8322.705625534058 }, { "type": "C", "frame": 10, "at": 8322.705625534058 }, { "type": "C", "frame": 9, "at": 8322.705625534058 }, { "type": "C", "frame": 8, "at": 8322.705625534058 }, { "type": "C", "frame": 7, "at": 8322.705625534058 }, { "type": "C", "frame": 6, "at": 8322.705625534058 }, { "type": "O", "frame": 20, "at": 8322.705625534058 }, { "type": "O", "frame": 8, "at": 8322.705625534058 }, { "type": "O", "frame": 9, "at": 8322.705625534058 }, { "type": "O", "frame": 10, "at": 8322.705625534058 }, { "type": "O", "frame": 11, "at": 8322.705625534058 }, { "type": "O", "frame": 12, "at": 8322.705625534058 }, { "type": "O", "frame": 13, "at": 8322.705625534058 }, { "type": "O", "frame": 14, "at": 8322.705625534058 }, { "type": "O", "frame": 15, "at": 8322.705625534058 }, { "type": "O", "frame": 16, "at": 8322.705625534058 }, { "type": "O", "frame": 21, "at": 8322.705625534058 }, { "type": "O", "frame": 22, "at": 8322.705625534058 }, { "type": "O", "frame": 23, "at": 8322.705625534058 }, { "type": "O", "frame": 24, "at": 8322.705625534058 }, { "type": "O", "frame": 18, "at": 8322.705625534058 }, { "type": "C", "frame": 18, "at": 8332.101625862122 }, { "type": "C", "frame": 24, "at": 8332.101625862122 }, { "type": "C", "frame": 23, "at": 8332.101625862122 }, { "type": "C", "frame": 22, "at": 8332.101625862122 }, { "type": "C", "frame": 21, "at": 8332.101625862122 }, { "type": "O", "frame": 17, "at": 8332.101625862122 }, { "type": "O", "frame": 18, "at": 8332.101625862122 }, { "type": "C", "frame": 18, "at": 8336.187124763488 }, { "type": "C", "frame": 17, "at": 8336.187124763488 }, { "type": "O", "frame": 19, "at": 8336.187125 }, { "type": "O", "frame": 18, "at": 8336.187125 }, { "type": "C", "frame": 18, "at": 8344.260833534241 }, { "type": "C", "frame": 19, "at": 8344.260833534241 }, { "type": "C", "frame": 16, "at": 8344.260835113526 }, { "type": "C", "frame": 15, "at": 8344.260835113526 }, { "type": "C", "frame": 14, "at": 8344.260835113526 }, { "type": "C", "frame": 13, "at": 8344.260835113526 }, { "type": "C", "frame": 12, "at": 8344.260835113526 }, { "type": "C", "frame": 11, "at": 8344.260835113526 }, { "type": "C", "frame": 10, "at": 8344.260835113526 }, { "type": "C", "frame": 9, "at": 8344.260835113526 }, { "type": "C", "frame": 8, "at": 8344.260835113526 }, { "type": "C", "frame": 20, "at": 8344.260835113526 }, { "type": "O", "frame": 6, "at": 8344.260835113526 }, { "type": "O", "frame": 7, "at": 8344.260835113526 }, { "type": "O", "frame": 8, "at": 8344.260835113526 }, { "type": "O", "frame": 9, "at": 8344.260835113526 }, { "type": "O", "frame": 10, "at": 8344.260835113526 }, { "type": "O", "frame": 11, "at": 8344.260835113526 }, { "type": "O", "frame": 12, "at": 8344.260835113526 }, { "type": "O", "frame": 13, "at": 8344.260835113526 }, { "type": "O", "frame": 14, "at": 8344.260835113526 }, { "type": "O", "frame": 15, "at": 8344.260835113526 }, { "type": "O", "frame": 16, "at": 8344.260835113526 }, { "type": "O", "frame": 21, "at": 8344.260835113526 }, { "type": "O", "frame": 22, "at": 8344.260835113526 }, { "type": "O", "frame": 23, "at": 8344.260835113526 }, { "type": "O", "frame": 24, "at": 8344.260835113526 }, { "type": "O", "frame": 18, "at": 8344.260835113526 }, { "type": "C", "frame": 18, "at": 8352.324250481019 }, { "type": "C", "frame": 24, "at": 8352.324250481019 }, { "type": "C", "frame": 23, "at": 8352.324250481019 }, { "type": "C", "frame": 22, "at": 8352.324250481019 }, { "type": "C", "frame": 21, "at": 8352.324250481019 }, { "type": "O", "frame": 17, "at": 8352.324250481019 }, { "type": "O", "frame": 18, "at": 8352.324250481019 }, { "type": "C", "frame": 18, "at": 8356.522374885559 }, { "type": "C", "frame": 17, "at": 8356.522374885559 }, { "type": "O", "frame": 19, "at": 8356.522375 }, { "type": "O", "frame": 18, "at": 8356.522375 }, { "type": "C", "frame": 18, "at": 8359.277000082016 }, { "type": "C", "frame": 19, "at": 8359.277000082016 }, { "type": "C", "frame": 16, "at": 8359.277000687012 }, { "type": "C", "frame": 15, "at": 8359.277000687012 }, { "type": "C", "frame": 14, "at": 8359.277000687012 }, { "type": "C", "frame": 13, "at": 8359.277000687012 }, { "type": "C", "frame": 12, "at": 8359.277000687012 }, { "type": "C", "frame": 11, "at": 8359.277000687012 }, { "type": "C", "frame": 10, "at": 8359.277000687012 }, { "type": "C", "frame": 9, "at": 8359.277000687012 }, { "type": "C", "frame": 8, "at": 8359.277000687012 }, { "type": "C", "frame": 7, "at": 8359.277000687012 }, { "type": "C", "frame": 6, "at": 8359.277000687012 }, { "type": "O", "frame": 20, "at": 8359.277000687012 }, { "type": "O", "frame": 8, "at": 8359.277000687012 }, { "type": "O", "frame": 9, "at": 8359.277000687012 }, { "type": "O", "frame": 10, "at": 8359.277000687012 }, { "type": "O", "frame": 11, "at": 8359.277000687012 }, { "type": "O", "frame": 12, "at": 8359.277000687012 }, { "type": "O", "frame": 13, "at": 8359.277000687012 }, { "type": "O", "frame": 14, "at": 8359.277000687012 }, { "type": "O", "frame": 15, "at": 8359.277000687012 }, { "type": "O", "frame": 16, "at": 8359.277000687012 }, { "type": "O", "frame": 21, "at": 8359.277000687012 }, { "type": "O", "frame": 22, "at": 8359.277000687012 }, { "type": "O", "frame": 23, "at": 8359.277000687012 }, { "type": "O", "frame": 24, "at": 8359.277000687012 }, { "type": "O", "frame": 18, "at": 8359.277000687012 }, { "type": "C", "frame": 18, "at": 8367.346458961487 }, { "type": "C", "frame": 24, "at": 8367.346458961487 }, { "type": "C", "frame": 23, "at": 8367.346458961487 }, { "type": "C", "frame": 22, "at": 8367.346458961487 }, { "type": "C", "frame": 21, "at": 8367.346458961487 }, { "type": "O", "frame": 17, "at": 8367.346459 }, { "type": "O", "frame": 18, "at": 8367.346459 }, { "type": "C", "frame": 18, "at": 8371.46712502707 }, { "type": "C", "frame": 17, "at": 8371.46712502707 }, { "type": "O", "frame": 19, "at": 8371.46712502707 }, { "type": "O", "frame": 18, "at": 8371.46712502707 }, { "type": "C", "frame": 18, "at": 8379.462999881744 }, { "type": "C", "frame": 19, "at": 8379.462999881744 }, { "type": "C", "frame": 16, "at": 8379.462999881744 }, { "type": "C", "frame": 15, "at": 8379.462999881744 }, { "type": "C", "frame": 14, "at": 8379.462999881744 }, { "type": "C", "frame": 13, "at": 8379.462999881744 }, { "type": "C", "frame": 12, "at": 8379.462999881744 }, { "type": "C", "frame": 11, "at": 8379.462999881744 }, { "type": "C", "frame": 10, "at": 8379.462999881744 }, { "type": "C", "frame": 9, "at": 8379.462999881744 }, { "type": "C", "frame": 8, "at": 8379.462999881744 }, { "type": "C", "frame": 20, "at": 8379.462999881744 }, { "type": "O", "frame": 6, "at": 8379.463 }, { "type": "O", "frame": 7, "at": 8379.463 }, { "type": "O", "frame": 8, "at": 8379.463 }, { "type": "O", "frame": 9, "at": 8379.463 }, { "type": "O", "frame": 10, "at": 8379.463 }, { "type": "O", "frame": 11, "at": 8379.463 }, { "type": "O", "frame": 12, "at": 8379.463 }, { "type": "O", "frame": 13, "at": 8379.463 }, { "type": "O", "frame": 14, "at": 8379.463 }, { "type": "O", "frame": 15, "at": 8379.463 }, { "type": "O", "frame": 16, "at": 8379.463 }, { "type": "O", "frame": 21, "at": 8379.463 }, { "type": "O", "frame": 22, "at": 8379.463 }, { "type": "O", "frame": 23, "at": 8379.463 }, { "type": "O", "frame": 24, "at": 8379.463 }, { "type": "O", "frame": 18, "at": 8379.463 }, { "type": "C", "frame": 18, "at": 8387.540749252319 }, { "type": "C", "frame": 24, "at": 8387.540749252319 }, { "type": "C", "frame": 23, "at": 8387.540749252319 }, { "type": "C", "frame": 22, "at": 8387.540749252319 }, { "type": "C", "frame": 21, "at": 8387.540749252319 }, { "type": "O", "frame": 17, "at": 8387.54075 }, { "type": "O", "frame": 18, "at": 8387.54075 }, { "type": "C", "frame": 18, "at": 8393.022417041779 }, { "type": "C", "frame": 17, "at": 8393.022417041779 }, { "type": "O", "frame": 19, "at": 8393.022417041779 }, { "type": "O", "frame": 18, "at": 8393.022417041779 }, { "type": "C", "frame": 18, "at": 8394.36420898742 }, { "type": "C", "frame": 19, "at": 8394.36420898742 }, { "type": "C", "frame": 16, "at": 8394.36420898742 }, { "type": "C", "frame": 15, "at": 8394.36420898742 }, { "type": "C", "frame": 14, "at": 8394.36420898742 }, { "type": "C", "frame": 13, "at": 8394.36420898742 }, { "type": "C", "frame": 12, "at": 8394.36420898742 }, { "type": "C", "frame": 11, "at": 8394.36420898742 }, { "type": "C", "frame": 10, "at": 8394.36420898742 }, { "type": "C", "frame": 9, "at": 8394.36420898742 }, { "type": "C", "frame": 8, "at": 8394.36420898742 }, { "type": "C", "frame": 7, "at": 8394.36420898742 }, { "type": "C", "frame": 6, "at": 8394.36420898742 }, { "type": "O", "frame": 20, "at": 8394.364209 }, { "type": "O", "frame": 8, "at": 8394.364209 }, { "type": "O", "frame": 9, "at": 8394.364209 }, { "type": "O", "frame": 10, "at": 8394.364209 }, { "type": "O", "frame": 11, "at": 8394.364209 }, { "type": "O", "frame": 12, "at": 8394.364209 }, { "type": "O", "frame": 13, "at": 8394.364209 }, { "type": "O", "frame": 14, "at": 8394.364209 }, { "type": "O", "frame": 15, "at": 8394.364209 }, { "type": "O", "frame": 16, "at": 8394.364209 }, { "type": "O", "frame": 21, "at": 8394.364209 }, { "type": "O", "frame": 22, "at": 8394.364209 }, { "type": "O", "frame": 23, "at": 8394.364209 }, { "type": "O", "frame": 24, "at": 8394.364209 }, { "type": "O", "frame": 18, "at": 8394.364209 }, { "type": "C", "frame": 18, "at": 8402.434542480834 }, { "type": "C", "frame": 24, "at": 8402.434542480834 }, { "type": "C", "frame": 23, "at": 8402.434542480834 }, { "type": "C", "frame": 22, "at": 8402.434542480834 }, { "type": "C", "frame": 21, "at": 8402.434542480834 }, { "type": "O", "frame": 17, "at": 8402.434542480834 }, { "type": "O", "frame": 18, "at": 8402.434542480834 }, { "type": "C", "frame": 18, "at": 8407.899792492097 }, { "type": "C", "frame": 17, "at": 8407.899792492097 }, { "type": "O", "frame": 19, "at": 8407.899792492097 }, { "type": "O", "frame": 18, "at": 8407.899792492097 }, { "type": "C", "frame": 18, "at": 8414.59183435077 }, { "type": "C", "frame": 19, "at": 8414.59183435077 }, { "type": "C", "frame": 16, "at": 8414.59183435077 }, { "type": "C", "frame": 15, "at": 8414.59183435077 }, { "type": "C", "frame": 14, "at": 8414.59183435077 }, { "type": "C", "frame": 13, "at": 8414.59183435077 }, { "type": "C", "frame": 12, "at": 8414.59183435077 }, { "type": "C", "frame": 11, "at": 8414.59183435077 }, { "type": "C", "frame": 10, "at": 8414.59183435077 }, { "type": "C", "frame": 9, "at": 8414.59183435077 }, { "type": "C", "frame": 8, "at": 8414.59183435077 }, { "type": "O", "frame": 18, "at": 8414.59183435077 }, { "type": "C", "frame": 18, "at": 8415.943084052453 }, { "type": "C", "frame": 20, "at": 8415.943084052453 }, { "type": "O", "frame": 6, "at": 8415.943084052453 }, { "type": "O", "frame": 7, "at": 8415.943084052453 }, { "type": "O", "frame": 8, "at": 8415.943084052453 }, { "type": "O", "frame": 9, "at": 8415.943084052453 }, { "type": "O", "frame": 10, "at": 8415.943084052453 }, { "type": "O", "frame": 11, "at": 8415.943084052453 }, { "type": "O", "frame": 12, "at": 8415.943084052453 }, { "type": "O", "frame": 13, "at": 8415.943084052453 }, { "type": "O", "frame": 14, "at": 8415.943084052453 }, { "type": "O", "frame": 15, "at": 8415.943084052453 }, { "type": "O", "frame": 16, "at": 8415.943084052453 }, { "type": "O", "frame": 21, "at": 8415.943084052453 }, { "type": "O", "frame": 22, "at": 8415.943084052453 }, { "type": "O", "frame": 23, "at": 8415.943084052453 }, { "type": "O", "frame": 24, "at": 8415.943084052453 }, { "type": "O", "frame": 18, "at": 8415.943084052453 }, { "type": "C", "frame": 18, "at": 8423.992458580384 }, { "type": "C", "frame": 24, "at": 8423.992458580384 }, { "type": "C", "frame": 23, "at": 8423.992458580384 }, { "type": "C", "frame": 22, "at": 8423.992458580384 }, { "type": "C", "frame": 21, "at": 8423.992458580384 }, { "type": "O", "frame": 17, "at": 8423.992459 }, { "type": "O", "frame": 18, "at": 8423.992459 }, { "type": "C", "frame": 18, "at": 8428.080584228881 }, { "type": "C", "frame": 17, "at": 8428.080584228881 }, { "type": "O", "frame": 19, "at": 8428.080584228881 }, { "type": "O", "frame": 18, "at": 8428.080584228881 }, { "type": "C", "frame": 18, "at": 8430.81466693724 }, { "type": "C", "frame": 19, "at": 8430.81466693724 }, { "type": "C", "frame": 16, "at": 8430.814666984925 }, { "type": "C", "frame": 15, "at": 8430.814666984925 }, { "type": "C", "frame": 14, "at": 8430.814666984925 }, { "type": "C", "frame": 13, "at": 8430.814666984925 }, { "type": "C", "frame": 12, "at": 8430.814666984925 }, { "type": "C", "frame": 11, "at": 8430.814666984925 }, { "type": "C", "frame": 10, "at": 8430.814666984925 }, { "type": "C", "frame": 9, "at": 8430.814666984925 }, { "type": "C", "frame": 8, "at": 8430.814666984925 }, { "type": "C", "frame": 7, "at": 8430.814666984925 }, { "type": "C", "frame": 6, "at": 8430.814666984925 }, { "type": "O", "frame": 20, "at": 8430.814667 }, { "type": "O", "frame": 8, "at": 8430.814667 }, { "type": "O", "frame": 9, "at": 8430.814667 }, { "type": "O", "frame": 10, "at": 8430.814667 }, { "type": "O", "frame": 11, "at": 8430.814667 }, { "type": "O", "frame": 12, "at": 8430.814667 }, { "type": "O", "frame": 13, "at": 8430.814667 }, { "type": "O", "frame": 14, "at": 8430.814667 }, { "type": "O", "frame": 15, "at": 8430.814667 }, { "type": "O", "frame": 16, "at": 8430.814667 }, { "type": "O", "frame": 21, "at": 8430.814667 }, { "type": "O", "frame": 22, "at": 8430.814667 }, { "type": "O", "frame": 23, "at": 8430.814667 }, { "type": "O", "frame": 24, "at": 8430.814667 }, { "type": "O", "frame": 18, "at": 8430.814667 }, { "type": "C", "frame": 18, "at": 8438.881167663758 }, { "type": "C", "frame": 24, "at": 8438.881167663758 }, { "type": "C", "frame": 23, "at": 8438.881167663758 }, { "type": "C", "frame": 22, "at": 8438.881167663758 }, { "type": "C", "frame": 21, "at": 8438.881167663758 }, { "type": "O", "frame": 17, "at": 8438.881167663758 }, { "type": "O", "frame": 18, "at": 8438.881167663758 }, { "type": "C", "frame": 18, "at": 8443.003834312622 }, { "type": "C", "frame": 17, "at": 8443.003834312622 }, { "type": "O", "frame": 19, "at": 8443.003834312622 }, { "type": "O", "frame": 18, "at": 8443.003834312622 }, { "type": "C", "frame": 18, "at": 8457.649833908446 }, { "type": "C", "frame": 19, "at": 8457.649833908446 }, { "type": "C", "frame": 16, "at": 8457.649833908446 }, { "type": "C", "frame": 15, "at": 8457.649833908446 }, { "type": "C", "frame": 14, "at": 8457.649833908446 }, { "type": "C", "frame": 13, "at": 8457.649833908446 }, { "type": "C", "frame": 12, "at": 8457.649833908446 }, { "type": "C", "frame": 11, "at": 8457.649833908446 }, { "type": "C", "frame": 10, "at": 8457.649833908446 }, { "type": "C", "frame": 9, "at": 8457.649833908446 }, { "type": "C", "frame": 8, "at": 8457.649833908446 }, { "type": "C", "frame": 20, "at": 8457.649833908446 }, { "type": "O", "frame": 6, "at": 8457.649834 }, { "type": "O", "frame": 7, "at": 8457.649834 }, { "type": "O", "frame": 8, "at": 8457.649834 }, { "type": "O", "frame": 9, "at": 8457.649834 }, { "type": "O", "frame": 10, "at": 8457.649834 }, { "type": "O", "frame": 11, "at": 8457.649834 }, { "type": "O", "frame": 12, "at": 8457.649834 }, { "type": "O", "frame": 13, "at": 8457.649834 }, { "type": "O", "frame": 14, "at": 8457.649834 }, { "type": "O", "frame": 15, "at": 8457.649834 }, { "type": "O", "frame": 16, "at": 8457.649834 }, { "type": "O", "frame": 51, "at": 8457.649834 }, { "type": "O", "frame": 52, "at": 8457.649834 }, { "type": "O", "frame": 18, "at": 8457.649834 }, { "type": "C", "frame": 18, "at": 8458.995624982246 }, { "type": "C", "frame": 52, "at": 8458.995624982246 }, { "type": "C", "frame": 51, "at": 8458.995624982246 }, { "type": "O", "frame": 21, "at": 8458.995625 }, { "type": "O", "frame": 22, "at": 8458.995625 }, { "type": "O", "frame": 23, "at": 8458.995625 }, { "type": "O", "frame": 24, "at": 8458.995625 }, { "type": "O", "frame": 18, "at": 8458.995625 }, { "type": "C", "frame": 18, "at": 8463.028833847045 }, { "type": "C", "frame": 24, "at": 8463.028833847045 }, { "type": "O", "frame": 31, "at": 8463.028834 }, { "type": "O", "frame": 18, "at": 8463.028834 }, { "type": "C", "frame": 18, "at": 8464.377583995232 }, { "type": "C", "frame": 31, "at": 8464.377583995232 }, { "type": "O", "frame": 24, "at": 8464.377584 }, { "type": "O", "frame": 18, "at": 8464.377584 }, { "type": "C", "frame": 18, "at": 8467.08037497557 }, { "type": "C", "frame": 24, "at": 8467.08037497557 }, { "type": "C", "frame": 23, "at": 8467.08037497557 }, { "type": "C", "frame": 22, "at": 8467.08037497557 }, { "type": "C", "frame": 21, "at": 8467.08037497557 }, { "type": "O", "frame": 17, "at": 8467.080375 }, { "type": "O", "frame": 18, "at": 8467.080375 }, { "type": "C", "frame": 18, "at": 8471.20695905304 }, { "type": "C", "frame": 17, "at": 8471.20695905304 }, { "type": "O", "frame": 19, "at": 8471.20695905304 }, { "type": "O", "frame": 18, "at": 8471.20695905304 }, { "type": "C", "frame": 18, "at": 8479.234667053588 }, { "type": "C", "frame": 19, "at": 8479.234667053588 }, { "type": "C", "frame": 16, "at": 8479.234667053588 }, { "type": "C", "frame": 15, "at": 8479.234667053588 }, { "type": "C", "frame": 14, "at": 8479.234667053588 }, { "type": "C", "frame": 13, "at": 8479.234667053588 }, { "type": "C", "frame": 12, "at": 8479.234667053588 }, { "type": "C", "frame": 11, "at": 8479.234667053588 }, { "type": "C", "frame": 10, "at": 8479.234667053588 }, { "type": "C", "frame": 9, "at": 8479.234667053588 }, { "type": "C", "frame": 8, "at": 8479.234667053588 }, { "type": "C", "frame": 7, "at": 8479.234667053588 }, { "type": "C", "frame": 6, "at": 8479.234667053588 }, { "type": "O", "frame": 20, "at": 8479.234667053588 }, { "type": "O", "frame": 8, "at": 8479.234667053588 }, { "type": "O", "frame": 9, "at": 8479.234667053588 }, { "type": "O", "frame": 10, "at": 8479.234667053588 }, { "type": "O", "frame": 11, "at": 8479.234667053588 }, { "type": "O", "frame": 12, "at": 8479.234667053588 }, { "type": "O", "frame": 13, "at": 8479.234667053588 }, { "type": "O", "frame": 14, "at": 8479.234667053588 }, { "type": "O", "frame": 15, "at": 8479.234667053588 }, { "type": "O", "frame": 16, "at": 8479.234667053588 }, { "type": "O", "frame": 21, "at": 8479.234667053588 }, { "type": "O", "frame": 22, "at": 8479.234667053588 }, { "type": "O", "frame": 23, "at": 8479.234667053588 }, { "type": "O", "frame": 24, "at": 8479.234667053588 }, { "type": "O", "frame": 18, "at": 8479.234667053588 }, { "type": "C", "frame": 18, "at": 8483.272334274476 }, { "type": "C", "frame": 24, "at": 8483.272334274476 }, { "type": "O", "frame": 38, "at": 8483.272334274476 }, { "type": "O", "frame": 18, "at": 8483.272334274476 }, { "type": "C", "frame": 18, "at": 8484.621709009536 }, { "type": "C", "frame": 38, "at": 8484.621709009536 }, { "type": "O", "frame": 24, "at": 8484.621709009536 }, { "type": "O", "frame": 18, "at": 8484.621709009536 }, { "type": "C", "frame": 18, "at": 8488.655500065215 }, { "type": "C", "frame": 24, "at": 8488.655500065215 }, { "type": "C", "frame": 23, "at": 8488.655500587647 }, { "type": "C", "frame": 22, "at": 8488.655500587647 }, { "type": "C", "frame": 21, "at": 8488.655500587647 }, { "type": "O", "frame": 17, "at": 8488.655500587647 }, { "type": "O", "frame": 18, "at": 8488.655500587647 }, { "type": "C", "frame": 18, "at": 8492.75745875168 }, { "type": "C", "frame": 17, "at": 8492.75745875168 }, { "type": "O", "frame": 19, "at": 8492.757459 }, { "type": "O", "frame": 18, "at": 8492.757459 }, { "type": "C", "frame": 18, "at": 8495.456084087738 }, { "type": "C", "frame": 19, "at": 8495.456084087738 }, { "type": "C", "frame": 16, "at": 8495.456084087738 }, { "type": "C", "frame": 15, "at": 8495.456084087738 }, { "type": "C", "frame": 14, "at": 8495.456084087738 }, { "type": "C", "frame": 13, "at": 8495.456084087738 }, { "type": "C", "frame": 12, "at": 8495.456084087738 }, { "type": "C", "frame": 11, "at": 8495.456084087738 }, { "type": "C", "frame": 10, "at": 8495.456084087738 }, { "type": "C", "frame": 9, "at": 8495.456084087738 }, { "type": "C", "frame": 8, "at": 8495.456084087738 }, { "type": "C", "frame": 20, "at": 8495.456084087738 }, { "type": "O", "frame": 6, "at": 8495.456084087738 }, { "type": "O", "frame": 7, "at": 8495.456084087738 }, { "type": "O", "frame": 8, "at": 8495.456084087738 }, { "type": "O", "frame": 9, "at": 8495.456084087738 }, { "type": "O", "frame": 10, "at": 8495.456084087738 }, { "type": "O", "frame": 11, "at": 8495.456084087738 }, { "type": "O", "frame": 12, "at": 8495.456084087738 }, { "type": "O", "frame": 13, "at": 8495.456084087738 }, { "type": "O", "frame": 14, "at": 8495.456084087738 }, { "type": "O", "frame": 15, "at": 8495.456084087738 }, { "type": "O", "frame": 16, "at": 8495.456084087738 }, { "type": "O", "frame": 21, "at": 8495.456084087738 }, { "type": "O", "frame": 22, "at": 8495.456084087738 }, { "type": "O", "frame": 23, "at": 8495.456084087738 }, { "type": "O", "frame": 24, "at": 8495.456084087738 }, { "type": "O", "frame": 18, "at": 8495.456084087738 }, { "type": "C", "frame": 18, "at": 8500.828375088104 }, { "type": "C", "frame": 24, "at": 8500.828375088104 }, { "type": "O", "frame": 26, "at": 8500.828375088104 }, { "type": "O", "frame": 18, "at": 8500.828375088104 }, { "type": "C", "frame": 18, "at": 8502.163708943366 }, { "type": "C", "frame": 26, "at": 8502.163708943366 }, { "type": "O", "frame": 24, "at": 8502.163709 }, { "type": "O", "frame": 18, "at": 8502.163709 }, { "type": "C", "frame": 18, "at": 8503.531792000183 }, { "type": "C", "frame": 24, "at": 8503.531792000183 }, { "type": "C", "frame": 23, "at": 8503.531792389282 }, { "type": "C", "frame": 22, "at": 8503.531792389282 }, { "type": "C", "frame": 21, "at": 8503.531792389282 }, { "type": "O", "frame": 17, "at": 8503.531792389282 }, { "type": "O", "frame": 18, "at": 8503.531792389282 }, { "type": "C", "frame": 18, "at": 8507.695459201996 }, { "type": "C", "frame": 17, "at": 8507.695459201996 }, { "type": "O", "frame": 19, "at": 8507.695459201996 }, { "type": "O", "frame": 18, "at": 8507.695459201996 }, { "type": "C", "frame": 18, "at": 8515.757417312989 }, { "type": "C", "frame": 19, "at": 8515.757417312989 }, { "type": "C", "frame": 16, "at": 8515.757417312989 }, { "type": "C", "frame": 15, "at": 8515.757417312989 }, { "type": "C", "frame": 14, "at": 8515.757417312989 }, { "type": "C", "frame": 13, "at": 8515.757417312989 }, { "type": "C", "frame": 12, "at": 8515.757417312989 }, { "type": "C", "frame": 11, "at": 8515.757417312989 }, { "type": "C", "frame": 10, "at": 8515.757417312989 }, { "type": "C", "frame": 9, "at": 8515.757417312989 }, { "type": "C", "frame": 8, "at": 8515.757417312989 }, { "type": "C", "frame": 7, "at": 8515.757417312989 }, { "type": "C", "frame": 6, "at": 8515.757417312989 }, { "type": "O", "frame": 20, "at": 8515.757417312989 }, { "type": "O", "frame": 8, "at": 8515.757417312989 }, { "type": "O", "frame": 9, "at": 8515.757417312989 }, { "type": "O", "frame": 10, "at": 8515.757417312989 }, { "type": "O", "frame": 11, "at": 8515.757417312989 }, { "type": "O", "frame": 12, "at": 8515.757417312989 }, { "type": "O", "frame": 13, "at": 8515.757417312989 }, { "type": "O", "frame": 14, "at": 8515.757417312989 }, { "type": "O", "frame": 15, "at": 8515.757417312989 }, { "type": "O", "frame": 16, "at": 8515.757417312989 }, { "type": "O", "frame": 21, "at": 8515.757417312989 }, { "type": "O", "frame": 22, "at": 8515.757417312989 }, { "type": "O", "frame": 23, "at": 8515.757417312989 }, { "type": "O", "frame": 24, "at": 8515.757417312989 }, { "type": "O", "frame": 18, "at": 8515.757417312989 }, { "type": "C", "frame": 18, "at": 8517.102999962037 }, { "type": "C", "frame": 24, "at": 8517.102999962037 }, { "type": "O", "frame": 29, "at": 8517.103 }, { "type": "O", "frame": 18, "at": 8517.103 }, { "type": "C", "frame": 18, "at": 8518.442458942412 }, { "type": "C", "frame": 29, "at": 8518.442458942412 }, { "type": "O", "frame": 24, "at": 8518.442459 }, { "type": "O", "frame": 18, "at": 8518.442459 }, { "type": "C", "frame": 18, "at": 8519.791375053772 }, { "type": "C", "frame": 24, "at": 8519.791375053772 }, { "type": "O", "frame": 25, "at": 8519.791375053772 }, { "type": "O", "frame": 18, "at": 8519.791375053772 }, { "type": "C", "frame": 18, "at": 8521.131792027474 }, { "type": "C", "frame": 25, "at": 8521.131792027474 }, { "type": "O", "frame": 24, "at": 8521.131792027474 }, { "type": "O", "frame": 18, "at": 8521.131792027474 }, { "type": "C", "frame": 18, "at": 8523.81958406276 }, { "type": "C", "frame": 24, "at": 8523.81958406276 }, { "type": "C", "frame": 23, "at": 8523.819584167664 }, { "type": "C", "frame": 22, "at": 8523.819584167664 }, { "type": "C", "frame": 21, "at": 8523.819584167664 }, { "type": "O", "frame": 17, "at": 8523.819584167664 }, { "type": "O", "frame": 18, "at": 8523.819584167664 }, { "type": "C", "frame": 18, "at": 8529.304124939332 }, { "type": "C", "frame": 17, "at": 8529.304124939332 }, { "type": "O", "frame": 19, "at": 8529.304125 }, { "type": "O", "frame": 18, "at": 8529.304125 }, { "type": "C", "frame": 18, "at": 8536.010625053406 }, { "type": "C", "frame": 19, "at": 8536.010625053406 }, { "type": "C", "frame": 16, "at": 8536.010625160401 }, { "type": "C", "frame": 15, "at": 8536.010625160401 }, { "type": "C", "frame": 14, "at": 8536.010625160401 }, { "type": "C", "frame": 13, "at": 8536.010625160401 }, { "type": "C", "frame": 12, "at": 8536.010625160401 }, { "type": "C", "frame": 11, "at": 8536.010625160401 }, { "type": "C", "frame": 10, "at": 8536.010625160401 }, { "type": "C", "frame": 9, "at": 8536.010625160401 }, { "type": "C", "frame": 8, "at": 8536.010625160401 }, { "type": "C", "frame": 20, "at": 8536.010625160401 }, { "type": "O", "frame": 6, "at": 8536.010625160401 }, { "type": "O", "frame": 7, "at": 8536.010625160401 }, { "type": "O", "frame": 8, "at": 8536.010625160401 }, { "type": "O", "frame": 9, "at": 8536.010625160401 }, { "type": "O", "frame": 10, "at": 8536.010625160401 }, { "type": "O", "frame": 11, "at": 8536.010625160401 }, { "type": "O", "frame": 12, "at": 8536.010625160401 }, { "type": "O", "frame": 13, "at": 8536.010625160401 }, { "type": "O", "frame": 14, "at": 8536.010625160401 }, { "type": "O", "frame": 15, "at": 8536.010625160401 }, { "type": "O", "frame": 16, "at": 8536.010625160401 }, { "type": "O", "frame": 21, "at": 8536.010625160401 }, { "type": "O", "frame": 22, "at": 8536.010625160401 }, { "type": "O", "frame": 23, "at": 8536.010625160401 }, { "type": "O", "frame": 24, "at": 8536.010625160401 }, { "type": "O", "frame": 18, "at": 8536.010625160401 }, { "type": "C", "frame": 18, "at": 8538.696333999635 }, { "type": "C", "frame": 24, "at": 8538.696333999635 }, { "type": "O", "frame": 25, "at": 8538.696334 }, { "type": "O", "frame": 18, "at": 8538.696334 }, { "type": "C", "frame": 18, "at": 8540.03900002993 }, { "type": "C", "frame": 25, "at": 8540.03900002993 }, { "type": "O", "frame": 24, "at": 8540.03900002993 }, { "type": "O", "frame": 18, "at": 8540.03900002993 }, { "type": "C", "frame": 18, "at": 8545.424292053223 }, { "type": "C", "frame": 24, "at": 8545.424292053223 }, { "type": "C", "frame": 23, "at": 8545.424292678834 }, { "type": "C", "frame": 22, "at": 8545.424292678834 }, { "type": "C", "frame": 21, "at": 8545.424292678834 }, { "type": "O", "frame": 17, "at": 8545.424292678834 }, { "type": "O", "frame": 18, "at": 8545.424292678834 }, { "type": "C", "frame": 18, "at": 8549.50820914096 }, { "type": "C", "frame": 17, "at": 8549.50820914096 }, { "type": "O", "frame": 19, "at": 8549.50820914096 }, { "type": "O", "frame": 18, "at": 8549.50820914096 }, { "type": "C", "frame": 18, "at": 8553.5129172901 }, { "type": "C", "frame": 19, "at": 8553.5129172901 }, { "type": "C", "frame": 16, "at": 8553.512919540406 }, { "type": "C", "frame": 15, "at": 8553.512919540406 }, { "type": "C", "frame": 14, "at": 8553.512919540406 }, { "type": "C", "frame": 13, "at": 8553.512919540406 }, { "type": "C", "frame": 12, "at": 8553.512919540406 }, { "type": "C", "frame": 11, "at": 8553.512919540406 }, { "type": "C", "frame": 10, "at": 8553.512919540406 }, { "type": "C", "frame": 9, "at": 8553.512919540406 }, { "type": "C", "frame": 8, "at": 8553.512919540406 }, { "type": "C", "frame": 7, "at": 8553.512919540406 }, { "type": "C", "frame": 6, "at": 8553.512919540406 }, { "type": "O", "frame": 20, "at": 8553.512919540406 }, { "type": "O", "frame": 8, "at": 8553.512919540406 }, { "type": "O", "frame": 9, "at": 8553.512919540406 }, { "type": "O", "frame": 10, "at": 8553.512919540406 }, { "type": "O", "frame": 11, "at": 8553.512919540406 }, { "type": "O", "frame": 12, "at": 8553.512919540406 }, { "type": "O", "frame": 13, "at": 8553.512919540406 }, { "type": "O", "frame": 14, "at": 8553.512919540406 }, { "type": "O", "frame": 15, "at": 8553.512919540406 }, { "type": "O", "frame": 16, "at": 8553.512919540406 }, { "type": "O", "frame": 21, "at": 8553.512919540406 }, { "type": "O", "frame": 22, "at": 8553.512919540406 }, { "type": "O", "frame": 23, "at": 8553.512919540406 }, { "type": "O", "frame": 24, "at": 8553.512919540406 }, { "type": "O", "frame": 18, "at": 8553.512919540406 }, { "type": "C", "frame": 18, "at": 8561.59687467212 }, { "type": "C", "frame": 24, "at": 8561.59687467212 }, { "type": "C", "frame": 23, "at": 8561.59687467212 }, { "type": "C", "frame": 22, "at": 8561.59687467212 }, { "type": "C", "frame": 21, "at": 8561.59687467212 }, { "type": "O", "frame": 17, "at": 8561.596875 }, { "type": "O", "frame": 18, "at": 8561.596875 }, { "type": "C", "frame": 18, "at": 8565.734124946594 }, { "type": "C", "frame": 17, "at": 8565.734124946594 }, { "type": "O", "frame": 19, "at": 8565.734125 }, { "type": "O", "frame": 18, "at": 8565.734125 }, { "type": "C", "frame": 18, "at": 8573.759541374207 }, { "type": "C", "frame": 19, "at": 8573.759541374207 }, { "type": "C", "frame": 16, "at": 8573.759542900269 }, { "type": "C", "frame": 15, "at": 8573.759542900269 }, { "type": "C", "frame": 14, "at": 8573.759542900269 }, { "type": "C", "frame": 13, "at": 8573.759542900269 }, { "type": "C", "frame": 12, "at": 8573.759542900269 }, { "type": "C", "frame": 11, "at": 8573.759542900269 }, { "type": "C", "frame": 10, "at": 8573.759542900269 }, { "type": "C", "frame": 9, "at": 8573.759542900269 }, { "type": "C", "frame": 8, "at": 8573.759542900269 }, { "type": "C", "frame": 20, "at": 8573.759542900269 }, { "type": "O", "frame": 6, "at": 8573.759542900269 }, { "type": "O", "frame": 7, "at": 8573.759542900269 }, { "type": "O", "frame": 8, "at": 8573.759542900269 }, { "type": "O", "frame": 9, "at": 8573.759542900269 }, { "type": "O", "frame": 10, "at": 8573.759542900269 }, { "type": "O", "frame": 11, "at": 8573.759542900269 }, { "type": "O", "frame": 12, "at": 8573.759542900269 }, { "type": "O", "frame": 13, "at": 8573.759542900269 }, { "type": "O", "frame": 14, "at": 8573.759542900269 }, { "type": "O", "frame": 15, "at": 8573.759542900269 }, { "type": "O", "frame": 16, "at": 8573.759542900269 }, { "type": "O", "frame": 21, "at": 8573.759542900269 }, { "type": "O", "frame": 22, "at": 8573.759542900269 }, { "type": "O", "frame": 23, "at": 8573.759542900269 }, { "type": "O", "frame": 24, "at": 8573.759542900269 }, { "type": "O", "frame": 18, "at": 8573.759542900269 }, { "type": "C", "frame": 18, "at": 8575.1060420391 }, { "type": "C", "frame": 24, "at": 8575.1060420391 }, { "type": "O", "frame": 29, "at": 8575.1060420391 }, { "type": "O", "frame": 18, "at": 8575.1060420391 }, { "type": "C", "frame": 18, "at": 8576.457833977882 }, { "type": "C", "frame": 29, "at": 8576.457833977882 }, { "type": "O", "frame": 24, "at": 8576.457834 }, { "type": "O", "frame": 18, "at": 8576.457834 }, { "type": "C", "frame": 18, "at": 8580.485916847596 }, { "type": "C", "frame": 24, "at": 8580.485916847596 }, { "type": "O", "frame": 26, "at": 8580.485917 }, { "type": "O", "frame": 18, "at": 8580.485917 }, { "type": "C", "frame": 18, "at": 8581.836208967392 }, { "type": "C", "frame": 26, "at": 8581.836208967392 }, { "type": "C", "frame": 23, "at": 8581.836208967392 }, { "type": "C", "frame": 22, "at": 8581.836208967392 }, { "type": "C", "frame": 21, "at": 8581.836208967392 }, { "type": "O", "frame": 17, "at": 8581.836209 }, { "type": "O", "frame": 18, "at": 8581.836209 }, { "type": "C", "frame": 18, "at": 8585.937709034331 }, { "type": "C", "frame": 17, "at": 8585.937709034331 }, { "type": "O", "frame": 19, "at": 8585.937709034331 }, { "type": "O", "frame": 18, "at": 8585.937709034331 }, { "type": "C", "frame": 18, "at": 8587.276042010673 }, { "type": "C", "frame": 19, "at": 8587.276042010673 }, { "type": "C", "frame": 16, "at": 8587.276042010673 }, { "type": "C", "frame": 15, "at": 8587.276042010673 }, { "type": "C", "frame": 14, "at": 8587.276042010673 }, { "type": "C", "frame": 13, "at": 8587.276042010673 }, { "type": "C", "frame": 12, "at": 8587.276042010673 }, { "type": "C", "frame": 11, "at": 8587.276042010673 }, { "type": "C", "frame": 10, "at": 8587.276042010673 }, { "type": "C", "frame": 9, "at": 8587.276042010673 }, { "type": "C", "frame": 8, "at": 8587.276042010673 }, { "type": "C", "frame": 7, "at": 8587.276042010673 }, { "type": "C", "frame": 6, "at": 8587.276042010673 }, { "type": "O", "frame": 20, "at": 8587.276042010673 }, { "type": "O", "frame": 8, "at": 8587.276042010673 }, { "type": "O", "frame": 9, "at": 8587.276042010673 }, { "type": "O", "frame": 10, "at": 8587.276042010673 }, { "type": "O", "frame": 11, "at": 8587.276042010673 }, { "type": "O", "frame": 12, "at": 8587.276042010673 }, { "type": "O", "frame": 13, "at": 8587.276042010673 }, { "type": "O", "frame": 14, "at": 8587.276042010673 }, { "type": "O", "frame": 15, "at": 8587.276042010673 }, { "type": "O", "frame": 16, "at": 8587.276042010673 }, { "type": "O", "frame": 21, "at": 8587.276042010673 }, { "type": "O", "frame": 22, "at": 8587.276042010673 }, { "type": "O", "frame": 23, "at": 8587.276042010673 }, { "type": "O", "frame": 24, "at": 8587.276042010673 }, { "type": "O", "frame": 18, "at": 8587.276042010673 }, { "type": "C", "frame": 18, "at": 8596.67970944995 }, { "type": "C", "frame": 24, "at": 8596.67970944995 }, { "type": "C", "frame": 23, "at": 8596.67970944995 }, { "type": "C", "frame": 22, "at": 8596.67970944995 }, { "type": "C", "frame": 21, "at": 8596.67970944995 }, { "type": "O", "frame": 17, "at": 8596.67970944995 }, { "type": "O", "frame": 18, "at": 8596.67970944995 }, { "type": "C", "frame": 18, "at": 8600.906583828339 }, { "type": "C", "frame": 17, "at": 8600.906583828339 }, { "type": "O", "frame": 19, "at": 8600.906584 }, { "type": "O", "frame": 18, "at": 8600.906584 }, { "type": "C", "frame": 18, "at": 8608.906749939331 }, { "type": "C", "frame": 19, "at": 8608.906749939331 }, { "type": "C", "frame": 16, "at": 8608.906749939331 }, { "type": "C", "frame": 15, "at": 8608.906749939331 }, { "type": "C", "frame": 14, "at": 8608.906749939331 }, { "type": "C", "frame": 13, "at": 8608.906749939331 }, { "type": "C", "frame": 12, "at": 8608.906749939331 }, { "type": "C", "frame": 11, "at": 8608.906749939331 }, { "type": "C", "frame": 10, "at": 8608.906749939331 }, { "type": "C", "frame": 9, "at": 8608.906749939331 }, { "type": "C", "frame": 8, "at": 8608.906749939331 }, { "type": "C", "frame": 20, "at": 8608.906749939331 }, { "type": "O", "frame": 6, "at": 8608.90675 }, { "type": "O", "frame": 7, "at": 8608.90675 }, { "type": "O", "frame": 8, "at": 8608.90675 }, { "type": "O", "frame": 9, "at": 8608.90675 }, { "type": "O", "frame": 10, "at": 8608.90675 }, { "type": "O", "frame": 11, "at": 8608.90675 }, { "type": "O", "frame": 12, "at": 8608.90675 }, { "type": "O", "frame": 13, "at": 8608.90675 }, { "type": "O", "frame": 14, "at": 8608.90675 }, { "type": "O", "frame": 15, "at": 8608.90675 }, { "type": "O", "frame": 16, "at": 8608.90675 }, { "type": "O", "frame": 21, "at": 8608.90675 }, { "type": "O", "frame": 22, "at": 8608.90675 }, { "type": "O", "frame": 23, "at": 8608.90675 }, { "type": "O", "frame": 24, "at": 8608.90675 }, { "type": "O", "frame": 18, "at": 8608.90675 }, { "type": "C", "frame": 18, "at": 8617.01158455658 }, { "type": "C", "frame": 24, "at": 8617.01158455658 }, { "type": "C", "frame": 23, "at": 8617.01158455658 }, { "type": "C", "frame": 22, "at": 8617.01158455658 }, { "type": "C", "frame": 21, "at": 8617.01158455658 }, { "type": "O", "frame": 17, "at": 8617.01158455658 }, { "type": "O", "frame": 18, "at": 8617.01158455658 }, { "type": "C", "frame": 18, "at": 8622.48475046576 }, { "type": "C", "frame": 17, "at": 8622.48475046576 }, { "type": "O", "frame": 19, "at": 8622.48475046576 }, { "type": "O", "frame": 18, "at": 8622.48475046576 }, { "type": "C", "frame": 18, "at": 8629.135874954223 }, { "type": "C", "frame": 19, "at": 8629.135874954223 }, { "type": "C", "frame": 16, "at": 8629.135875976563 }, { "type": "C", "frame": 15, "at": 8629.135875976563 }, { "type": "C", "frame": 14, "at": 8629.135875976563 }, { "type": "C", "frame": 13, "at": 8629.135875976563 }, { "type": "C", "frame": 12, "at": 8629.135875976563 }, { "type": "C", "frame": 11, "at": 8629.135875976563 }, { "type": "C", "frame": 10, "at": 8629.135875976563 }, { "type": "C", "frame": 9, "at": 8629.135875976563 }, { "type": "C", "frame": 8, "at": 8629.135875976563 }, { "type": "C", "frame": 7, "at": 8629.135875976563 }, { "type": "C", "frame": 6, "at": 8629.135875976563 }, { "type": "O", "frame": 20, "at": 8629.135875976563 }, { "type": "O", "frame": 8, "at": 8629.135875976563 }, { "type": "O", "frame": 9, "at": 8629.135875976563 }, { "type": "O", "frame": 10, "at": 8629.135875976563 }, { "type": "O", "frame": 11, "at": 8629.135875976563 }, { "type": "O", "frame": 12, "at": 8629.135875976563 }, { "type": "O", "frame": 13, "at": 8629.135875976563 }, { "type": "O", "frame": 14, "at": 8629.135875976563 }, { "type": "O", "frame": 15, "at": 8629.135875976563 }, { "type": "O", "frame": 16, "at": 8629.135875976563 }, { "type": "O", "frame": 21, "at": 8629.135875976563 }, { "type": "O", "frame": 22, "at": 8629.135875976563 }, { "type": "O", "frame": 23, "at": 8629.135875976563 }, { "type": "O", "frame": 24, "at": 8629.135875976563 }, { "type": "O", "frame": 18, "at": 8629.135875976563 }, { "type": "C", "frame": 18, "at": 8639.04687525177 }, { "type": "C", "frame": 24, "at": 8639.04687525177 }, { "type": "C", "frame": 23, "at": 8639.04687525177 }, { "type": "C", "frame": 22, "at": 8639.04687525177 }, { "type": "C", "frame": 21, "at": 8639.04687525177 }, { "type": "O", "frame": 17, "at": 8639.04687525177 }, { "type": "O", "frame": 18, "at": 8639.04687525177 }, { "type": "C", "frame": 18, "at": 8643.177917003632 }, { "type": "C", "frame": 17, "at": 8643.177917003632 }, { "type": "O", "frame": 19, "at": 8643.177917003632 }, { "type": "O", "frame": 18, "at": 8643.177917003632 }, { "type": "C", "frame": 18, "at": 8644.531625028794 }, { "type": "C", "frame": 19, "at": 8644.531625028794 }, { "type": "C", "frame": 16, "at": 8644.531625045776 }, { "type": "C", "frame": 15, "at": 8644.531625045776 }, { "type": "C", "frame": 14, "at": 8644.531625045776 }, { "type": "C", "frame": 13, "at": 8644.531625045776 }, { "type": "C", "frame": 12, "at": 8644.531625045776 }, { "type": "C", "frame": 11, "at": 8644.531625045776 }, { "type": "C", "frame": 10, "at": 8644.531625045776 }, { "type": "C", "frame": 9, "at": 8644.531625045776 }, { "type": "C", "frame": 8, "at": 8644.531625045776 }, { "type": "O", "frame": 18, "at": 8644.531625045776 }, { "type": "C", "frame": 18, "at": 8645.902999964714 }, { "type": "C", "frame": 20, "at": 8645.902999964714 }, { "type": "O", "frame": 6, "at": 8645.903 }, { "type": "O", "frame": 7, "at": 8645.903 }, { "type": "O", "frame": 8, "at": 8645.903 }, { "type": "O", "frame": 9, "at": 8645.903 }, { "type": "O", "frame": 10, "at": 8645.903 }, { "type": "O", "frame": 11, "at": 8645.903 }, { "type": "O", "frame": 12, "at": 8645.903 }, { "type": "O", "frame": 13, "at": 8645.903 }, { "type": "O", "frame": 14, "at": 8645.903 }, { "type": "O", "frame": 15, "at": 8645.903 }, { "type": "O", "frame": 16, "at": 8645.903 }, { "type": "O", "frame": 21, "at": 8645.903 }, { "type": "O", "frame": 22, "at": 8645.903 }, { "type": "O", "frame": 23, "at": 8645.903 }, { "type": "O", "frame": 24, "at": 8645.903 }, { "type": "O", "frame": 18, "at": 8645.903 }, { "type": "C", "frame": 18, "at": 8648.439375045777 }, { "type": "C", "frame": 24, "at": 8648.439375045777 }, { "type": "O", "frame": 25, "at": 8648.439375045777 }, { "type": "O", "frame": 18, "at": 8648.439375045777 }, { "type": "C", "frame": 18, "at": 8649.776666955948 }, { "type": "C", "frame": 25, "at": 8649.776666955948 }, { "type": "O", "frame": 24, "at": 8649.776667 }, { "type": "O", "frame": 18, "at": 8649.776667 }, { "type": "C", "frame": 18, "at": 8653.828709007446 }, { "type": "C", "frame": 24, "at": 8653.828709007446 }, { "type": "C", "frame": 23, "at": 8653.82870924759 }, { "type": "C", "frame": 22, "at": 8653.82870924759 }, { "type": "C", "frame": 21, "at": 8653.82870924759 }, { "type": "O", "frame": 17, "at": 8653.82870924759 }, { "type": "O", "frame": 18, "at": 8653.82870924759 }, { "type": "C", "frame": 18, "at": 8657.922292106994 }, { "type": "C", "frame": 17, "at": 8657.922292106994 }, { "type": "O", "frame": 19, "at": 8657.922292106994 }, { "type": "O", "frame": 18, "at": 8657.922292106994 }, { "type": "C", "frame": 18, "at": 8665.953375106994 }, { "type": "C", "frame": 19, "at": 8665.953375106994 }, { "type": "C", "frame": 16, "at": 8665.95337689209 }, { "type": "C", "frame": 15, "at": 8665.95337689209 }, { "type": "C", "frame": 14, "at": 8665.95337689209 }, { "type": "C", "frame": 13, "at": 8665.95337689209 }, { "type": "C", "frame": 12, "at": 8665.95337689209 }, { "type": "C", "frame": 11, "at": 8665.95337689209 }, { "type": "C", "frame": 10, "at": 8665.95337689209 }, { "type": "C", "frame": 9, "at": 8665.95337689209 }, { "type": "C", "frame": 8, "at": 8665.95337689209 }, { "type": "C", "frame": 7, "at": 8665.95337689209 }, { "type": "C", "frame": 6, "at": 8665.95337689209 }, { "type": "O", "frame": 20, "at": 8665.95337689209 }, { "type": "O", "frame": 8, "at": 8665.95337689209 }, { "type": "O", "frame": 9, "at": 8665.95337689209 }, { "type": "O", "frame": 10, "at": 8665.95337689209 }, { "type": "O", "frame": 11, "at": 8665.95337689209 }, { "type": "O", "frame": 12, "at": 8665.95337689209 }, { "type": "O", "frame": 13, "at": 8665.95337689209 }, { "type": "O", "frame": 14, "at": 8665.95337689209 }, { "type": "O", "frame": 15, "at": 8665.95337689209 }, { "type": "O", "frame": 16, "at": 8665.95337689209 }, { "type": "O", "frame": 21, "at": 8665.95337689209 }, { "type": "O", "frame": 22, "at": 8665.95337689209 }, { "type": "O", "frame": 23, "at": 8665.95337689209 }, { "type": "O", "frame": 24, "at": 8665.95337689209 }, { "type": "O", "frame": 18, "at": 8665.95337689209 }, { "type": "C", "frame": 18, "at": 8675.351999420165 }, { "type": "C", "frame": 24, "at": 8675.351999420165 }, { "type": "C", "frame": 23, "at": 8675.351999420165 }, { "type": "C", "frame": 22, "at": 8675.351999420165 }, { "type": "C", "frame": 21, "at": 8675.351999420165 }, { "type": "O", "frame": 17, "at": 8675.352 }, { "type": "O", "frame": 18, "at": 8675.352 }, { "type": "C", "frame": 18, "at": 8679.4785001297 }, { "type": "C", "frame": 17, "at": 8679.4785001297 }, { "type": "O", "frame": 19, "at": 8679.4785001297 }, { "type": "O", "frame": 18, "at": 8679.4785001297 }, { "type": "C", "frame": 18, "at": 8680.814959040641 }, { "type": "C", "frame": 19, "at": 8680.814959040641 }, { "type": "C", "frame": 16, "at": 8680.814959040641 }, { "type": "C", "frame": 15, "at": 8680.814959040641 }, { "type": "C", "frame": 14, "at": 8680.814959040641 }, { "type": "C", "frame": 13, "at": 8680.814959040641 }, { "type": "C", "frame": 12, "at": 8680.814959040641 }, { "type": "C", "frame": 11, "at": 8680.814959040641 }, { "type": "C", "frame": 10, "at": 8680.814959040641 }, { "type": "C", "frame": 9, "at": 8680.814959040641 }, { "type": "C", "frame": 8, "at": 8680.814959040641 }, { "type": "C", "frame": 20, "at": 8680.814959040641 }, { "type": "O", "frame": 6, "at": 8680.814959040641 }, { "type": "O", "frame": 7, "at": 8680.814959040641 }, { "type": "O", "frame": 8, "at": 8680.814959040641 }, { "type": "O", "frame": 9, "at": 8680.814959040641 }, { "type": "O", "frame": 10, "at": 8680.814959040641 }, { "type": "O", "frame": 11, "at": 8680.814959040641 }, { "type": "O", "frame": 12, "at": 8680.814959040641 }, { "type": "O", "frame": 13, "at": 8680.814959040641 }, { "type": "O", "frame": 14, "at": 8680.814959040641 }, { "type": "O", "frame": 15, "at": 8680.814959040641 }, { "type": "O", "frame": 16, "at": 8680.814959040641 }, { "type": "O", "frame": 21, "at": 8680.814959040641 }, { "type": "O", "frame": 22, "at": 8680.814959040641 }, { "type": "O", "frame": 23, "at": 8680.814959040641 }, { "type": "O", "frame": 24, "at": 8680.814959040641 }, { "type": "O", "frame": 18, "at": 8680.814959040641 }, { "type": "C", "frame": 18, "at": 8690.253667305358 }, { "type": "C", "frame": 24, "at": 8690.253667305358 }, { "type": "C", "frame": 23, "at": 8690.253667305358 }, { "type": "C", "frame": 22, "at": 8690.253667305358 }, { "type": "C", "frame": 21, "at": 8690.253667305358 }, { "type": "O", "frame": 17, "at": 8690.253667305358 }, { "type": "O", "frame": 18, "at": 8690.253667305358 }, { "type": "C", "frame": 18, "at": 8694.330709102815 }, { "type": "C", "frame": 17, "at": 8694.330709102815 }, { "type": "O", "frame": 19, "at": 8694.330709102815 }, { "type": "O", "frame": 18, "at": 8694.330709102815 }, { "type": "C", "frame": 18, "at": 8702.348791618713 }, { "type": "C", "frame": 19, "at": 8702.348791618713 }, { "type": "C", "frame": 16, "at": 8702.348791618713 }, { "type": "C", "frame": 15, "at": 8702.348791618713 }, { "type": "C", "frame": 14, "at": 8702.348791618713 }, { "type": "C", "frame": 13, "at": 8702.348791618713 }, { "type": "C", "frame": 12, "at": 8702.348791618713 }, { "type": "C", "frame": 11, "at": 8702.348791618713 }, { "type": "C", "frame": 10, "at": 8702.348791618713 }, { "type": "C", "frame": 9, "at": 8702.348791618713 }, { "type": "C", "frame": 8, "at": 8702.348791618713 }, { "type": "C", "frame": 7, "at": 8702.348791618713 }, { "type": "C", "frame": 6, "at": 8702.348791618713 }, { "type": "O", "frame": 20, "at": 8702.348792 }, { "type": "O", "frame": 8, "at": 8702.348792 }, { "type": "O", "frame": 9, "at": 8702.348792 }, { "type": "O", "frame": 10, "at": 8702.348792 }, { "type": "O", "frame": 11, "at": 8702.348792 }, { "type": "O", "frame": 12, "at": 8702.348792 }, { "type": "O", "frame": 13, "at": 8702.348792 }, { "type": "O", "frame": 14, "at": 8702.348792 }, { "type": "O", "frame": 15, "at": 8702.348792 }, { "type": "O", "frame": 16, "at": 8702.348792 }, { "type": "O", "frame": 21, "at": 8702.348792 }, { "type": "O", "frame": 22, "at": 8702.348792 }, { "type": "O", "frame": 23, "at": 8702.348792 }, { "type": "O", "frame": 24, "at": 8702.348792 }, { "type": "O", "frame": 18, "at": 8702.348792 }, { "type": "C", "frame": 18, "at": 8709.058333797639 }, { "type": "C", "frame": 24, "at": 8709.058333797639 }, { "type": "O", "frame": 29, "at": 8709.058334 }, { "type": "O", "frame": 18, "at": 8709.058334 }, { "type": "C", "frame": 18, "at": 8710.42245901335 }, { "type": "C", "frame": 29, "at": 8710.42245901335 }, { "type": "C", "frame": 23, "at": 8710.42245901335 }, { "type": "C", "frame": 22, "at": 8710.42245901335 }, { "type": "C", "frame": 21, "at": 8710.42245901335 }, { "type": "O", "frame": 17, "at": 8710.42245901335 }, { "type": "O", "frame": 18, "at": 8710.42245901335 }, { "type": "C", "frame": 18, "at": 8715.996625297912 }, { "type": "C", "frame": 17, "at": 8715.996625297912 }, { "type": "O", "frame": 19, "at": 8715.996625297912 }, { "type": "O", "frame": 18, "at": 8715.996625297912 }, { "type": "C", "frame": 18, "at": 8722.727749401092 }, { "type": "C", "frame": 19, "at": 8722.727749401092 }, { "type": "C", "frame": 16, "at": 8722.727749748414 }, { "type": "C", "frame": 15, "at": 8722.727749748414 }, { "type": "C", "frame": 14, "at": 8722.727749748414 }, { "type": "C", "frame": 13, "at": 8722.727749748414 }, { "type": "C", "frame": 12, "at": 8722.727749748414 }, { "type": "C", "frame": 11, "at": 8722.727749748414 }, { "type": "C", "frame": 10, "at": 8722.727749748414 }, { "type": "C", "frame": 9, "at": 8722.727749748414 }, { "type": "C", "frame": 8, "at": 8722.727749748414 }, { "type": "O", "frame": 18, "at": 8722.72775 }, { "type": "C", "frame": 18, "at": 8724.127167042732 }, { "type": "C", "frame": 20, "at": 8724.127167625611 }, { "type": "O", "frame": 6, "at": 8724.127167625611 }, { "type": "O", "frame": 7, "at": 8724.127167625611 }, { "type": "O", "frame": 8, "at": 8724.127167625611 }, { "type": "O", "frame": 9, "at": 8724.127167625611 }, { "type": "O", "frame": 10, "at": 8724.127167625611 }, { "type": "O", "frame": 11, "at": 8724.127167625611 }, { "type": "O", "frame": 12, "at": 8724.127167625611 }, { "type": "O", "frame": 13, "at": 8724.127167625611 }, { "type": "O", "frame": 14, "at": 8724.127167625611 }, { "type": "O", "frame": 15, "at": 8724.127167625611 }, { "type": "O", "frame": 16, "at": 8724.127167625611 }, { "type": "O", "frame": 21, "at": 8724.127167625611 }, { "type": "O", "frame": 22, "at": 8724.127167625611 }, { "type": "O", "frame": 23, "at": 8724.127167625611 }, { "type": "O", "frame": 24, "at": 8724.127167625611 }, { "type": "O", "frame": 18, "at": 8724.127167625611 }, { "type": "C", "frame": 18, "at": 8732.193749679749 }, { "type": "C", "frame": 24, "at": 8732.193749679749 }, { "type": "O", "frame": 38, "at": 8732.19375 }, { "type": "O", "frame": 18, "at": 8732.19375 }, { "type": "C", "frame": 18, "at": 8733.546459054947 }, { "type": "C", "frame": 38, "at": 8733.546459054947 }, { "type": "C", "frame": 23, "at": 8733.546459054947 }, { "type": "C", "frame": 22, "at": 8733.546459054947 }, { "type": "C", "frame": 21, "at": 8733.546459054947 }, { "type": "O", "frame": 17, "at": 8733.546459054947 }, { "type": "O", "frame": 18, "at": 8733.546459054947 }, { "type": "C", "frame": 18, "at": 8739.055959026702 }, { "type": "C", "frame": 17, "at": 8739.055959026702 }, { "type": "O", "frame": 19, "at": 8739.055959026702 }, { "type": "O", "frame": 18, "at": 8739.055959026702 }, { "type": "C", "frame": 18, "at": 8740.392292036422 }, { "type": "C", "frame": 19, "at": 8740.392292036422 }, { "type": "C", "frame": 16, "at": 8740.392292036422 }, { "type": "C", "frame": 15, "at": 8740.392292036422 }, { "type": "C", "frame": 14, "at": 8740.392292036422 }, { "type": "C", "frame": 13, "at": 8740.392292036422 }, { "type": "C", "frame": 12, "at": 8740.392292036422 }, { "type": "C", "frame": 11, "at": 8740.392292036422 }, { "type": "C", "frame": 10, "at": 8740.392292036422 }, { "type": "C", "frame": 9, "at": 8740.392292036422 }, { "type": "C", "frame": 8, "at": 8740.392292036422 }, { "type": "C", "frame": 7, "at": 8740.392292036422 }, { "type": "C", "frame": 6, "at": 8740.392292036422 }, { "type": "O", "frame": 20, "at": 8740.392292036422 }, { "type": "O", "frame": 8, "at": 8740.392292036422 }, { "type": "O", "frame": 9, "at": 8740.392292036422 }, { "type": "O", "frame": 10, "at": 8740.392292036422 }, { "type": "O", "frame": 11, "at": 8740.392292036422 }, { "type": "O", "frame": 12, "at": 8740.392292036422 }, { "type": "O", "frame": 13, "at": 8740.392292036422 }, { "type": "O", "frame": 14, "at": 8740.392292036422 }, { "type": "O", "frame": 15, "at": 8740.392292036422 }, { "type": "O", "frame": 16, "at": 8740.392292036422 }, { "type": "O", "frame": 21, "at": 8740.392292036422 }, { "type": "O", "frame": 22, "at": 8740.392292036422 }, { "type": "O", "frame": 23, "at": 8740.392292036422 }, { "type": "O", "frame": 24, "at": 8740.392292036422 }, { "type": "O", "frame": 18, "at": 8740.392292036422 }, { "type": "C", "frame": 18, "at": 8748.473334289734 }, { "type": "C", "frame": 24, "at": 8748.473334289734 }, { "type": "C", "frame": 23, "at": 8748.473334289734 }, { "type": "C", "frame": 22, "at": 8748.473334289734 }, { "type": "C", "frame": 21, "at": 8748.473334289734 }, { "type": "O", "frame": 17, "at": 8748.473334289734 }, { "type": "O", "frame": 18, "at": 8748.473334289734 }, { "type": "C", "frame": 18, "at": 8752.623209164032 }, { "type": "C", "frame": 17, "at": 8752.623209164032 }, { "type": "O", "frame": 19, "at": 8752.623209164032 }, { "type": "O", "frame": 18, "at": 8752.623209164032 }, { "type": "C", "frame": 18, "at": 8761.933083534606 }, { "type": "C", "frame": 19, "at": 8761.933083534606 }, { "type": "C", "frame": 16, "at": 8761.93308446521 }, { "type": "C", "frame": 15, "at": 8761.93308446521 }, { "type": "C", "frame": 14, "at": 8761.93308446521 }, { "type": "C", "frame": 13, "at": 8761.93308446521 }, { "type": "C", "frame": 12, "at": 8761.93308446521 }, { "type": "C", "frame": 11, "at": 8761.93308446521 }, { "type": "C", "frame": 10, "at": 8761.93308446521 }, { "type": "C", "frame": 9, "at": 8761.93308446521 }, { "type": "C", "frame": 8, "at": 8761.93308446521 }, { "type": "C", "frame": 20, "at": 8761.93308446521 }, { "type": "O", "frame": 6, "at": 8761.93308446521 }, { "type": "O", "frame": 7, "at": 8761.93308446521 }, { "type": "O", "frame": 8, "at": 8761.93308446521 }, { "type": "O", "frame": 9, "at": 8761.93308446521 }, { "type": "O", "frame": 10, "at": 8761.93308446521 }, { "type": "O", "frame": 11, "at": 8761.93308446521 }, { "type": "O", "frame": 12, "at": 8761.93308446521 }, { "type": "O", "frame": 13, "at": 8761.93308446521 }, { "type": "O", "frame": 14, "at": 8761.93308446521 }, { "type": "O", "frame": 15, "at": 8761.93308446521 }, { "type": "O", "frame": 16, "at": 8761.93308446521 }, { "type": "O", "frame": 21, "at": 8761.93308446521 }, { "type": "O", "frame": 22, "at": 8761.93308446521 }, { "type": "O", "frame": 23, "at": 8761.93308446521 }, { "type": "O", "frame": 24, "at": 8761.93308446521 }, { "type": "O", "frame": 18, "at": 8761.93308446521 }, { "type": "C", "frame": 18, "at": 8767.302124966034 }, { "type": "C", "frame": 24, "at": 8767.302124966034 }, { "type": "O", "frame": 29, "at": 8767.302125 }, { "type": "O", "frame": 18, "at": 8767.302125 }, { "type": "C", "frame": 18, "at": 8768.643250011444 }, { "type": "C", "frame": 29, "at": 8768.643250011444 }, { "type": "O", "frame": 24, "at": 8768.643250011444 }, { "type": "O", "frame": 18, "at": 8768.643250011444 }, { "type": "C", "frame": 18, "at": 8770.00437499237 }, { "type": "C", "frame": 24, "at": 8770.00437499237 }, { "type": "C", "frame": 23, "at": 8770.00437499237 }, { "type": "C", "frame": 22, "at": 8770.00437499237 }, { "type": "C", "frame": 21, "at": 8770.00437499237 }, { "type": "O", "frame": 17, "at": 8770.004375 }, { "type": "O", "frame": 18, "at": 8770.004375 }, { "type": "C", "frame": 18, "at": 8775.56266691208 }, { "type": "C", "frame": 17, "at": 8775.56266691208 }, { "type": "O", "frame": 19, "at": 8775.562667 }, { "type": "O", "frame": 18, "at": 8775.562667 }, { "type": "C", "frame": 18, "at": 8776.904749977295 }, { "type": "C", "frame": 19, "at": 8776.904749977295 }, { "type": "C", "frame": 16, "at": 8776.904749977295 }, { "type": "C", "frame": 15, "at": 8776.904749977295 }, { "type": "C", "frame": 14, "at": 8776.904749977295 }, { "type": "C", "frame": 13, "at": 8776.904749977295 }, { "type": "C", "frame": 12, "at": 8776.904749977295 }, { "type": "C", "frame": 11, "at": 8776.904749977295 }, { "type": "C", "frame": 10, "at": 8776.904749977295 }, { "type": "C", "frame": 9, "at": 8776.904749977295 }, { "type": "C", "frame": 8, "at": 8776.904749977295 }, { "type": "C", "frame": 7, "at": 8776.904749977295 }, { "type": "C", "frame": 6, "at": 8776.904749977295 }, { "type": "O", "frame": 20, "at": 8776.90475 }, { "type": "O", "frame": 8, "at": 8776.90475 }, { "type": "O", "frame": 9, "at": 8776.90475 }, { "type": "O", "frame": 10, "at": 8776.90475 }, { "type": "O", "frame": 11, "at": 8776.90475 }, { "type": "O", "frame": 12, "at": 8776.90475 }, { "type": "O", "frame": 13, "at": 8776.90475 }, { "type": "O", "frame": 14, "at": 8776.90475 }, { "type": "O", "frame": 15, "at": 8776.90475 }, { "type": "O", "frame": 16, "at": 8776.90475 }, { "type": "O", "frame": 21, "at": 8776.90475 }, { "type": "O", "frame": 22, "at": 8776.90475 }, { "type": "O", "frame": 23, "at": 8776.90475 }, { "type": "O", "frame": 31, "at": 8776.90475 }, { "type": "O", "frame": 18, "at": 8776.90475 }, { "type": "C", "frame": 18, "at": 8778.246791969299 }, { "type": "C", "frame": 31, "at": 8778.246791969299 }, { "type": "O", "frame": 24, "at": 8778.246792 }, { "type": "O", "frame": 18, "at": 8778.246792 }, { "type": "C", "frame": 18, "at": 8786.316125076477 }, { "type": "C", "frame": 24, "at": 8786.316125076477 }, { "type": "C", "frame": 23, "at": 8786.316125076477 }, { "type": "C", "frame": 22, "at": 8786.316125076477 }, { "type": "C", "frame": 21, "at": 8786.316125076477 }, { "type": "O", "frame": 17, "at": 8786.316125076477 }, { "type": "O", "frame": 18, "at": 8786.316125076477 }, { "type": "C", "frame": 18, "at": 8790.48391732025 }, { "type": "C", "frame": 17, "at": 8790.48391732025 }, { "type": "O", "frame": 19, "at": 8790.48391732025 }, { "type": "O", "frame": 18, "at": 8790.48391732025 }, { "type": "C", "frame": 18, "at": 8798.497874977294 }, { "type": "C", "frame": 19, "at": 8798.497874977294 }, { "type": "C", "frame": 16, "at": 8798.497876296997 }, { "type": "C", "frame": 15, "at": 8798.497876296997 }, { "type": "C", "frame": 14, "at": 8798.497876296997 }, { "type": "C", "frame": 13, "at": 8798.497876296997 }, { "type": "C", "frame": 12, "at": 8798.497876296997 }, { "type": "C", "frame": 11, "at": 8798.497876296997 }, { "type": "C", "frame": 10, "at": 8798.497876296997 }, { "type": "C", "frame": 9, "at": 8798.497876296997 }, { "type": "C", "frame": 8, "at": 8798.497876296997 }, { "type": "C", "frame": 20, "at": 8798.497876296997 }, { "type": "O", "frame": 6, "at": 8798.497876296997 }, { "type": "O", "frame": 7, "at": 8798.497876296997 }, { "type": "O", "frame": 8, "at": 8798.497876296997 }, { "type": "O", "frame": 9, "at": 8798.497876296997 }, { "type": "O", "frame": 10, "at": 8798.497876296997 }, { "type": "O", "frame": 11, "at": 8798.497876296997 }, { "type": "O", "frame": 12, "at": 8798.497876296997 }, { "type": "O", "frame": 13, "at": 8798.497876296997 }, { "type": "O", "frame": 14, "at": 8798.497876296997 }, { "type": "O", "frame": 15, "at": 8798.497876296997 }, { "type": "O", "frame": 16, "at": 8798.497876296997 }, { "type": "O", "frame": 21, "at": 8798.497876296997 }, { "type": "O", "frame": 22, "at": 8798.497876296997 }, { "type": "O", "frame": 23, "at": 8798.497876296997 }, { "type": "O", "frame": 24, "at": 8798.497876296997 }, { "type": "O", "frame": 18, "at": 8798.497876296997 }, { "type": "C", "frame": 18, "at": 8805.227166915893 }, { "type": "C", "frame": 24, "at": 8805.227166915893 }, { "type": "O", "frame": 49, "at": 8805.227167 }, { "type": "O", "frame": 18, "at": 8805.227167 }, { "type": "C", "frame": 18, "at": 8806.575834025565 }, { "type": "C", "frame": 49, "at": 8806.575834025565 }, { "type": "C", "frame": 23, "at": 8806.575834060668 }, { "type": "C", "frame": 22, "at": 8806.575834060668 }, { "type": "C", "frame": 21, "at": 8806.575834060668 }, { "type": "O", "frame": 17, "at": 8806.575834060668 }, { "type": "O", "frame": 18, "at": 8806.575834060668 }, { "type": "C", "frame": 18, "at": 8812.037833893188 }, { "type": "C", "frame": 17, "at": 8812.037833893188 }, { "type": "O", "frame": 19, "at": 8812.037834 }, { "type": "O", "frame": 18, "at": 8812.037834 }, { "type": "C", "frame": 18, "at": 8818.700125049958 }, { "type": "C", "frame": 19, "at": 8818.700125049958 }, { "type": "C", "frame": 16, "at": 8818.700125049958 }, { "type": "C", "frame": 15, "at": 8818.700125049958 }, { "type": "C", "frame": 14, "at": 8818.700125049958 }, { "type": "C", "frame": 13, "at": 8818.700125049958 }, { "type": "C", "frame": 12, "at": 8818.700125049958 }, { "type": "C", "frame": 11, "at": 8818.700125049958 }, { "type": "C", "frame": 10, "at": 8818.700125049958 }, { "type": "C", "frame": 9, "at": 8818.700125049958 }, { "type": "C", "frame": 8, "at": 8818.700125049958 }, { "type": "C", "frame": 7, "at": 8818.700125049958 }, { "type": "C", "frame": 6, "at": 8818.700125049958 }, { "type": "O", "frame": 20, "at": 8818.700125049958 }, { "type": "O", "frame": 8, "at": 8818.700125049958 }, { "type": "O", "frame": 9, "at": 8818.700125049958 }, { "type": "O", "frame": 10, "at": 8818.700125049958 }, { "type": "O", "frame": 11, "at": 8818.700125049958 }, { "type": "O", "frame": 12, "at": 8818.700125049958 }, { "type": "O", "frame": 13, "at": 8818.700125049958 }, { "type": "O", "frame": 14, "at": 8818.700125049958 }, { "type": "O", "frame": 15, "at": 8818.700125049958 }, { "type": "O", "frame": 16, "at": 8818.700125049958 }, { "type": "O", "frame": 21, "at": 8818.700125049958 }, { "type": "O", "frame": 22, "at": 8818.700125049958 }, { "type": "O", "frame": 23, "at": 8818.700125049958 }, { "type": "O", "frame": 24, "at": 8818.700125049958 }, { "type": "O", "frame": 18, "at": 8818.700125049958 }, { "type": "C", "frame": 18, "at": 8821.387125036239 }, { "type": "C", "frame": 24, "at": 8821.387125036239 }, { "type": "O", "frame": 31, "at": 8821.387125036239 }, { "type": "O", "frame": 18, "at": 8821.387125036239 }, { "type": "C", "frame": 18, "at": 8822.726791962623 }, { "type": "C", "frame": 31, "at": 8822.726791962623 }, { "type": "O", "frame": 24, "at": 8822.726792 }, { "type": "O", "frame": 18, "at": 8822.726792 }, { "type": "C", "frame": 18, "at": 8828.12241711444 }, { "type": "C", "frame": 24, "at": 8828.12241711444 }, { "type": "C", "frame": 23, "at": 8828.12241711444 }, { "type": "C", "frame": 22, "at": 8828.12241711444 }, { "type": "C", "frame": 21, "at": 8828.12241711444 }, { "type": "O", "frame": 17, "at": 8828.12241711444 }, { "type": "O", "frame": 18, "at": 8828.12241711444 }, { "type": "C", "frame": 18, "at": 8832.21120884723 }, { "type": "C", "frame": 17, "at": 8832.21120884723 }, { "type": "O", "frame": 19, "at": 8832.211209 }, { "type": "O", "frame": 18, "at": 8832.211209 }, { "type": "C", "frame": 18, "at": 8833.539334 }, { "type": "C", "frame": 19, "at": 8833.539334 }, { "type": "C", "frame": 16, "at": 8833.539334556579 }, { "type": "C", "frame": 15, "at": 8833.539334556579 }, { "type": "C", "frame": 14, "at": 8833.539334556579 }, { "type": "C", "frame": 13, "at": 8833.539334556579 }, { "type": "C", "frame": 12, "at": 8833.539334556579 }, { "type": "C", "frame": 11, "at": 8833.539334556579 }, { "type": "C", "frame": 10, "at": 8833.539334556579 }, { "type": "C", "frame": 9, "at": 8833.539334556579 }, { "type": "C", "frame": 8, "at": 8833.539334556579 }, { "type": "O", "frame": 18, "at": 8833.539334556579 }, { "type": "C", "frame": 18, "at": 8834.907666982062 }, { "type": "C", "frame": 20, "at": 8834.907667419433 }, { "type": "O", "frame": 6, "at": 8834.907667419433 }, { "type": "O", "frame": 7, "at": 8834.907667419433 }, { "type": "O", "frame": 8, "at": 8834.907667419433 }, { "type": "O", "frame": 9, "at": 8834.907667419433 }, { "type": "O", "frame": 10, "at": 8834.907667419433 }, { "type": "O", "frame": 11, "at": 8834.907667419433 }, { "type": "O", "frame": 12, "at": 8834.907667419433 }, { "type": "O", "frame": 13, "at": 8834.907667419433 }, { "type": "O", "frame": 14, "at": 8834.907667419433 }, { "type": "O", "frame": 15, "at": 8834.907667419433 }, { "type": "O", "frame": 16, "at": 8834.907667419433 }, { "type": "O", "frame": 21, "at": 8834.907667419433 }, { "type": "O", "frame": 22, "at": 8834.907667419433 }, { "type": "O", "frame": 23, "at": 8834.907667419433 }, { "type": "O", "frame": 28, "at": 8834.907667419433 }, { "type": "O", "frame": 18, "at": 8834.907667419433 }, { "type": "C", "frame": 18, "at": 8836.25391705722 }, { "type": "C", "frame": 28, "at": 8836.25391705722 }, { "type": "O", "frame": 24, "at": 8836.25391705722 }, { "type": "O", "frame": 18, "at": 8836.25391705722 }, { "type": "C", "frame": 18, "at": 8842.989374897186 }, { "type": "C", "frame": 24, "at": 8842.989374897186 }, { "type": "C", "frame": 23, "at": 8842.989374954406 }, { "type": "C", "frame": 22, "at": 8842.989374954406 }, { "type": "C", "frame": 21, "at": 8842.989374954406 }, { "type": "O", "frame": 17, "at": 8842.989375 }, { "type": "O", "frame": 18, "at": 8842.989375 }, { "type": "C", "frame": 18, "at": 8847.145084266662 }, { "type": "C", "frame": 17, "at": 8847.145084266662 }, { "type": "O", "frame": 19, "at": 8847.145084266662 }, { "type": "O", "frame": 18, "at": 8847.145084266662 }, { "type": "C", "frame": 18, "at": 8855.141959286102 }, { "type": "C", "frame": 19, "at": 8855.141959286102 }, { "type": "C", "frame": 16, "at": 8855.141959286102 }, { "type": "C", "frame": 15, "at": 8855.141959286102 }, { "type": "C", "frame": 14, "at": 8855.141959286102 }, { "type": "C", "frame": 13, "at": 8855.141959286102 }, { "type": "C", "frame": 12, "at": 8855.141959286102 }, { "type": "C", "frame": 11, "at": 8855.141959286102 }, { "type": "C", "frame": 10, "at": 8855.141959286102 }, { "type": "C", "frame": 9, "at": 8855.141959286102 }, { "type": "C", "frame": 8, "at": 8855.141959286102 }, { "type": "C", "frame": 7, "at": 8855.141959286102 }, { "type": "C", "frame": 6, "at": 8855.141959286102 }, { "type": "O", "frame": 20, "at": 8855.141959286102 }, { "type": "O", "frame": 8, "at": 8855.141959286102 }, { "type": "O", "frame": 9, "at": 8855.141959286102 }, { "type": "O", "frame": 10, "at": 8855.141959286102 }, { "type": "O", "frame": 11, "at": 8855.141959286102 }, { "type": "O", "frame": 12, "at": 8855.141959286102 }, { "type": "O", "frame": 13, "at": 8855.141959286102 }, { "type": "O", "frame": 14, "at": 8855.141959286102 }, { "type": "O", "frame": 15, "at": 8855.141959286102 }, { "type": "O", "frame": 16, "at": 8855.141959286102 }, { "type": "O", "frame": 21, "at": 8855.141959286102 }, { "type": "O", "frame": 22, "at": 8855.141959286102 }, { "type": "O", "frame": 23, "at": 8855.141959286102 }, { "type": "O", "frame": 24, "at": 8855.141959286102 }, { "type": "O", "frame": 18, "at": 8855.141959286102 }, { "type": "C", "frame": 18, "at": 8857.82437496222 }, { "type": "C", "frame": 24, "at": 8857.82437496222 }, { "type": "O", "frame": 25, "at": 8857.824375 }, { "type": "O", "frame": 18, "at": 8857.824375 }, { "type": "C", "frame": 18, "at": 8859.164208974838 }, { "type": "C", "frame": 25, "at": 8859.164208974838 }, { "type": "O", "frame": 24, "at": 8859.164209 }, { "type": "O", "frame": 18, "at": 8859.164209 }, { "type": "C", "frame": 18, "at": 8864.561584106812 }, { "type": "C", "frame": 24, "at": 8864.561584106812 }, { "type": "C", "frame": 23, "at": 8864.561584106812 }, { "type": "C", "frame": 22, "at": 8864.561584106812 }, { "type": "C", "frame": 21, "at": 8864.561584106812 }, { "type": "O", "frame": 17, "at": 8864.561584106812 }, { "type": "O", "frame": 18, "at": 8864.561584106812 }, { "type": "C", "frame": 18, "at": 8868.650917057403 }, { "type": "C", "frame": 17, "at": 8868.650917057403 }, { "type": "O", "frame": 19, "at": 8868.650917057403 }, { "type": "O", "frame": 18, "at": 8868.650917057403 }, { "type": "C", "frame": 18, "at": 8869.898292011445 }, { "type": "C", "frame": 19, "at": 8869.898292011445 }, { "type": "C", "frame": 16, "at": 8869.898292011445 }, { "type": "C", "frame": 15, "at": 8869.898292011445 }, { "type": "C", "frame": 14, "at": 8869.898292011445 }, { "type": "C", "frame": 13, "at": 8869.898292011445 }, { "type": "C", "frame": 12, "at": 8869.898292011445 }, { "type": "C", "frame": 11, "at": 8869.898292011445 }, { "type": "C", "frame": 10, "at": 8869.898292011445 }, { "type": "C", "frame": 9, "at": 8869.898292011445 }, { "type": "C", "frame": 8, "at": 8869.898292011445 }, { "type": "C", "frame": 20, "at": 8869.898292011445 }, { "type": "O", "frame": 6, "at": 8869.898292011445 }, { "type": "O", "frame": 7, "at": 8869.898292011445 }, { "type": "O", "frame": 18, "at": 8869.898292011445 }, { "type": "C", "frame": 18, "at": 8871.233125025932 }, { "type": "O", "frame": 8, "at": 8871.233125025932 }, { "type": "O", "frame": 9, "at": 8871.233125025932 }, { "type": "O", "frame": 10, "at": 8871.233125025932 }, { "type": "O", "frame": 11, "at": 8871.233125025932 }, { "type": "O", "frame": 12, "at": 8871.233125025932 }, { "type": "O", "frame": 13, "at": 8871.233125025932 }, { "type": "O", "frame": 14, "at": 8871.233125025932 }, { "type": "O", "frame": 15, "at": 8871.233125025932 }, { "type": "O", "frame": 16, "at": 8871.233125025932 }, { "type": "O", "frame": 21, "at": 8871.233125025932 }, { "type": "O", "frame": 22, "at": 8871.233125025932 }, { "type": "O", "frame": 23, "at": 8871.233125025932 }, { "type": "O", "frame": 24, "at": 8871.233125025932 }, { "type": "O", "frame": 18, "at": 8871.233125025932 }, { "type": "C", "frame": 18, "at": 8873.913708953858 }, { "type": "C", "frame": 24, "at": 8873.913708953858 }, { "type": "O", "frame": 28, "at": 8873.913709 }, { "type": "O", "frame": 18, "at": 8873.913709 }, { "type": "C", "frame": 18, "at": 8875.254041984925 }, { "type": "C", "frame": 28, "at": 8875.254041984925 }, { "type": "O", "frame": 24, "at": 8875.254042 }, { "type": "O", "frame": 18, "at": 8875.254042 }, { "type": "C", "frame": 18, "at": 8879.288625091736 }, { "type": "C", "frame": 24, "at": 8879.288625091736 }, { "type": "C", "frame": 23, "at": 8879.288625091736 }, { "type": "C", "frame": 22, "at": 8879.288625091736 }, { "type": "C", "frame": 21, "at": 8879.288625091736 }, { "type": "O", "frame": 17, "at": 8879.288625091736 }, { "type": "O", "frame": 18, "at": 8879.288625091736 }, { "type": "C", "frame": 18, "at": 8884.112458942413 }, { "type": "C", "frame": 17, "at": 8884.112458942413 }, { "type": "O", "frame": 19, "at": 8884.112459 }, { "type": "O", "frame": 18, "at": 8884.112459 }, { "type": "C", "frame": 18, "at": 8890.793792065033 }, { "type": "C", "frame": 19, "at": 8890.793792065033 }, { "type": "C", "frame": 16, "at": 8890.793792065033 }, { "type": "C", "frame": 15, "at": 8890.793792065033 }, { "type": "C", "frame": 14, "at": 8890.793792065033 }, { "type": "C", "frame": 13, "at": 8890.793792065033 }, { "type": "C", "frame": 12, "at": 8890.793792065033 }, { "type": "C", "frame": 11, "at": 8890.793792065033 }, { "type": "C", "frame": 10, "at": 8890.793792065033 }, { "type": "C", "frame": 9, "at": 8890.793792065033 }, { "type": "C", "frame": 8, "at": 8890.793792065033 }, { "type": "C", "frame": 7, "at": 8890.793792065033 }, { "type": "C", "frame": 6, "at": 8890.793792065033 }, { "type": "O", "frame": 20, "at": 8890.793792065033 }, { "type": "O", "frame": 8, "at": 8890.793792065033 }, { "type": "O", "frame": 9, "at": 8890.793792065033 }, { "type": "O", "frame": 10, "at": 8890.793792065033 }, { "type": "O", "frame": 11, "at": 8890.793792065033 }, { "type": "O", "frame": 12, "at": 8890.793792065033 }, { "type": "O", "frame": 13, "at": 8890.793792065033 }, { "type": "O", "frame": 14, "at": 8890.793792065033 }, { "type": "O", "frame": 15, "at": 8890.793792065033 }, { "type": "O", "frame": 16, "at": 8890.793792065033 }, { "type": "O", "frame": 21, "at": 8890.793792065033 }, { "type": "O", "frame": 22, "at": 8890.793792065033 }, { "type": "O", "frame": 23, "at": 8890.793792065033 }, { "type": "O", "frame": 24, "at": 8890.793792065033 }, { "type": "O", "frame": 18, "at": 8890.793792065033 }, { "type": "C", "frame": 18, "at": 8900.220334282105 }, { "type": "C", "frame": 24, "at": 8900.220334282105 }, { "type": "C", "frame": 23, "at": 8900.220334282105 }, { "type": "C", "frame": 22, "at": 8900.220334282105 }, { "type": "C", "frame": 21, "at": 8900.220334282105 }, { "type": "O", "frame": 17, "at": 8900.220334282105 }, { "type": "O", "frame": 18, "at": 8900.220334282105 }, { "type": "C", "frame": 18, "at": 8904.325334019073 }, { "type": "C", "frame": 17, "at": 8904.325334019073 }, { "type": "O", "frame": 19, "at": 8904.325334019073 }, { "type": "O", "frame": 18, "at": 8904.325334019073 }, { "type": "C", "frame": 18, "at": 8912.33616678656 }, { "type": "C", "frame": 19, "at": 8912.33616678656 }, { "type": "C", "frame": 16, "at": 8912.336167564576 }, { "type": "C", "frame": 15, "at": 8912.336167564576 }, { "type": "C", "frame": 14, "at": 8912.336167564576 }, { "type": "C", "frame": 13, "at": 8912.336167564576 }, { "type": "C", "frame": 12, "at": 8912.336167564576 }, { "type": "C", "frame": 11, "at": 8912.336167564576 }, { "type": "C", "frame": 10, "at": 8912.336167564576 }, { "type": "C", "frame": 9, "at": 8912.336167564576 }, { "type": "C", "frame": 8, "at": 8912.336167564576 }, { "type": "C", "frame": 20, "at": 8912.336167564576 }, { "type": "O", "frame": 6, "at": 8912.336167564576 }, { "type": "O", "frame": 7, "at": 8912.336167564576 }, { "type": "O", "frame": 8, "at": 8912.336167564576 }, { "type": "O", "frame": 9, "at": 8912.336167564576 }, { "type": "O", "frame": 10, "at": 8912.336167564576 }, { "type": "O", "frame": 11, "at": 8912.336167564576 }, { "type": "O", "frame": 12, "at": 8912.336167564576 }, { "type": "O", "frame": 13, "at": 8912.336167564576 }, { "type": "O", "frame": 14, "at": 8912.336167564576 }, { "type": "O", "frame": 15, "at": 8912.336167564576 }, { "type": "O", "frame": 16, "at": 8912.336167564576 }, { "type": "O", "frame": 21, "at": 8912.336167564576 }, { "type": "O", "frame": 22, "at": 8912.336167564576 }, { "type": "O", "frame": 23, "at": 8912.336167564576 }, { "type": "O", "frame": 24, "at": 8912.336167564576 }, { "type": "O", "frame": 18, "at": 8912.336167564576 }, { "type": "C", "frame": 18, "at": 8920.40654148883 }, { "type": "C", "frame": 24, "at": 8920.40654148883 }, { "type": "C", "frame": 23, "at": 8920.40654148883 }, { "type": "C", "frame": 22, "at": 8920.40654148883 }, { "type": "C", "frame": 21, "at": 8920.40654148883 }, { "type": "O", "frame": 17, "at": 8920.406542 }, { "type": "O", "frame": 18, "at": 8920.406542 }, { "type": "C", "frame": 18, "at": 8925.881624874299 }, { "type": "C", "frame": 17, "at": 8925.881624874299 }, { "type": "O", "frame": 19, "at": 8925.881625 }, { "type": "O", "frame": 18, "at": 8925.881625 }, { "type": "C", "frame": 18, "at": 8927.222250047684 }, { "type": "C", "frame": 19, "at": 8927.222250047684 }, { "type": "C", "frame": 16, "at": 8927.222250047684 }, { "type": "C", "frame": 15, "at": 8927.222250047684 }, { "type": "C", "frame": 14, "at": 8927.222250047684 }, { "type": "C", "frame": 13, "at": 8927.222250047684 }, { "type": "C", "frame": 12, "at": 8927.222250047684 }, { "type": "C", "frame": 11, "at": 8927.222250047684 }, { "type": "C", "frame": 10, "at": 8927.222250047684 }, { "type": "C", "frame": 9, "at": 8927.222250047684 }, { "type": "C", "frame": 8, "at": 8927.222250047684 }, { "type": "C", "frame": 7, "at": 8927.222250047684 }, { "type": "C", "frame": 6, "at": 8927.222250047684 }, { "type": "O", "frame": 20, "at": 8927.222250047684 }, { "type": "O", "frame": 8, "at": 8927.222250047684 }, { "type": "O", "frame": 9, "at": 8927.222250047684 }, { "type": "O", "frame": 10, "at": 8927.222250047684 }, { "type": "O", "frame": 11, "at": 8927.222250047684 }, { "type": "O", "frame": 12, "at": 8927.222250047684 }, { "type": "O", "frame": 13, "at": 8927.222250047684 }, { "type": "O", "frame": 14, "at": 8927.222250047684 }, { "type": "O", "frame": 15, "at": 8927.222250047684 }, { "type": "O", "frame": 16, "at": 8927.222250047684 }, { "type": "O", "frame": 21, "at": 8927.222250047684 }, { "type": "O", "frame": 22, "at": 8927.222250047684 }, { "type": "O", "frame": 23, "at": 8927.222250047684 }, { "type": "O", "frame": 24, "at": 8927.222250047684 }, { "type": "O", "frame": 18, "at": 8927.222250047684 }, { "type": "C", "frame": 18, "at": 8935.282875076295 }, { "type": "C", "frame": 24, "at": 8935.282875076295 }, { "type": "C", "frame": 23, "at": 8935.282875076295 }, { "type": "C", "frame": 22, "at": 8935.282875076295 }, { "type": "C", "frame": 21, "at": 8935.282875076295 }, { "type": "O", "frame": 17, "at": 8935.282875076295 }, { "type": "O", "frame": 18, "at": 8935.282875076295 }, { "type": "C", "frame": 18, "at": 8940.96687501526 }, { "type": "C", "frame": 17, "at": 8940.96687501526 }, { "type": "O", "frame": 19, "at": 8940.96687501526 }, { "type": "O", "frame": 18, "at": 8940.96687501526 }, { "type": "C", "frame": 18, "at": 8947.673917217255 }, { "type": "C", "frame": 19, "at": 8947.673917217255 }, { "type": "C", "frame": 16, "at": 8947.673917785645 }, { "type": "C", "frame": 15, "at": 8947.673917785645 }, { "type": "C", "frame": 14, "at": 8947.673917785645 }, { "type": "C", "frame": 13, "at": 8947.673917785645 }, { "type": "C", "frame": 12, "at": 8947.673917785645 }, { "type": "C", "frame": 11, "at": 8947.673917785645 }, { "type": "C", "frame": 10, "at": 8947.673917785645 }, { "type": "C", "frame": 9, "at": 8947.673917785645 }, { "type": "C", "frame": 8, "at": 8947.673917785645 }, { "type": "C", "frame": 20, "at": 8947.673917785645 }, { "type": "O", "frame": 6, "at": 8947.673917785645 }, { "type": "O", "frame": 7, "at": 8947.673917785645 }, { "type": "O", "frame": 8, "at": 8947.673917785645 }, { "type": "O", "frame": 9, "at": 8947.673917785645 }, { "type": "O", "frame": 10, "at": 8947.673917785645 }, { "type": "O", "frame": 11, "at": 8947.673917785645 }, { "type": "O", "frame": 12, "at": 8947.673917785645 }, { "type": "O", "frame": 13, "at": 8947.673917785645 }, { "type": "O", "frame": 14, "at": 8947.673917785645 }, { "type": "O", "frame": 15, "at": 8947.673917785645 }, { "type": "O", "frame": 16, "at": 8947.673917785645 }, { "type": "O", "frame": 21, "at": 8947.673917785645 }, { "type": "O", "frame": 22, "at": 8947.673917785645 }, { "type": "O", "frame": 23, "at": 8947.673917785645 }, { "type": "O", "frame": 24, "at": 8947.673917785645 }, { "type": "O", "frame": 18, "at": 8947.673917785645 }, { "type": "C", "frame": 18, "at": 8955.743749801819 }, { "type": "C", "frame": 24, "at": 8955.743749801819 }, { "type": "C", "frame": 23, "at": 8955.743749801819 }, { "type": "C", "frame": 22, "at": 8955.743749801819 }, { "type": "C", "frame": 21, "at": 8955.743749801819 }, { "type": "O", "frame": 17, "at": 8955.74375 }, { "type": "O", "frame": 18, "at": 8955.74375 }, { "type": "C", "frame": 18, "at": 8961.213500404358 }, { "type": "C", "frame": 17, "at": 8961.213500404358 }, { "type": "O", "frame": 19, "at": 8961.213500404358 }, { "type": "O", "frame": 18, "at": 8961.213500404358 }, { "type": "C", "frame": 18, "at": 8962.55879197216 }, { "type": "C", "frame": 19, "at": 8962.55879197216 }, { "type": "C", "frame": 16, "at": 8962.55879197216 }, { "type": "C", "frame": 15, "at": 8962.55879197216 }, { "type": "C", "frame": 14, "at": 8962.55879197216 }, { "type": "C", "frame": 13, "at": 8962.55879197216 }, { "type": "C", "frame": 12, "at": 8962.55879197216 }, { "type": "C", "frame": 11, "at": 8962.55879197216 }, { "type": "C", "frame": 10, "at": 8962.55879197216 }, { "type": "C", "frame": 9, "at": 8962.55879197216 }, { "type": "C", "frame": 8, "at": 8962.55879197216 }, { "type": "C", "frame": 7, "at": 8962.55879197216 }, { "type": "C", "frame": 6, "at": 8962.55879197216 }, { "type": "O", "frame": 20, "at": 8962.558792 }, { "type": "O", "frame": 8, "at": 8962.558792 }, { "type": "O", "frame": 9, "at": 8962.558792 }, { "type": "O", "frame": 10, "at": 8962.558792 }, { "type": "O", "frame": 11, "at": 8962.558792 }, { "type": "O", "frame": 12, "at": 8962.558792 }, { "type": "O", "frame": 13, "at": 8962.558792 }, { "type": "O", "frame": 14, "at": 8962.558792 }, { "type": "O", "frame": 15, "at": 8962.558792 }, { "type": "O", "frame": 16, "at": 8962.558792 }, { "type": "O", "frame": 21, "at": 8962.558792 }, { "type": "O", "frame": 22, "at": 8962.558792 }, { "type": "O", "frame": 23, "at": 8962.558792 }, { "type": "O", "frame": 24, "at": 8962.558792 }, { "type": "O", "frame": 18, "at": 8962.558792 }, { "type": "C", "frame": 18, "at": 8971.987292175476 }, { "type": "C", "frame": 24, "at": 8971.987292175476 }, { "type": "C", "frame": 23, "at": 8971.987292175476 }, { "type": "C", "frame": 22, "at": 8971.987292175476 }, { "type": "C", "frame": 21, "at": 8971.987292175476 }, { "type": "O", "frame": 17, "at": 8971.987292175476 }, { "type": "O", "frame": 18, "at": 8971.987292175476 }, { "type": "C", "frame": 18, "at": 8976.074208923523 }, { "type": "C", "frame": 17, "at": 8976.074208923523 }, { "type": "O", "frame": 19, "at": 8976.074209 }, { "type": "O", "frame": 18, "at": 8976.074209 }, { "type": "C", "frame": 18, "at": 8984.07312514914 }, { "type": "C", "frame": 19, "at": 8984.07312514914 }, { "type": "C", "frame": 16, "at": 8984.07312514914 }, { "type": "C", "frame": 15, "at": 8984.07312514914 }, { "type": "C", "frame": 14, "at": 8984.07312514914 }, { "type": "C", "frame": 13, "at": 8984.07312514914 }, { "type": "C", "frame": 12, "at": 8984.07312514914 }, { "type": "C", "frame": 11, "at": 8984.07312514914 }, { "type": "C", "frame": 10, "at": 8984.07312514914 }, { "type": "C", "frame": 9, "at": 8984.07312514914 }, { "type": "C", "frame": 8, "at": 8984.07312514914 }, { "type": "C", "frame": 20, "at": 8984.07312514914 }, { "type": "O", "frame": 6, "at": 8984.07312514914 }, { "type": "O", "frame": 7, "at": 8984.07312514914 }, { "type": "O", "frame": 8, "at": 8984.07312514914 }, { "type": "O", "frame": 9, "at": 8984.07312514914 }, { "type": "O", "frame": 10, "at": 8984.07312514914 }, { "type": "O", "frame": 11, "at": 8984.07312514914 }, { "type": "O", "frame": 12, "at": 8984.07312514914 }, { "type": "O", "frame": 13, "at": 8984.07312514914 }, { "type": "O", "frame": 14, "at": 8984.07312514914 }, { "type": "O", "frame": 15, "at": 8984.07312514914 }, { "type": "O", "frame": 16, "at": 8984.07312514914 }, { "type": "O", "frame": 21, "at": 8984.07312514914 }, { "type": "O", "frame": 22, "at": 8984.07312514914 }, { "type": "O", "frame": 23, "at": 8984.07312514914 }, { "type": "O", "frame": 24, "at": 8984.07312514914 }, { "type": "O", "frame": 18, "at": 8984.07312514914 }, { "type": "C", "frame": 18, "at": 8992.145291442872 }, { "type": "C", "frame": 24, "at": 8992.145291442872 }, { "type": "C", "frame": 23, "at": 8992.145291442872 }, { "type": "C", "frame": 22, "at": 8992.145291442872 }, { "type": "C", "frame": 21, "at": 8992.145291442872 }, { "type": "O", "frame": 17, "at": 8992.145292 }, { "type": "O", "frame": 18, "at": 8992.145292 }, { "type": "C", "frame": 18, "at": 8997.639875129882 }, { "type": "C", "frame": 17, "at": 8997.639875129882 }, { "type": "O", "frame": 19, "at": 8997.639875129882 }, { "type": "O", "frame": 18, "at": 8997.639875129882 }, { "type": "C", "frame": 18, "at": 8998.977709000588 }, { "type": "C", "frame": 19, "at": 8998.977709000588 }, { "type": "C", "frame": 16, "at": 8998.977709000588 }, { "type": "C", "frame": 15, "at": 8998.977709000588 }, { "type": "C", "frame": 14, "at": 8998.977709000588 }, { "type": "C", "frame": 13, "at": 8998.977709000588 }, { "type": "C", "frame": 12, "at": 8998.977709000588 }, { "type": "C", "frame": 11, "at": 8998.977709000588 }, { "type": "C", "frame": 10, "at": 8998.977709000588 }, { "type": "C", "frame": 9, "at": 8998.977709000588 }, { "type": "C", "frame": 8, "at": 8998.977709000588 }, { "type": "C", "frame": 7, "at": 8998.977709000588 }, { "type": "C", "frame": 6, "at": 8998.977709000588 }, { "type": "O", "frame": 20, "at": 8998.977709000588 }, { "type": "O", "frame": 8, "at": 8998.977709000588 }, { "type": "O", "frame": 9, "at": 8998.977709000588 }, { "type": "O", "frame": 10, "at": 8998.977709000588 }, { "type": "O", "frame": 11, "at": 8998.977709000588 }, { "type": "O", "frame": 12, "at": 8998.977709000588 }, { "type": "O", "frame": 13, "at": 8998.977709000588 }, { "type": "O", "frame": 14, "at": 8998.977709000588 }, { "type": "O", "frame": 15, "at": 8998.977709000588 }, { "type": "O", "frame": 16, "at": 8998.977709000588 }, { "type": "O", "frame": 21, "at": 8998.977709000588 }, { "type": "O", "frame": 22, "at": 8998.977709000588 }, { "type": "O", "frame": 23, "at": 8998.977709000588 }, { "type": "O", "frame": 24, "at": 8998.977709000588 }, { "type": "O", "frame": 18, "at": 8998.977709000588 }, { "type": "C", "frame": 18, "at": 9003.007000152955 }, { "type": "C", "frame": 24, "at": 9003.007000152955 }, { "type": "O", "frame": 28, "at": 9003.007000152955 }, { "type": "O", "frame": 18, "at": 9003.007000152955 }, { "type": "C", "frame": 18, "at": 9004.351709038734 }, { "type": "C", "frame": 28, "at": 9004.351709038734 }, { "type": "O", "frame": 24, "at": 9004.351709038734 }, { "type": "O", "frame": 18, "at": 9004.351709038734 }, { "type": "C", "frame": 18, "at": 9008.387042156586 }, { "type": "C", "frame": 24, "at": 9008.387042156586 }, { "type": "C", "frame": 23, "at": 9008.387042229066 }, { "type": "C", "frame": 22, "at": 9008.387042229066 }, { "type": "C", "frame": 21, "at": 9008.387042229066 }, { "type": "O", "frame": 17, "at": 9008.387042229066 }, { "type": "O", "frame": 18, "at": 9008.387042229066 }, { "type": "C", "frame": 18, "at": 9012.547666980927 }, { "type": "C", "frame": 17, "at": 9012.547666980927 }, { "type": "O", "frame": 19, "at": 9012.547667 }, { "type": "O", "frame": 18, "at": 9012.547667 }, { "type": "C", "frame": 18, "at": 9020.600874397462 }, { "type": "C", "frame": 19, "at": 9020.600874397462 }, { "type": "C", "frame": 16, "at": 9020.600876037965 }, { "type": "C", "frame": 15, "at": 9020.600876037965 }, { "type": "C", "frame": 14, "at": 9020.600876037965 }, { "type": "C", "frame": 13, "at": 9020.600876037965 }, { "type": "C", "frame": 12, "at": 9020.600876037965 }, { "type": "C", "frame": 11, "at": 9020.600876037965 }, { "type": "C", "frame": 10, "at": 9020.600876037965 }, { "type": "C", "frame": 9, "at": 9020.600876037965 }, { "type": "C", "frame": 8, "at": 9020.600876037965 }, { "type": "C", "frame": 20, "at": 9020.600876037965 }, { "type": "O", "frame": 6, "at": 9020.600876037965 }, { "type": "O", "frame": 7, "at": 9020.600876037965 }, { "type": "O", "frame": 8, "at": 9020.600876037965 }, { "type": "O", "frame": 9, "at": 9020.600876037965 }, { "type": "O", "frame": 10, "at": 9020.600876037965 }, { "type": "O", "frame": 11, "at": 9020.600876037965 }, { "type": "O", "frame": 12, "at": 9020.600876037965 }, { "type": "O", "frame": 13, "at": 9020.600876037965 }, { "type": "O", "frame": 14, "at": 9020.600876037965 }, { "type": "O", "frame": 15, "at": 9020.600876037965 }, { "type": "O", "frame": 16, "at": 9020.600876037965 }, { "type": "O", "frame": 21, "at": 9020.600876037965 }, { "type": "O", "frame": 22, "at": 9020.600876037965 }, { "type": "O", "frame": 23, "at": 9020.600876037965 }, { "type": "O", "frame": 24, "at": 9020.600876037965 }, { "type": "O", "frame": 18, "at": 9020.600876037965 }, { "type": "C", "frame": 18, "at": 9028.677374938965 }, { "type": "C", "frame": 24, "at": 9028.677374938965 }, { "type": "C", "frame": 23, "at": 9028.677374938965 }, { "type": "C", "frame": 22, "at": 9028.677374938965 }, { "type": "C", "frame": 21, "at": 9028.677374938965 }, { "type": "O", "frame": 17, "at": 9028.677375 }, { "type": "O", "frame": 18, "at": 9028.677375 }, { "type": "C", "frame": 18, "at": 9032.825541656493 }, { "type": "C", "frame": 17, "at": 9032.825541656493 }, { "type": "O", "frame": 19, "at": 9032.825542 }, { "type": "O", "frame": 18, "at": 9032.825542 }, { "type": "C", "frame": 18, "at": 9040.846749809449 }, { "type": "C", "frame": 19, "at": 9040.846749809449 }, { "type": "C", "frame": 16, "at": 9040.846749809449 }, { "type": "C", "frame": 15, "at": 9040.846749809449 }, { "type": "C", "frame": 14, "at": 9040.846749809449 }, { "type": "C", "frame": 13, "at": 9040.846749809449 }, { "type": "C", "frame": 12, "at": 9040.846749809449 }, { "type": "C", "frame": 11, "at": 9040.846749809449 }, { "type": "C", "frame": 10, "at": 9040.846749809449 }, { "type": "C", "frame": 9, "at": 9040.846749809449 }, { "type": "C", "frame": 8, "at": 9040.846749809449 }, { "type": "C", "frame": 7, "at": 9040.846749809449 }, { "type": "C", "frame": 6, "at": 9040.846749809449 }, { "type": "O", "frame": 20, "at": 9040.84675 }, { "type": "O", "frame": 8, "at": 9040.84675 }, { "type": "O", "frame": 9, "at": 9040.84675 }, { "type": "O", "frame": 10, "at": 9040.84675 }, { "type": "O", "frame": 11, "at": 9040.84675 }, { "type": "O", "frame": 12, "at": 9040.84675 }, { "type": "O", "frame": 13, "at": 9040.84675 }, { "type": "O", "frame": 14, "at": 9040.84675 }, { "type": "O", "frame": 15, "at": 9040.84675 }, { "type": "O", "frame": 16, "at": 9040.84675 }, { "type": "O", "frame": 21, "at": 9040.84675 }, { "type": "O", "frame": 22, "at": 9040.84675 }, { "type": "O", "frame": 23, "at": 9040.84675 }, { "type": "O", "frame": 24, "at": 9040.84675 }, { "type": "O", "frame": 18, "at": 9040.84675 }, { "type": "C", "frame": 18, "at": 9043.535208919526 }, { "type": "C", "frame": 24, "at": 9043.535208919526 }, { "type": "O", "frame": 38, "at": 9043.535209 }, { "type": "O", "frame": 18, "at": 9043.535209 }, { "type": "C", "frame": 18, "at": 9044.886042058357 }, { "type": "C", "frame": 38, "at": 9044.886042058357 }, { "type": "O", "frame": 24, "at": 9044.886042058357 }, { "type": "O", "frame": 18, "at": 9044.886042058357 }, { "type": "C", "frame": 18, "at": 9050.2516254198 }, { "type": "C", "frame": 24, "at": 9050.2516254198 }, { "type": "C", "frame": 23, "at": 9050.2516254198 }, { "type": "C", "frame": 22, "at": 9050.2516254198 }, { "type": "C", "frame": 21, "at": 9050.2516254198 }, { "type": "O", "frame": 17, "at": 9050.2516254198 }, { "type": "O", "frame": 18, "at": 9050.2516254198 }, { "type": "C", "frame": 18, "at": 9054.349124847413 }, { "type": "C", "frame": 17, "at": 9054.349124847413 }, { "type": "O", "frame": 19, "at": 9054.349125 }, { "type": "O", "frame": 18, "at": 9054.349125 }, { "type": "C", "frame": 18, "at": 9055.704709025384 }, { "type": "C", "frame": 19, "at": 9055.704709025384 }, { "type": "C", "frame": 16, "at": 9055.704709025384 }, { "type": "C", "frame": 15, "at": 9055.704709025384 }, { "type": "C", "frame": 14, "at": 9055.704709025384 }, { "type": "C", "frame": 13, "at": 9055.704709025384 }, { "type": "C", "frame": 12, "at": 9055.704709025384 }, { "type": "C", "frame": 11, "at": 9055.704709025384 }, { "type": "C", "frame": 10, "at": 9055.704709025384 }, { "type": "C", "frame": 9, "at": 9055.704709025384 }, { "type": "C", "frame": 8, "at": 9055.704709025384 }, { "type": "C", "frame": 20, "at": 9055.704709025384 }, { "type": "O", "frame": 6, "at": 9055.704709025384 }, { "type": "O", "frame": 7, "at": 9055.704709025384 }, { "type": "O", "frame": 8, "at": 9055.704709025384 }, { "type": "O", "frame": 9, "at": 9055.704709025384 }, { "type": "O", "frame": 10, "at": 9055.704709025384 }, { "type": "O", "frame": 11, "at": 9055.704709025384 }, { "type": "O", "frame": 12, "at": 9055.704709025384 }, { "type": "O", "frame": 13, "at": 9055.704709025384 }, { "type": "O", "frame": 14, "at": 9055.704709025384 }, { "type": "O", "frame": 15, "at": 9055.704709025384 }, { "type": "O", "frame": 16, "at": 9055.704709025384 }, { "type": "O", "frame": 21, "at": 9055.704709025384 }, { "type": "O", "frame": 22, "at": 9055.704709025384 }, { "type": "O", "frame": 23, "at": 9055.704709025384 }, { "type": "O", "frame": 24, "at": 9055.704709025384 }, { "type": "O", "frame": 18, "at": 9055.704709025384 }, { "type": "C", "frame": 18, "at": 9062.451167053589 }, { "type": "C", "frame": 24, "at": 9062.451167053589 }, { "type": "O", "frame": 29, "at": 9062.451167053589 }, { "type": "O", "frame": 18, "at": 9062.451167053589 }, { "type": "C", "frame": 18, "at": 9065.14212502307 }, { "type": "C", "frame": 29, "at": 9065.14212502307 }, { "type": "C", "frame": 23, "at": 9065.14212507666 }, { "type": "C", "frame": 22, "at": 9065.14212507666 }, { "type": "C", "frame": 21, "at": 9065.14212507666 }, { "type": "O", "frame": 17, "at": 9065.14212507666 }, { "type": "O", "frame": 18, "at": 9065.14212507666 }, { "type": "C", "frame": 18, "at": 9069.311209072113 }, { "type": "C", "frame": 17, "at": 9069.311209072113 }, { "type": "O", "frame": 19, "at": 9069.311209072113 }, { "type": "O", "frame": 18, "at": 9069.311209072113 }, { "type": "C", "frame": 18, "at": 9077.316458977111 }, { "type": "C", "frame": 19, "at": 9077.316458977111 }, { "type": "C", "frame": 16, "at": 9077.316458977111 }, { "type": "C", "frame": 15, "at": 9077.316458977111 }, { "type": "C", "frame": 14, "at": 9077.316458977111 }, { "type": "C", "frame": 13, "at": 9077.316458977111 }, { "type": "C", "frame": 12, "at": 9077.316458977111 }, { "type": "C", "frame": 11, "at": 9077.316458977111 }, { "type": "C", "frame": 10, "at": 9077.316458977111 }, { "type": "C", "frame": 9, "at": 9077.316458977111 }, { "type": "C", "frame": 8, "at": 9077.316458977111 }, { "type": "C", "frame": 7, "at": 9077.316458977111 }, { "type": "C", "frame": 6, "at": 9077.316458977111 }, { "type": "O", "frame": 20, "at": 9077.316459 }, { "type": "O", "frame": 8, "at": 9077.316459 }, { "type": "O", "frame": 9, "at": 9077.316459 }, { "type": "O", "frame": 10, "at": 9077.316459 }, { "type": "O", "frame": 11, "at": 9077.316459 }, { "type": "O", "frame": 12, "at": 9077.316459 }, { "type": "O", "frame": 13, "at": 9077.316459 }, { "type": "O", "frame": 14, "at": 9077.316459 }, { "type": "O", "frame": 15, "at": 9077.316459 }, { "type": "O", "frame": 16, "at": 9077.316459 }, { "type": "O", "frame": 21, "at": 9077.316459 }, { "type": "O", "frame": 22, "at": 9077.316459 }, { "type": "O", "frame": 23, "at": 9077.316459 }, { "type": "O", "frame": 24, "at": 9077.316459 }, { "type": "O", "frame": 18, "at": 9077.316459 }, { "type": "C", "frame": 18, "at": 9085.380500137695 }, { "type": "C", "frame": 24, "at": 9085.380500137695 }, { "type": "C", "frame": 23, "at": 9085.380500137695 }, { "type": "C", "frame": 22, "at": 9085.380500137695 }, { "type": "C", "frame": 21, "at": 9085.380500137695 }, { "type": "O", "frame": 17, "at": 9085.380500137695 }, { "type": "O", "frame": 18, "at": 9085.380500137695 }, { "type": "C", "frame": 18, "at": 9089.471584003448 }, { "type": "C", "frame": 17, "at": 9089.471584003448 }, { "type": "O", "frame": 19, "at": 9089.471584003448 }, { "type": "O", "frame": 18, "at": 9089.471584003448 }, { "type": "C", "frame": 18, "at": 9092.20566717566 }, { "type": "C", "frame": 19, "at": 9092.20566717566 }, { "type": "C", "frame": 16, "at": 9092.20566717566 }, { "type": "C", "frame": 15, "at": 9092.20566717566 }, { "type": "C", "frame": 14, "at": 9092.20566717566 }, { "type": "C", "frame": 13, "at": 9092.20566717566 }, { "type": "C", "frame": 12, "at": 9092.20566717566 }, { "type": "C", "frame": 11, "at": 9092.20566717566 }, { "type": "C", "frame": 10, "at": 9092.20566717566 }, { "type": "C", "frame": 9, "at": 9092.20566717566 }, { "type": "C", "frame": 8, "at": 9092.20566717566 }, { "type": "C", "frame": 20, "at": 9092.20566717566 }, { "type": "O", "frame": 6, "at": 9092.20566717566 }, { "type": "O", "frame": 7, "at": 9092.20566717566 }, { "type": "O", "frame": 8, "at": 9092.20566717566 }, { "type": "O", "frame": 9, "at": 9092.20566717566 }, { "type": "O", "frame": 10, "at": 9092.20566717566 }, { "type": "O", "frame": 11, "at": 9092.20566717566 }, { "type": "O", "frame": 12, "at": 9092.20566717566 }, { "type": "O", "frame": 13, "at": 9092.20566717566 }, { "type": "O", "frame": 14, "at": 9092.20566717566 }, { "type": "O", "frame": 15, "at": 9092.20566717566 }, { "type": "O", "frame": 16, "at": 9092.20566717566 }, { "type": "O", "frame": 21, "at": 9092.20566717566 }, { "type": "O", "frame": 22, "at": 9092.20566717566 }, { "type": "O", "frame": 23, "at": 9092.20566717566 }, { "type": "O", "frame": 25, "at": 9092.20566717566 }, { "type": "O", "frame": 18, "at": 9092.20566717566 }, { "type": "C", "frame": 18, "at": 9093.54712496299 }, { "type": "C", "frame": 25, "at": 9093.54712496299 }, { "type": "O", "frame": 24, "at": 9093.547125 }, { "type": "O", "frame": 18, "at": 9093.547125 }, { "type": "C", "frame": 18, "at": 9100.269874710082 }, { "type": "C", "frame": 24, "at": 9100.269874710082 }, { "type": "C", "frame": 23, "at": 9100.2698750307 }, { "type": "C", "frame": 22, "at": 9100.2698750307 }, { "type": "C", "frame": 21, "at": 9100.2698750307 }, { "type": "O", "frame": 17, "at": 9100.2698750307 }, { "type": "O", "frame": 18, "at": 9100.2698750307 }, { "type": "C", "frame": 18, "at": 9104.425541828155 }, { "type": "C", "frame": 17, "at": 9104.425541828155 }, { "type": "O", "frame": 19, "at": 9104.425542 }, { "type": "O", "frame": 18, "at": 9104.425542 }, { "type": "C", "frame": 18, "at": 9112.422874572938 }, { "type": "C", "frame": 19, "at": 9112.422874572938 }, { "type": "C", "frame": 16, "at": 9112.422875862305 }, { "type": "C", "frame": 15, "at": 9112.422875862305 }, { "type": "C", "frame": 14, "at": 9112.422875862305 }, { "type": "C", "frame": 13, "at": 9112.422875862305 }, { "type": "C", "frame": 12, "at": 9112.422875862305 }, { "type": "C", "frame": 11, "at": 9112.422875862305 }, { "type": "C", "frame": 10, "at": 9112.422875862305 }, { "type": "C", "frame": 9, "at": 9112.422875862305 }, { "type": "C", "frame": 8, "at": 9112.422875862305 }, { "type": "C", "frame": 7, "at": 9112.422875862305 }, { "type": "C", "frame": 6, "at": 9112.422875862305 }, { "type": "O", "frame": 20, "at": 9112.422875862305 }, { "type": "O", "frame": 8, "at": 9112.422875862305 }, { "type": "O", "frame": 9, "at": 9112.422875862305 }, { "type": "O", "frame": 10, "at": 9112.422875862305 }, { "type": "O", "frame": 11, "at": 9112.422875862305 }, { "type": "O", "frame": 12, "at": 9112.422875862305 }, { "type": "O", "frame": 13, "at": 9112.422875862305 }, { "type": "O", "frame": 14, "at": 9112.422875862305 }, { "type": "O", "frame": 15, "at": 9112.422875862305 }, { "type": "O", "frame": 16, "at": 9112.422875862305 }, { "type": "O", "frame": 21, "at": 9112.422875862305 }, { "type": "O", "frame": 22, "at": 9112.422875862305 }, { "type": "O", "frame": 23, "at": 9112.422875862305 }, { "type": "O", "frame": 24, "at": 9112.422875862305 }, { "type": "O", "frame": 18, "at": 9112.422875862305 }, { "type": "C", "frame": 18, "at": 9121.409792495728 }, { "type": "C", "frame": 24, "at": 9121.409792495728 }, { "type": "C", "frame": 23, "at": 9121.409792495728 }, { "type": "C", "frame": 22, "at": 9121.409792495728 }, { "type": "C", "frame": 21, "at": 9121.409792495728 }, { "type": "O", "frame": 17, "at": 9121.409792495728 }, { "type": "O", "frame": 18, "at": 9121.409792495728 }, { "type": "C", "frame": 18, "at": 9127.060833984558 }, { "type": "C", "frame": 17, "at": 9127.060833984558 }, { "type": "O", "frame": 19, "at": 9127.060834 }, { "type": "O", "frame": 18, "at": 9127.060834 }, { "type": "C", "frame": 18, "at": 9135.12150008429 }, { "type": "C", "frame": 19, "at": 9135.12150008429 }, { "type": "C", "frame": 16, "at": 9135.12150008429 }, { "type": "C", "frame": 15, "at": 9135.12150008429 }, { "type": "C", "frame": 14, "at": 9135.12150008429 }, { "type": "C", "frame": 13, "at": 9135.12150008429 }, { "type": "C", "frame": 12, "at": 9135.12150008429 }, { "type": "C", "frame": 11, "at": 9135.12150008429 }, { "type": "C", "frame": 10, "at": 9135.12150008429 }, { "type": "C", "frame": 9, "at": 9135.12150008429 }, { "type": "C", "frame": 8, "at": 9135.12150008429 }, { "type": "C", "frame": 20, "at": 9135.12150008429 }, { "type": "O", "frame": 6, "at": 9135.12150008429 }, { "type": "O", "frame": 7, "at": 9135.12150008429 }, { "type": "O", "frame": 8, "at": 9135.12150008429 }, { "type": "O", "frame": 9, "at": 9135.12150008429 }, { "type": "O", "frame": 10, "at": 9135.12150008429 }, { "type": "O", "frame": 11, "at": 9135.12150008429 }, { "type": "O", "frame": 12, "at": 9135.12150008429 }, { "type": "O", "frame": 13, "at": 9135.12150008429 }, { "type": "O", "frame": 14, "at": 9135.12150008429 }, { "type": "O", "frame": 15, "at": 9135.12150008429 }, { "type": "O", "frame": 16, "at": 9135.12150008429 }, { "type": "O", "frame": 21, "at": 9135.12150008429 }, { "type": "O", "frame": 22, "at": 9135.12150008429 }, { "type": "O", "frame": 23, "at": 9135.12150008429 }, { "type": "O", "frame": 24, "at": 9135.12150008429 }, { "type": "O", "frame": 18, "at": 9135.12150008429 }, { "type": "C", "frame": 18, "at": 9143.238249763488 }, { "type": "C", "frame": 24, "at": 9143.238249763488 }, { "type": "C", "frame": 23, "at": 9143.238249763488 }, { "type": "C", "frame": 22, "at": 9143.238249763488 }, { "type": "C", "frame": 21, "at": 9143.238249763488 }, { "type": "O", "frame": 17, "at": 9143.23825 }, { "type": "O", "frame": 18, "at": 9143.23825 }, { "type": "C", "frame": 18, "at": 9148.765042049408 }, { "type": "C", "frame": 17, "at": 9148.765042049408 }, { "type": "O", "frame": 19, "at": 9148.765042049408 }, { "type": "O", "frame": 18, "at": 9148.765042049408 }, { "type": "C", "frame": 18, "at": 9150.093833975976 }, { "type": "C", "frame": 19, "at": 9150.093833975976 }, { "type": "C", "frame": 16, "at": 9150.093833975976 }, { "type": "C", "frame": 15, "at": 9150.093833975976 }, { "type": "C", "frame": 14, "at": 9150.093833975976 }, { "type": "C", "frame": 13, "at": 9150.093833975976 }, { "type": "C", "frame": 12, "at": 9150.093833975976 }, { "type": "C", "frame": 11, "at": 9150.093833975976 }, { "type": "C", "frame": 10, "at": 9150.093833975976 }, { "type": "C", "frame": 9, "at": 9150.093833975976 }, { "type": "C", "frame": 8, "at": 9150.093833975976 }, { "type": "C", "frame": 7, "at": 9150.093833975976 }, { "type": "C", "frame": 6, "at": 9150.093833975976 }, { "type": "O", "frame": 20, "at": 9150.093834 }, { "type": "O", "frame": 8, "at": 9150.093834 }, { "type": "O", "frame": 9, "at": 9150.093834 }, { "type": "O", "frame": 10, "at": 9150.093834 }, { "type": "O", "frame": 11, "at": 9150.093834 }, { "type": "O", "frame": 12, "at": 9150.093834 }, { "type": "O", "frame": 13, "at": 9150.093834 }, { "type": "O", "frame": 14, "at": 9150.093834 }, { "type": "O", "frame": 15, "at": 9150.093834 }, { "type": "O", "frame": 16, "at": 9150.093834 }, { "type": "O", "frame": 21, "at": 9150.093834 }, { "type": "O", "frame": 22, "at": 9150.093834 }, { "type": "O", "frame": 23, "at": 9150.093834 }, { "type": "O", "frame": 24, "at": 9150.093834 }, { "type": "O", "frame": 18, "at": 9150.093834 }, { "type": "C", "frame": 18, "at": 9158.159208374389 }, { "type": "C", "frame": 24, "at": 9158.159208374389 }, { "type": "C", "frame": 23, "at": 9158.159208374389 }, { "type": "C", "frame": 22, "at": 9158.159208374389 }, { "type": "C", "frame": 21, "at": 9158.159208374389 }, { "type": "O", "frame": 17, "at": 9158.159209 }, { "type": "O", "frame": 18, "at": 9158.159209 }, { "type": "C", "frame": 18, "at": 9163.639416920074 }, { "type": "C", "frame": 17, "at": 9163.639416920074 }, { "type": "C", "frame": 16, "at": 9163.639416920074 }, { "type": "C", "frame": 15, "at": 9163.639416920074 }, { "type": "C", "frame": 14, "at": 9163.639416920074 }, { "type": "C", "frame": 13, "at": 9163.639416920074 }, { "type": "C", "frame": 12, "at": 9163.639416920074 }, { "type": "C", "frame": 11, "at": 9163.639416920074 }, { "type": "C", "frame": 10, "at": 9163.639416920074 }, { "type": "C", "frame": 9, "at": 9163.639416920074 }, { "type": "C", "frame": 8, "at": 9163.639416920074 }, { "type": "C", "frame": 20, "at": 9163.639416920074 }, { "type": "O", "frame": 6, "at": 9163.639417 }, { "type": "O", "frame": 7, "at": 9163.639417 }, { "type": "O", "frame": 8, "at": 9163.639417 }, { "type": "O", "frame": 9, "at": 9163.639417 }, { "type": "O", "frame": 10, "at": 9163.639417 }, { "type": "O", "frame": 11, "at": 9163.639417 }, { "type": "O", "frame": 12, "at": 9163.639417 }, { "type": "O", "frame": 13, "at": 9163.639417 }, { "type": "O", "frame": 14, "at": 9163.639417 }, { "type": "O", "frame": 15, "at": 9163.639417 }, { "type": "O", "frame": 16, "at": 9163.639417 }, { "type": "O", "frame": 21, "at": 9163.639417 }, { "type": "O", "frame": 22, "at": 9163.639417 }, { "type": "O", "frame": 23, "at": 9163.639417 }, { "type": "O", "frame": 24, "at": 9163.639417 }, { "type": "O", "frame": 18, "at": 9163.639417 }, { "type": "C", "frame": 18, "at": 9164.981834001725 }, { "type": "C", "frame": 24, "at": 9164.981834001725 }, { "type": "O", "frame": 31, "at": 9164.981834001725 }, { "type": "O", "frame": 18, "at": 9164.981834001725 }, { "type": "C", "frame": 18, "at": 9166.32308394278 }, { "type": "C", "frame": 31, "at": 9166.32308394278 }, { "type": "O", "frame": 24, "at": 9166.323084 }, { "type": "O", "frame": 18, "at": 9166.323084 }, { "type": "C", "frame": 18, "at": 9171.698917034515 }, { "type": "C", "frame": 24, "at": 9171.698917034515 }, { "type": "O", "frame": 38, "at": 9171.698917034515 }, { "type": "O", "frame": 18, "at": 9171.698917034515 }, { "type": "C", "frame": 18, "at": 9173.052458970253 }, { "type": "C", "frame": 38, "at": 9173.052458970253 }, { "type": "C", "frame": 23, "at": 9173.052459068482 }, { "type": "C", "frame": 22, "at": 9173.052459068482 }, { "type": "C", "frame": 21, "at": 9173.052459068482 }, { "type": "O", "frame": 17, "at": 9173.052459068482 }, { "type": "O", "frame": 18, "at": 9173.052459068482 }, { "type": "C", "frame": 18, "at": 9177.190624950776 }, { "type": "C", "frame": 17, "at": 9177.190624950776 }, { "type": "O", "frame": 19, "at": 9177.190625 }, { "type": "O", "frame": 18, "at": 9177.190625 }, { "type": "C", "frame": 18, "at": 9185.199125099181 }, { "type": "C", "frame": 19, "at": 9185.199125099181 }, { "type": "C", "frame": 16, "at": 9185.199125099181 }, { "type": "C", "frame": 15, "at": 9185.199125099181 }, { "type": "C", "frame": 14, "at": 9185.199125099181 }, { "type": "C", "frame": 13, "at": 9185.199125099181 }, { "type": "C", "frame": 12, "at": 9185.199125099181 }, { "type": "C", "frame": 11, "at": 9185.199125099181 }, { "type": "C", "frame": 10, "at": 9185.199125099181 }, { "type": "C", "frame": 9, "at": 9185.199125099181 }, { "type": "C", "frame": 8, "at": 9185.199125099181 }, { "type": "C", "frame": 7, "at": 9185.199125099181 }, { "type": "C", "frame": 6, "at": 9185.199125099181 }, { "type": "O", "frame": 20, "at": 9185.199125099181 }, { "type": "O", "frame": 8, "at": 9185.199125099181 }, { "type": "O", "frame": 9, "at": 9185.199125099181 }, { "type": "O", "frame": 10, "at": 9185.199125099181 }, { "type": "O", "frame": 11, "at": 9185.199125099181 }, { "type": "O", "frame": 12, "at": 9185.199125099181 }, { "type": "O", "frame": 13, "at": 9185.199125099181 }, { "type": "O", "frame": 14, "at": 9185.199125099181 }, { "type": "O", "frame": 15, "at": 9185.199125099181 }, { "type": "O", "frame": 16, "at": 9185.199125099181 }, { "type": "O", "frame": 21, "at": 9185.199125099181 }, { "type": "O", "frame": 22, "at": 9185.199125099181 }, { "type": "O", "frame": 23, "at": 9185.199125099181 }, { "type": "O", "frame": 31, "at": 9185.199125099181 }, { "type": "O", "frame": 18, "at": 9185.199125099181 }, { "type": "C", "frame": 18, "at": 9186.542334028243 }, { "type": "C", "frame": 31, "at": 9186.542334028243 }, { "type": "O", "frame": 24, "at": 9186.542334028243 }, { "type": "O", "frame": 18, "at": 9186.542334028243 }, { "type": "C", "frame": 18, "at": 9193.273499885925 }, { "type": "C", "frame": 24, "at": 9193.273499885925 }, { "type": "C", "frame": 23, "at": 9193.273500152587 }, { "type": "C", "frame": 22, "at": 9193.273500152587 }, { "type": "C", "frame": 21, "at": 9193.273500152587 }, { "type": "O", "frame": 17, "at": 9193.273500152587 }, { "type": "O", "frame": 18, "at": 9193.273500152587 }, { "type": "C", "frame": 18, "at": 9198.789083992004 }, { "type": "C", "frame": 17, "at": 9198.789083992004 }, { "type": "O", "frame": 19, "at": 9198.789084 }, { "type": "O", "frame": 18, "at": 9198.789084 }, { "type": "C", "frame": 18, "at": 9200.127666992554 }, { "type": "C", "frame": 19, "at": 9200.127666992554 }, { "type": "C", "frame": 16, "at": 9200.127667137145 }, { "type": "C", "frame": 15, "at": 9200.127667137145 }, { "type": "C", "frame": 14, "at": 9200.127667137145 }, { "type": "C", "frame": 13, "at": 9200.127667137145 }, { "type": "C", "frame": 12, "at": 9200.127667137145 }, { "type": "C", "frame": 11, "at": 9200.127667137145 }, { "type": "C", "frame": 10, "at": 9200.127667137145 }, { "type": "C", "frame": 9, "at": 9200.127667137145 }, { "type": "C", "frame": 8, "at": 9200.127667137145 }, { "type": "C", "frame": 20, "at": 9200.127667137145 }, { "type": "O", "frame": 6, "at": 9200.127667137145 }, { "type": "O", "frame": 7, "at": 9200.127667137145 }, { "type": "O", "frame": 8, "at": 9200.127667137145 }, { "type": "O", "frame": 9, "at": 9200.127667137145 }, { "type": "O", "frame": 10, "at": 9200.127667137145 }, { "type": "O", "frame": 11, "at": 9200.127667137145 }, { "type": "O", "frame": 12, "at": 9200.127667137145 }, { "type": "O", "frame": 13, "at": 9200.127667137145 }, { "type": "O", "frame": 14, "at": 9200.127667137145 }, { "type": "O", "frame": 15, "at": 9200.127667137145 }, { "type": "O", "frame": 16, "at": 9200.127667137145 }, { "type": "O", "frame": 21, "at": 9200.127667137145 }, { "type": "O", "frame": 22, "at": 9200.127667137145 }, { "type": "O", "frame": 23, "at": 9200.127667137145 }, { "type": "O", "frame": 24, "at": 9200.127667137145 }, { "type": "O", "frame": 18, "at": 9200.127667137145 }, { "type": "C", "frame": 18, "at": 9209.555000831788 }, { "type": "C", "frame": 24, "at": 9209.555000831788 }, { "type": "C", "frame": 23, "at": 9209.555000831788 }, { "type": "C", "frame": 22, "at": 9209.555000831788 }, { "type": "C", "frame": 21, "at": 9209.555000831788 }, { "type": "O", "frame": 17, "at": 9209.555000831788 }, { "type": "O", "frame": 18, "at": 9209.555000831788 }, { "type": "C", "frame": 18, "at": 9213.680417232514 }, { "type": "C", "frame": 17, "at": 9213.680417232514 }, { "type": "O", "frame": 19, "at": 9213.680417232514 }, { "type": "O", "frame": 18, "at": 9213.680417232514 }, { "type": "C", "frame": 18, "at": 9220.36204236621 }, { "type": "C", "frame": 19, "at": 9220.36204236621 }, { "type": "C", "frame": 16, "at": 9220.36204236621 }, { "type": "C", "frame": 15, "at": 9220.36204236621 }, { "type": "C", "frame": 14, "at": 9220.36204236621 }, { "type": "C", "frame": 13, "at": 9220.36204236621 }, { "type": "C", "frame": 12, "at": 9220.36204236621 }, { "type": "C", "frame": 11, "at": 9220.36204236621 }, { "type": "C", "frame": 10, "at": 9220.36204236621 }, { "type": "C", "frame": 9, "at": 9220.36204236621 }, { "type": "C", "frame": 8, "at": 9220.36204236621 }, { "type": "C", "frame": 7, "at": 9220.36204236621 }, { "type": "C", "frame": 6, "at": 9220.36204236621 }, { "type": "O", "frame": 20, "at": 9220.36204236621 }, { "type": "O", "frame": 8, "at": 9220.36204236621 }, { "type": "O", "frame": 9, "at": 9220.36204236621 }, { "type": "O", "frame": 10, "at": 9220.36204236621 }, { "type": "O", "frame": 11, "at": 9220.36204236621 }, { "type": "O", "frame": 12, "at": 9220.36204236621 }, { "type": "O", "frame": 13, "at": 9220.36204236621 }, { "type": "O", "frame": 14, "at": 9220.36204236621 }, { "type": "O", "frame": 15, "at": 9220.36204236621 }, { "type": "O", "frame": 16, "at": 9220.36204236621 }, { "type": "O", "frame": 21, "at": 9220.36204236621 }, { "type": "O", "frame": 22, "at": 9220.36204236621 }, { "type": "O", "frame": 23, "at": 9220.36204236621 }, { "type": "O", "frame": 25, "at": 9220.36204236621 }, { "type": "O", "frame": 18, "at": 9220.36204236621 }, { "type": "C", "frame": 18, "at": 9221.711834003632 }, { "type": "C", "frame": 25, "at": 9221.711834003632 }, { "type": "O", "frame": 24, "at": 9221.711834003632 }, { "type": "O", "frame": 18, "at": 9221.711834003632 }, { "type": "C", "frame": 18, "at": 9229.770208404907 }, { "type": "C", "frame": 24, "at": 9229.770208404907 }, { "type": "C", "frame": 23, "at": 9229.770209839051 }, { "type": "C", "frame": 22, "at": 9229.770209839051 }, { "type": "C", "frame": 21, "at": 9229.770209839051 }, { "type": "O", "frame": 17, "at": 9229.770209839051 }, { "type": "O", "frame": 18, "at": 9229.770209839051 }, { "type": "C", "frame": 18, "at": 9235.25299994696 }, { "type": "C", "frame": 17, "at": 9235.25299994696 }, { "type": "O", "frame": 19, "at": 9235.253 }, { "type": "O", "frame": 18, "at": 9235.253 }, { "type": "C", "frame": 18, "at": 9236.598291972161 }, { "type": "C", "frame": 19, "at": 9236.598291972161 }, { "type": "C", "frame": 16, "at": 9236.598291972161 }, { "type": "C", "frame": 15, "at": 9236.598291972161 }, { "type": "C", "frame": 14, "at": 9236.598291972161 }, { "type": "C", "frame": 13, "at": 9236.598291972161 }, { "type": "C", "frame": 12, "at": 9236.598291972161 }, { "type": "C", "frame": 11, "at": 9236.598291972161 }, { "type": "C", "frame": 10, "at": 9236.598291972161 }, { "type": "C", "frame": 9, "at": 9236.598291972161 }, { "type": "C", "frame": 8, "at": 9236.598291972161 }, { "type": "O", "frame": 18, "at": 9236.598292 }, { "type": "C", "frame": 18, "at": 9237.948917038148 }, { "type": "C", "frame": 20, "at": 9237.948917915528 }, { "type": "O", "frame": 6, "at": 9237.948917915528 }, { "type": "O", "frame": 7, "at": 9237.948917915528 }, { "type": "O", "frame": 8, "at": 9237.948917915528 }, { "type": "O", "frame": 9, "at": 9237.948917915528 }, { "type": "O", "frame": 10, "at": 9237.948917915528 }, { "type": "O", "frame": 11, "at": 9237.948917915528 }, { "type": "O", "frame": 12, "at": 9237.948917915528 }, { "type": "O", "frame": 13, "at": 9237.948917915528 }, { "type": "O", "frame": 14, "at": 9237.948917915528 }, { "type": "O", "frame": 15, "at": 9237.948917915528 }, { "type": "O", "frame": 16, "at": 9237.948917915528 }, { "type": "O", "frame": 21, "at": 9237.948917915528 }, { "type": "O", "frame": 22, "at": 9237.948917915528 }, { "type": "O", "frame": 23, "at": 9237.948917915528 }, { "type": "O", "frame": 24, "at": 9237.948917915528 }, { "type": "O", "frame": 18, "at": 9237.948917915528 }, { "type": "C", "frame": 18, "at": 9246.048334686462 }, { "type": "C", "frame": 24, "at": 9246.048334686462 }, { "type": "O", "frame": 26, "at": 9246.048334686462 }, { "type": "O", "frame": 18, "at": 9246.048334686462 }, { "type": "C", "frame": 18, "at": 9247.40687501181 }, { "type": "C", "frame": 26, "at": 9247.40687501181 }, { "type": "C", "frame": 23, "at": 9247.406875221435 }, { "type": "C", "frame": 22, "at": 9247.406875221435 }, { "type": "C", "frame": 21, "at": 9247.406875221435 }, { "type": "O", "frame": 17, "at": 9247.406875221435 }, { "type": "O", "frame": 18, "at": 9247.406875221435 }, { "type": "C", "frame": 18, "at": 9251.519209251404 }, { "type": "C", "frame": 17, "at": 9251.519209251404 }, { "type": "O", "frame": 19, "at": 9251.519209251404 }, { "type": "O", "frame": 18, "at": 9251.519209251404 }, { "type": "C", "frame": 18, "at": 9259.591709228882 }, { "type": "C", "frame": 19, "at": 9259.591709228882 }, { "type": "C", "frame": 16, "at": 9259.591709228882 }, { "type": "C", "frame": 15, "at": 9259.591709228882 }, { "type": "C", "frame": 14, "at": 9259.591709228882 }, { "type": "C", "frame": 13, "at": 9259.591709228882 }, { "type": "C", "frame": 12, "at": 9259.591709228882 }, { "type": "C", "frame": 11, "at": 9259.591709228882 }, { "type": "C", "frame": 10, "at": 9259.591709228882 }, { "type": "C", "frame": 9, "at": 9259.591709228882 }, { "type": "C", "frame": 8, "at": 9259.591709228882 }, { "type": "C", "frame": 7, "at": 9259.591709228882 }, { "type": "C", "frame": 6, "at": 9259.591709228882 }, { "type": "O", "frame": 20, "at": 9259.591709228882 }, { "type": "O", "frame": 8, "at": 9259.591709228882 }, { "type": "O", "frame": 9, "at": 9259.591709228882 }, { "type": "O", "frame": 10, "at": 9259.591709228882 }, { "type": "O", "frame": 11, "at": 9259.591709228882 }, { "type": "O", "frame": 12, "at": 9259.591709228882 }, { "type": "O", "frame": 13, "at": 9259.591709228882 }, { "type": "O", "frame": 14, "at": 9259.591709228882 }, { "type": "O", "frame": 15, "at": 9259.591709228882 }, { "type": "O", "frame": 16, "at": 9259.591709228882 }, { "type": "O", "frame": 21, "at": 9259.591709228882 }, { "type": "O", "frame": 22, "at": 9259.591709228882 }, { "type": "O", "frame": 23, "at": 9259.591709228882 }, { "type": "O", "frame": 24, "at": 9259.591709228882 }, { "type": "O", "frame": 18, "at": 9259.591709228882 }, { "type": "C", "frame": 18, "at": 9267.653499466309 }, { "type": "C", "frame": 24, "at": 9267.653499466309 }, { "type": "C", "frame": 23, "at": 9267.653499466309 }, { "type": "C", "frame": 22, "at": 9267.653499466309 }, { "type": "C", "frame": 21, "at": 9267.653499466309 }, { "type": "O", "frame": 17, "at": 9267.6535 }, { "type": "O", "frame": 18, "at": 9267.6535 }, { "type": "C", "frame": 18, "at": 9271.80324975586 }, { "type": "C", "frame": 17, "at": 9271.80324975586 }, { "type": "O", "frame": 19, "at": 9271.80325 }, { "type": "O", "frame": 18, "at": 9271.80325 }, { "type": "C", "frame": 18, "at": 9273.134959027291 }, { "type": "C", "frame": 19, "at": 9273.134959027291 }, { "type": "C", "frame": 16, "at": 9273.134959027291 }, { "type": "C", "frame": 15, "at": 9273.134959027291 }, { "type": "C", "frame": 14, "at": 9273.134959027291 }, { "type": "C", "frame": 13, "at": 9273.134959027291 }, { "type": "C", "frame": 12, "at": 9273.134959027291 }, { "type": "C", "frame": 11, "at": 9273.134959027291 }, { "type": "C", "frame": 10, "at": 9273.134959027291 }, { "type": "C", "frame": 9, "at": 9273.134959027291 }, { "type": "C", "frame": 8, "at": 9273.134959027291 }, { "type": "C", "frame": 20, "at": 9273.134959027291 }, { "type": "O", "frame": 6, "at": 9273.134959027291 }, { "type": "O", "frame": 7, "at": 9273.134959027291 }, { "type": "O", "frame": 8, "at": 9273.134959027291 }, { "type": "O", "frame": 9, "at": 9273.134959027291 }, { "type": "O", "frame": 10, "at": 9273.134959027291 }, { "type": "O", "frame": 11, "at": 9273.134959027291 }, { "type": "O", "frame": 12, "at": 9273.134959027291 }, { "type": "O", "frame": 13, "at": 9273.134959027291 }, { "type": "O", "frame": 14, "at": 9273.134959027291 }, { "type": "O", "frame": 15, "at": 9273.134959027291 }, { "type": "O", "frame": 16, "at": 9273.134959027291 }, { "type": "O", "frame": 21, "at": 9273.134959027291 }, { "type": "O", "frame": 22, "at": 9273.134959027291 }, { "type": "O", "frame": 23, "at": 9273.134959027291 }, { "type": "O", "frame": 24, "at": 9273.134959027291 }, { "type": "O", "frame": 18, "at": 9273.134959027291 }, { "type": "C", "frame": 18, "at": 9275.84962488974 }, { "type": "C", "frame": 24, "at": 9275.84962488974 }, { "type": "O", "frame": 49, "at": 9275.849625 }, { "type": "O", "frame": 18, "at": 9275.849625 }, { "type": "C", "frame": 18, "at": 9277.19395900631 }, { "type": "C", "frame": 49, "at": 9277.19395900631 }, { "type": "O", "frame": 24, "at": 9277.19395900631 }, { "type": "O", "frame": 18, "at": 9277.19395900631 }, { "type": "C", "frame": 18, "at": 9282.572417023071 }, { "type": "C", "frame": 24, "at": 9282.572417023071 }, { "type": "C", "frame": 23, "at": 9282.572417038331 }, { "type": "C", "frame": 22, "at": 9282.572417038331 }, { "type": "C", "frame": 21, "at": 9282.572417038331 }, { "type": "O", "frame": 17, "at": 9282.572417038331 }, { "type": "O", "frame": 18, "at": 9282.572417038331 }, { "type": "C", "frame": 18, "at": 9286.667041996185 }, { "type": "C", "frame": 17, "at": 9286.667041996185 }, { "type": "O", "frame": 19, "at": 9286.667042 }, { "type": "O", "frame": 18, "at": 9286.667042 }, { "type": "C", "frame": 18, "at": 9293.36508439273 }, { "type": "C", "frame": 19, "at": 9293.36508439273 }, { "type": "C", "frame": 16, "at": 9293.365084427247 }, { "type": "C", "frame": 15, "at": 9293.365084427247 }, { "type": "C", "frame": 14, "at": 9293.365084427247 }, { "type": "C", "frame": 13, "at": 9293.365084427247 }, { "type": "C", "frame": 12, "at": 9293.365084427247 }, { "type": "C", "frame": 11, "at": 9293.365084427247 }, { "type": "C", "frame": 10, "at": 9293.365084427247 }, { "type": "C", "frame": 9, "at": 9293.365084427247 }, { "type": "C", "frame": 8, "at": 9293.365084427247 }, { "type": "O", "frame": 18, "at": 9293.365084427247 }, { "type": "C", "frame": 18, "at": 9294.721208997138 }, { "type": "C", "frame": 7, "at": 9294.721209305177 }, { "type": "C", "frame": 6, "at": 9294.721209305177 }, { "type": "O", "frame": 20, "at": 9294.721209305177 }, { "type": "O", "frame": 8, "at": 9294.721209305177 }, { "type": "O", "frame": 9, "at": 9294.721209305177 }, { "type": "O", "frame": 10, "at": 9294.721209305177 }, { "type": "O", "frame": 11, "at": 9294.721209305177 }, { "type": "O", "frame": 12, "at": 9294.721209305177 }, { "type": "O", "frame": 13, "at": 9294.721209305177 }, { "type": "O", "frame": 14, "at": 9294.721209305177 }, { "type": "O", "frame": 15, "at": 9294.721209305177 }, { "type": "O", "frame": 16, "at": 9294.721209305177 }, { "type": "O", "frame": 21, "at": 9294.721209305177 }, { "type": "O", "frame": 22, "at": 9294.721209305177 }, { "type": "O", "frame": 23, "at": 9294.721209305177 }, { "type": "O", "frame": 24, "at": 9294.721209305177 }, { "type": "O", "frame": 18, "at": 9294.721209305177 }, { "type": "C", "frame": 18, "at": 9302.80133385504 }, { "type": "C", "frame": 24, "at": 9302.80133385504 }, { "type": "C", "frame": 23, "at": 9302.80133385504 }, { "type": "C", "frame": 22, "at": 9302.80133385504 }, { "type": "C", "frame": 21, "at": 9302.80133385504 }, { "type": "O", "frame": 17, "at": 9302.801334 }, { "type": "O", "frame": 18, "at": 9302.801334 }, { "type": "C", "frame": 18, "at": 9306.896417236694 }, { "type": "C", "frame": 17, "at": 9306.896417236694 }, { "type": "O", "frame": 19, "at": 9306.896417236694 }, { "type": "O", "frame": 18, "at": 9306.896417236694 }, { "type": "C", "frame": 18, "at": 9309.623584129517 }, { "type": "C", "frame": 19, "at": 9309.623584129517 }, { "type": "C", "frame": 16, "at": 9309.623584129517 }, { "type": "C", "frame": 15, "at": 9309.623584129517 }, { "type": "C", "frame": 14, "at": 9309.623584129517 }, { "type": "C", "frame": 13, "at": 9309.623584129517 }, { "type": "C", "frame": 12, "at": 9309.623584129517 }, { "type": "C", "frame": 11, "at": 9309.623584129517 }, { "type": "C", "frame": 10, "at": 9309.623584129517 }, { "type": "C", "frame": 9, "at": 9309.623584129517 }, { "type": "C", "frame": 8, "at": 9309.623584129517 }, { "type": "C", "frame": 20, "at": 9309.623584129517 }, { "type": "O", "frame": 6, "at": 9309.623584129517 }, { "type": "O", "frame": 7, "at": 9309.623584129517 }, { "type": "O", "frame": 8, "at": 9309.623584129517 }, { "type": "O", "frame": 9, "at": 9309.623584129517 }, { "type": "O", "frame": 10, "at": 9309.623584129517 }, { "type": "O", "frame": 11, "at": 9309.623584129517 }, { "type": "O", "frame": 12, "at": 9309.623584129517 }, { "type": "O", "frame": 13, "at": 9309.623584129517 }, { "type": "O", "frame": 14, "at": 9309.623584129517 }, { "type": "O", "frame": 15, "at": 9309.623584129517 }, { "type": "O", "frame": 16, "at": 9309.623584129517 }, { "type": "O", "frame": 21, "at": 9309.623584129517 }, { "type": "O", "frame": 22, "at": 9309.623584129517 }, { "type": "O", "frame": 23, "at": 9309.623584129517 }, { "type": "O", "frame": 24, "at": 9309.623584129517 }, { "type": "O", "frame": 18, "at": 9309.623584129517 }, { "type": "C", "frame": 18, "at": 9312.30858394278 }, { "type": "C", "frame": 24, "at": 9312.30858394278 }, { "type": "O", "frame": 25, "at": 9312.308584 }, { "type": "O", "frame": 18, "at": 9312.308584 }, { "type": "C", "frame": 18, "at": 9313.651875044236 }, { "type": "C", "frame": 25, "at": 9313.651875044236 }, { "type": "O", "frame": 24, "at": 9313.651875044236 }, { "type": "O", "frame": 18, "at": 9313.651875044236 }, { "type": "C", "frame": 18, "at": 9316.343833904266 }, { "type": "C", "frame": 24, "at": 9316.343833904266 }, { "type": "O", "frame": 49, "at": 9316.343834 }, { "type": "O", "frame": 18, "at": 9316.343834 }, { "type": "C", "frame": 18, "at": 9317.702499943145 }, { "type": "C", "frame": 49, "at": 9317.702499943145 }, { "type": "C", "frame": 23, "at": 9317.702500549683 }, { "type": "C", "frame": 22, "at": 9317.702500549683 }, { "type": "C", "frame": 21, "at": 9317.702500549683 }, { "type": "O", "frame": 17, "at": 9317.702500549683 }, { "type": "O", "frame": 18, "at": 9317.702500549683 }, { "type": "C", "frame": 18, "at": 9321.782999649047 }, { "type": "C", "frame": 17, "at": 9321.782999649047 }, { "type": "O", "frame": 19, "at": 9321.783 }, { "type": "O", "frame": 18, "at": 9321.783 }, { "type": "C", "frame": 18, "at": 9328.606250293731 }, { "type": "C", "frame": 19, "at": 9328.606250293731 }, { "type": "C", "frame": 16, "at": 9328.606251922974 }, { "type": "C", "frame": 15, "at": 9328.606251922974 }, { "type": "C", "frame": 14, "at": 9328.606251922974 }, { "type": "C", "frame": 13, "at": 9328.606251922974 }, { "type": "C", "frame": 12, "at": 9328.606251922974 }, { "type": "C", "frame": 11, "at": 9328.606251922974 }, { "type": "C", "frame": 10, "at": 9328.606251922974 }, { "type": "C", "frame": 9, "at": 9328.606251922974 }, { "type": "C", "frame": 8, "at": 9328.606251922974 }, { "type": "C", "frame": 7, "at": 9328.606251922974 }, { "type": "C", "frame": 6, "at": 9328.606251922974 }, { "type": "O", "frame": 20, "at": 9328.606251922974 }, { "type": "O", "frame": 8, "at": 9328.606251922974 }, { "type": "O", "frame": 9, "at": 9328.606251922974 }, { "type": "O", "frame": 10, "at": 9328.606251922974 }, { "type": "O", "frame": 11, "at": 9328.606251922974 }, { "type": "O", "frame": 12, "at": 9328.606251922974 }, { "type": "O", "frame": 13, "at": 9328.606251922974 }, { "type": "O", "frame": 14, "at": 9328.606251922974 }, { "type": "O", "frame": 15, "at": 9328.606251922974 }, { "type": "O", "frame": 16, "at": 9328.606251922974 }, { "type": "O", "frame": 21, "at": 9328.606251922974 }, { "type": "O", "frame": 22, "at": 9328.606251922974 }, { "type": "O", "frame": 23, "at": 9328.606251922974 }, { "type": "O", "frame": 24, "at": 9328.606251922974 }, { "type": "O", "frame": 18, "at": 9328.606251922974 }, { "type": "C", "frame": 18, "at": 9336.675250244141 }, { "type": "C", "frame": 24, "at": 9336.675250244141 }, { "type": "C", "frame": 23, "at": 9336.675250244141 }, { "type": "C", "frame": 22, "at": 9336.675250244141 }, { "type": "C", "frame": 21, "at": 9336.675250244141 }, { "type": "O", "frame": 17, "at": 9336.675250244141 }, { "type": "O", "frame": 18, "at": 9336.675250244141 }, { "type": "C", "frame": 18, "at": 9340.821166938782 }, { "type": "C", "frame": 17, "at": 9340.821166938782 }, { "type": "O", "frame": 19, "at": 9340.821167 }, { "type": "O", "frame": 18, "at": 9340.821167 }, { "type": "C", "frame": 18, "at": 9342.171916969482 }, { "type": "C", "frame": 19, "at": 9342.171916969482 }, { "type": "C", "frame": 16, "at": 9342.171917152406 }, { "type": "C", "frame": 15, "at": 9342.171917152406 }, { "type": "C", "frame": 14, "at": 9342.171917152406 }, { "type": "C", "frame": 13, "at": 9342.171917152406 }, { "type": "C", "frame": 12, "at": 9342.171917152406 }, { "type": "C", "frame": 11, "at": 9342.171917152406 }, { "type": "C", "frame": 10, "at": 9342.171917152406 }, { "type": "C", "frame": 9, "at": 9342.171917152406 }, { "type": "C", "frame": 8, "at": 9342.171917152406 }, { "type": "C", "frame": 20, "at": 9342.171917152406 }, { "type": "O", "frame": 6, "at": 9342.171917152406 }, { "type": "O", "frame": 7, "at": 9342.171917152406 }, { "type": "O", "frame": 8, "at": 9342.171917152406 }, { "type": "O", "frame": 9, "at": 9342.171917152406 }, { "type": "O", "frame": 10, "at": 9342.171917152406 }, { "type": "O", "frame": 11, "at": 9342.171917152406 }, { "type": "O", "frame": 12, "at": 9342.171917152406 }, { "type": "O", "frame": 13, "at": 9342.171917152406 }, { "type": "O", "frame": 14, "at": 9342.171917152406 }, { "type": "O", "frame": 15, "at": 9342.171917152406 }, { "type": "O", "frame": 16, "at": 9342.171917152406 }, { "type": "O", "frame": 21, "at": 9342.171917152406 }, { "type": "O", "frame": 22, "at": 9342.171917152406 }, { "type": "O", "frame": 23, "at": 9342.171917152406 }, { "type": "O", "frame": 24, "at": 9342.171917152406 }, { "type": "O", "frame": 18, "at": 9342.171917152406 }, { "type": "C", "frame": 18, "at": 9351.603709259216 }, { "type": "C", "frame": 24, "at": 9351.603709259216 }, { "type": "C", "frame": 23, "at": 9351.603709259216 }, { "type": "C", "frame": 22, "at": 9351.603709259216 }, { "type": "C", "frame": 21, "at": 9351.603709259216 }, { "type": "O", "frame": 17, "at": 9351.603709259216 }, { "type": "O", "frame": 18, "at": 9351.603709259216 }, { "type": "C", "frame": 18, "at": 9355.697791832337 }, { "type": "C", "frame": 17, "at": 9355.697791832337 }, { "type": "O", "frame": 19, "at": 9355.697792 }, { "type": "O", "frame": 18, "at": 9355.697792 }, { "type": "C", "frame": 18, "at": 9361.027958816712 }, { "type": "C", "frame": 19, "at": 9361.027958816712 }, { "type": "C", "frame": 16, "at": 9361.027958816712 }, { "type": "C", "frame": 15, "at": 9361.027958816712 }, { "type": "C", "frame": 14, "at": 9361.027958816712 }, { "type": "C", "frame": 13, "at": 9361.027958816712 }, { "type": "C", "frame": 12, "at": 9361.027958816712 }, { "type": "C", "frame": 11, "at": 9361.027958816712 }, { "type": "C", "frame": 10, "at": 9361.027958816712 }, { "type": "C", "frame": 9, "at": 9361.027958816712 }, { "type": "C", "frame": 8, "at": 9361.027958816712 }, { "type": "C", "frame": 7, "at": 9361.027958816712 }, { "type": "C", "frame": 6, "at": 9361.027958816712 }, { "type": "O", "frame": 20, "at": 9361.027959 }, { "type": "O", "frame": 8, "at": 9361.027959 }, { "type": "O", "frame": 9, "at": 9361.027959 }, { "type": "O", "frame": 10, "at": 9361.027959 }, { "type": "O", "frame": 11, "at": 9361.027959 }, { "type": "O", "frame": 12, "at": 9361.027959 }, { "type": "O", "frame": 13, "at": 9361.027959 }, { "type": "O", "frame": 14, "at": 9361.027959 }, { "type": "O", "frame": 15, "at": 9361.027959 }, { "type": "O", "frame": 16, "at": 9361.027959 }, { "type": "O", "frame": 18, "at": 9361.027959 }, { "type": "C", "frame": 18, "at": 9362.37491704119 }, { "type": "O", "frame": 21, "at": 9362.37491704119 }, { "type": "O", "frame": 22, "at": 9362.37491704119 }, { "type": "O", "frame": 23, "at": 9362.37491704119 }, { "type": "O", "frame": 24, "at": 9362.37491704119 }, { "type": "O", "frame": 18, "at": 9362.37491704119 }, { "type": "C", "frame": 18, "at": 9370.449500053588 }, { "type": "C", "frame": 24, "at": 9370.449500053588 }, { "type": "C", "frame": 23, "at": 9370.449500053588 }, { "type": "C", "frame": 22, "at": 9370.449500053588 }, { "type": "C", "frame": 21, "at": 9370.449500053588 }, { "type": "O", "frame": 17, "at": 9370.449500053588 }, { "type": "O", "frame": 18, "at": 9370.449500053588 }, { "type": "C", "frame": 18, "at": 9374.53899995041 }, { "type": "C", "frame": 17, "at": 9374.53899995041 }, { "type": "O", "frame": 19, "at": 9374.539 }, { "type": "O", "frame": 18, "at": 9374.539 }, { "type": "C", "frame": 18, "at": 9382.531875099183 }, { "type": "C", "frame": 19, "at": 9382.531875099183 }, { "type": "C", "frame": 16, "at": 9382.53187669409 }, { "type": "C", "frame": 15, "at": 9382.53187669409 }, { "type": "C", "frame": 14, "at": 9382.53187669409 }, { "type": "C", "frame": 13, "at": 9382.53187669409 }, { "type": "C", "frame": 12, "at": 9382.53187669409 }, { "type": "C", "frame": 11, "at": 9382.53187669409 }, { "type": "C", "frame": 10, "at": 9382.53187669409 }, { "type": "C", "frame": 9, "at": 9382.53187669409 }, { "type": "C", "frame": 8, "at": 9382.53187669409 }, { "type": "C", "frame": 20, "at": 9382.53187669409 }, { "type": "O", "frame": 6, "at": 9382.53187669409 }, { "type": "O", "frame": 7, "at": 9382.53187669409 }, { "type": "O", "frame": 8, "at": 9382.53187669409 }, { "type": "O", "frame": 9, "at": 9382.53187669409 }, { "type": "O", "frame": 10, "at": 9382.53187669409 }, { "type": "O", "frame": 11, "at": 9382.53187669409 }, { "type": "O", "frame": 12, "at": 9382.53187669409 }, { "type": "O", "frame": 13, "at": 9382.53187669409 }, { "type": "O", "frame": 14, "at": 9382.53187669409 }, { "type": "O", "frame": 15, "at": 9382.53187669409 }, { "type": "O", "frame": 16, "at": 9382.53187669409 }, { "type": "O", "frame": 21, "at": 9382.53187669409 }, { "type": "O", "frame": 22, "at": 9382.53187669409 }, { "type": "O", "frame": 23, "at": 9382.53187669409 }, { "type": "O", "frame": 24, "at": 9382.53187669409 }, { "type": "O", "frame": 18, "at": 9382.53187669409 }, { "type": "C", "frame": 18, "at": 9386.552791938782 }, { "type": "C", "frame": 24, "at": 9386.552791938782 }, { "type": "O", "frame": 29, "at": 9386.552792 }, { "type": "O", "frame": 18, "at": 9386.552792 }, { "type": "C", "frame": 18, "at": 9387.892167019074 }, { "type": "C", "frame": 29, "at": 9387.892167019074 }, { "type": "O", "frame": 24, "at": 9387.892167019074 }, { "type": "O", "frame": 18, "at": 9387.892167019074 }, { "type": "C", "frame": 18, "at": 9391.916708854858 }, { "type": "C", "frame": 24, "at": 9391.916708854858 }, { "type": "C", "frame": 23, "at": 9391.916709289551 }, { "type": "C", "frame": 22, "at": 9391.916709289551 }, { "type": "C", "frame": 21, "at": 9391.916709289551 }, { "type": "O", "frame": 17, "at": 9391.916709289551 }, { "type": "O", "frame": 18, "at": 9391.916709289551 }, { "type": "C", "frame": 18, "at": 9396.0746670307 }, { "type": "C", "frame": 17, "at": 9396.0746670307 }, { "type": "O", "frame": 19, "at": 9396.0746670307 }, { "type": "O", "frame": 18, "at": 9396.0746670307 }, { "type": "C", "frame": 18, "at": 9404.097374939149 }, { "type": "C", "frame": 19, "at": 9404.097374939149 }, { "type": "C", "frame": 16, "at": 9404.097374939149 }, { "type": "C", "frame": 15, "at": 9404.097374939149 }, { "type": "C", "frame": 14, "at": 9404.097374939149 }, { "type": "C", "frame": 13, "at": 9404.097374939149 }, { "type": "C", "frame": 12, "at": 9404.097374939149 }, { "type": "C", "frame": 11, "at": 9404.097374939149 }, { "type": "C", "frame": 10, "at": 9404.097374939149 }, { "type": "C", "frame": 9, "at": 9404.097374939149 }, { "type": "C", "frame": 8, "at": 9404.097374939149 }, { "type": "C", "frame": 7, "at": 9404.097374939149 }, { "type": "C", "frame": 6, "at": 9404.097374939149 }, { "type": "O", "frame": 20, "at": 9404.097375 }, { "type": "O", "frame": 8, "at": 9404.097375 }, { "type": "O", "frame": 9, "at": 9404.097375 }, { "type": "O", "frame": 10, "at": 9404.097375 }, { "type": "O", "frame": 11, "at": 9404.097375 }, { "type": "O", "frame": 12, "at": 9404.097375 }, { "type": "O", "frame": 13, "at": 9404.097375 }, { "type": "O", "frame": 14, "at": 9404.097375 }, { "type": "O", "frame": 15, "at": 9404.097375 }, { "type": "O", "frame": 16, "at": 9404.097375 }, { "type": "O", "frame": 21, "at": 9404.097375 }, { "type": "O", "frame": 22, "at": 9404.097375 }, { "type": "O", "frame": 23, "at": 9404.097375 }, { "type": "O", "frame": 24, "at": 9404.097375 }, { "type": "O", "frame": 18, "at": 9404.097375 }, { "type": "C", "frame": 18, "at": 9412.16204270172 }, { "type": "C", "frame": 24, "at": 9412.16204270172 }, { "type": "C", "frame": 23, "at": 9412.16204270172 }, { "type": "C", "frame": 22, "at": 9412.16204270172 }, { "type": "C", "frame": 21, "at": 9412.16204270172 }, { "type": "O", "frame": 17, "at": 9412.16204270172 }, { "type": "O", "frame": 18, "at": 9412.16204270172 }, { "type": "C", "frame": 18, "at": 9416.267083980743 }, { "type": "C", "frame": 17, "at": 9416.267083980743 }, { "type": "O", "frame": 19, "at": 9416.267084 }, { "type": "O", "frame": 18, "at": 9416.267084 }, { "type": "C", "frame": 18, "at": 9417.62537502993 }, { "type": "C", "frame": 19, "at": 9417.62537502993 }, { "type": "C", "frame": 16, "at": 9417.625375831603 }, { "type": "C", "frame": 15, "at": 9417.625375831603 }, { "type": "C", "frame": 14, "at": 9417.625375831603 }, { "type": "C", "frame": 13, "at": 9417.625375831603 }, { "type": "C", "frame": 12, "at": 9417.625375831603 }, { "type": "C", "frame": 11, "at": 9417.625375831603 }, { "type": "C", "frame": 10, "at": 9417.625375831603 }, { "type": "C", "frame": 9, "at": 9417.625375831603 }, { "type": "C", "frame": 8, "at": 9417.625375831603 }, { "type": "C", "frame": 20, "at": 9417.625375831603 }, { "type": "O", "frame": 6, "at": 9417.625375831603 }, { "type": "O", "frame": 7, "at": 9417.625375831603 }, { "type": "O", "frame": 8, "at": 9417.625375831603 }, { "type": "O", "frame": 9, "at": 9417.625375831603 }, { "type": "O", "frame": 10, "at": 9417.625375831603 }, { "type": "O", "frame": 11, "at": 9417.625375831603 }, { "type": "O", "frame": 12, "at": 9417.625375831603 }, { "type": "O", "frame": 13, "at": 9417.625375831603 }, { "type": "O", "frame": 14, "at": 9417.625375831603 }, { "type": "O", "frame": 15, "at": 9417.625375831603 }, { "type": "O", "frame": 16, "at": 9417.625375831603 }, { "type": "O", "frame": 21, "at": 9417.625375831603 }, { "type": "O", "frame": 22, "at": 9417.625375831603 }, { "type": "O", "frame": 23, "at": 9417.625375831603 }, { "type": "O", "frame": 24, "at": 9417.625375831603 }, { "type": "O", "frame": 18, "at": 9417.625375831603 }, { "type": "C", "frame": 18, "at": 9421.66491719818 }, { "type": "C", "frame": 24, "at": 9421.66491719818 }, { "type": "O", "frame": 29, "at": 9421.66491719818 }, { "type": "O", "frame": 18, "at": 9421.66491719818 }, { "type": "C", "frame": 18, "at": 9423.003792055313 }, { "type": "C", "frame": 29, "at": 9423.003792055313 }, { "type": "O", "frame": 24, "at": 9423.003792055313 }, { "type": "O", "frame": 18, "at": 9423.003792055313 }, { "type": "C", "frame": 18, "at": 9424.342542004768 }, { "type": "C", "frame": 24, "at": 9424.342542004768 }, { "type": "O", "frame": 25, "at": 9424.342542004768 }, { "type": "O", "frame": 18, "at": 9424.342542004768 }, { "type": "C", "frame": 18, "at": 9425.68433398742 }, { "type": "C", "frame": 25, "at": 9425.68433398742 }, { "type": "O", "frame": 24, "at": 9425.684334 }, { "type": "O", "frame": 18, "at": 9425.684334 }, { "type": "C", "frame": 18, "at": 9427.030917008766 }, { "type": "C", "frame": 24, "at": 9427.030917008766 }, { "type": "C", "frame": 23, "at": 9427.030917373657 }, { "type": "C", "frame": 22, "at": 9427.030917373657 }, { "type": "C", "frame": 21, "at": 9427.030917373657 }, { "type": "O", "frame": 17, "at": 9427.030917373657 }, { "type": "O", "frame": 18, "at": 9427.030917373657 }, { "type": "C", "frame": 18, "at": 9431.125124763672 }, { "type": "C", "frame": 17, "at": 9431.125124763672 }, { "type": "O", "frame": 19, "at": 9431.125125 }, { "type": "O", "frame": 18, "at": 9431.125125 }, { "type": "C", "frame": 18, "at": 9436.4673748703 }, { "type": "C", "frame": 19, "at": 9436.4673748703 }, { "type": "C", "frame": 16, "at": 9436.467375961303 }, { "type": "C", "frame": 15, "at": 9436.467375961303 }, { "type": "C", "frame": 14, "at": 9436.467375961303 }, { "type": "C", "frame": 13, "at": 9436.467375961303 }, { "type": "C", "frame": 12, "at": 9436.467375961303 }, { "type": "C", "frame": 11, "at": 9436.467375961303 }, { "type": "C", "frame": 10, "at": 9436.467375961303 }, { "type": "C", "frame": 9, "at": 9436.467375961303 }, { "type": "C", "frame": 8, "at": 9436.467375961303 }, { "type": "C", "frame": 7, "at": 9436.467375961303 }, { "type": "C", "frame": 6, "at": 9436.467375961303 }, { "type": "O", "frame": 20, "at": 9436.467375961303 }, { "type": "O", "frame": 8, "at": 9436.467375961303 }, { "type": "O", "frame": 9, "at": 9436.467375961303 }, { "type": "O", "frame": 10, "at": 9436.467375961303 }, { "type": "O", "frame": 11, "at": 9436.467375961303 }, { "type": "O", "frame": 12, "at": 9436.467375961303 }, { "type": "O", "frame": 13, "at": 9436.467375961303 }, { "type": "O", "frame": 14, "at": 9436.467375961303 }, { "type": "O", "frame": 15, "at": 9436.467375961303 }, { "type": "O", "frame": 16, "at": 9436.467375961303 }, { "type": "O", "frame": 21, "at": 9436.467375961303 }, { "type": "O", "frame": 22, "at": 9436.467375961303 }, { "type": "O", "frame": 23, "at": 9436.467375961303 }, { "type": "O", "frame": 24, "at": 9436.467375961303 }, { "type": "O", "frame": 18, "at": 9436.467375961303 }, { "type": "C", "frame": 18, "at": 9439.15241690445 }, { "type": "C", "frame": 24, "at": 9439.15241690445 }, { "type": "O", "frame": 29, "at": 9439.152417 }, { "type": "O", "frame": 18, "at": 9439.152417 }, { "type": "C", "frame": 18, "at": 9440.491792019073 }, { "type": "C", "frame": 29, "at": 9440.491792019073 }, { "type": "O", "frame": 24, "at": 9440.491792019073 }, { "type": "O", "frame": 18, "at": 9440.491792019073 }, { "type": "C", "frame": 18, "at": 9445.870458877747 }, { "type": "C", "frame": 24, "at": 9445.870458877747 }, { "type": "C", "frame": 23, "at": 9445.870458877747 }, { "type": "C", "frame": 22, "at": 9445.870458877747 }, { "type": "C", "frame": 21, "at": 9445.870458877747 }, { "type": "O", "frame": 17, "at": 9445.870459 }, { "type": "O", "frame": 18, "at": 9445.870459 }, { "type": "C", "frame": 18, "at": 9449.99137488974 }, { "type": "C", "frame": 17, "at": 9449.99137488974 }, { "type": "O", "frame": 19, "at": 9449.991375 }, { "type": "O", "frame": 18, "at": 9449.991375 }, { "type": "C", "frame": 18, "at": 9451.330374986648 }, { "type": "C", "frame": 19, "at": 9451.330374986648 }, { "type": "C", "frame": 16, "at": 9451.330374986648 }, { "type": "C", "frame": 15, "at": 9451.330374986648 }, { "type": "C", "frame": 14, "at": 9451.330374986648 }, { "type": "C", "frame": 13, "at": 9451.330374986648 }, { "type": "C", "frame": 12, "at": 9451.330374986648 }, { "type": "C", "frame": 11, "at": 9451.330374986648 }, { "type": "C", "frame": 10, "at": 9451.330374986648 }, { "type": "C", "frame": 9, "at": 9451.330374986648 }, { "type": "C", "frame": 8, "at": 9451.330374986648 }, { "type": "C", "frame": 20, "at": 9451.330374986648 }, { "type": "O", "frame": 6, "at": 9451.330375 }, { "type": "O", "frame": 7, "at": 9451.330375 }, { "type": "O", "frame": 8, "at": 9451.330375 }, { "type": "O", "frame": 9, "at": 9451.330375 }, { "type": "O", "frame": 10, "at": 9451.330375 }, { "type": "O", "frame": 11, "at": 9451.330375 }, { "type": "O", "frame": 12, "at": 9451.330375 }, { "type": "O", "frame": 13, "at": 9451.330375 }, { "type": "O", "frame": 14, "at": 9451.330375 }, { "type": "O", "frame": 15, "at": 9451.330375 }, { "type": "O", "frame": 16, "at": 9451.330375 }, { "type": "O", "frame": 21, "at": 9451.330375 }, { "type": "O", "frame": 22, "at": 9451.330375 }, { "type": "O", "frame": 23, "at": 9451.330375 }, { "type": "O", "frame": 24, "at": 9451.330375 }, { "type": "O", "frame": 18, "at": 9451.330375 }, { "type": "C", "frame": 18, "at": 9460.736625 }, { "type": "C", "frame": 24, "at": 9460.736625 }, { "type": "C", "frame": 23, "at": 9460.736625 }, { "type": "C", "frame": 22, "at": 9460.736625 }, { "type": "C", "frame": 21, "at": 9460.736625 }, { "type": "O", "frame": 17, "at": 9460.736625 }, { "type": "O", "frame": 18, "at": 9460.736625 }, { "type": "C", "frame": 18, "at": 9464.810167118072 }, { "type": "C", "frame": 17, "at": 9464.810167118072 }, { "type": "O", "frame": 19, "at": 9464.810167118072 }, { "type": "O", "frame": 18, "at": 9464.810167118072 }, { "type": "C", "frame": 18, "at": 9470.13754193515 }, { "type": "C", "frame": 19, "at": 9470.13754193515 }, { "type": "C", "frame": 16, "at": 9470.137542053222 }, { "type": "C", "frame": 15, "at": 9470.137542053222 }, { "type": "C", "frame": 14, "at": 9470.137542053222 }, { "type": "C", "frame": 13, "at": 9470.137542053222 }, { "type": "C", "frame": 12, "at": 9470.137542053222 }, { "type": "C", "frame": 11, "at": 9470.137542053222 }, { "type": "C", "frame": 10, "at": 9470.137542053222 }, { "type": "C", "frame": 9, "at": 9470.137542053222 }, { "type": "C", "frame": 8, "at": 9470.137542053222 }, { "type": "C", "frame": 7, "at": 9470.137542053222 }, { "type": "C", "frame": 6, "at": 9470.137542053222 }, { "type": "O", "frame": 20, "at": 9470.137542053222 }, { "type": "O", "frame": 8, "at": 9470.137542053222 }, { "type": "O", "frame": 9, "at": 9470.137542053222 }, { "type": "O", "frame": 10, "at": 9470.137542053222 }, { "type": "O", "frame": 11, "at": 9470.137542053222 }, { "type": "O", "frame": 12, "at": 9470.137542053222 }, { "type": "O", "frame": 13, "at": 9470.137542053222 }, { "type": "O", "frame": 14, "at": 9470.137542053222 }, { "type": "O", "frame": 15, "at": 9470.137542053222 }, { "type": "O", "frame": 16, "at": 9470.137542053222 }, { "type": "O", "frame": 21, "at": 9470.137542053222 }, { "type": "O", "frame": 22, "at": 9470.137542053222 }, { "type": "O", "frame": 23, "at": 9470.137542053222 }, { "type": "O", "frame": 24, "at": 9470.137542053222 }, { "type": "O", "frame": 18, "at": 9470.137542053222 }, { "type": "C", "frame": 18, "at": 9474.172416916077 }, { "type": "C", "frame": 24, "at": 9474.172416916077 }, { "type": "O", "frame": 29, "at": 9474.172417 }, { "type": "O", "frame": 18, "at": 9474.172417 }, { "type": "C", "frame": 18, "at": 9475.515750005905 }, { "type": "C", "frame": 29, "at": 9475.515750005905 }, { "type": "O", "frame": 25, "at": 9475.515750005905 }, { "type": "O", "frame": 18, "at": 9475.515750005905 }, { "type": "C", "frame": 18, "at": 9476.853292057038 }, { "type": "C", "frame": 25, "at": 9476.853292057038 }, { "type": "O", "frame": 24, "at": 9476.853292057038 }, { "type": "O", "frame": 18, "at": 9476.853292057038 }, { "type": "C", "frame": 18, "at": 9479.552124988739 }, { "type": "C", "frame": 24, "at": 9479.552124988739 }, { "type": "C", "frame": 23, "at": 9479.552125206177 }, { "type": "C", "frame": 22, "at": 9479.552125206177 }, { "type": "C", "frame": 21, "at": 9479.552125206177 }, { "type": "O", "frame": 17, "at": 9479.552125206177 }, { "type": "O", "frame": 18, "at": 9479.552125206177 }, { "type": "C", "frame": 18, "at": 9483.661916755676 }, { "type": "C", "frame": 17, "at": 9483.661916755676 }, { "type": "O", "frame": 19, "at": 9483.661917 }, { "type": "O", "frame": 18, "at": 9483.661917 }, { "type": "C", "frame": 18, "at": 9490.318583755676 }, { "type": "C", "frame": 19, "at": 9490.318583755676 }, { "type": "C", "frame": 16, "at": 9490.318587532227 }, { "type": "C", "frame": 15, "at": 9490.318587532227 }, { "type": "C", "frame": 14, "at": 9490.318587532227 }, { "type": "C", "frame": 13, "at": 9490.318587532227 }, { "type": "C", "frame": 12, "at": 9490.318587532227 }, { "type": "C", "frame": 11, "at": 9490.318587532227 }, { "type": "C", "frame": 10, "at": 9490.318587532227 }, { "type": "C", "frame": 9, "at": 9490.318587532227 }, { "type": "C", "frame": 8, "at": 9490.318587532227 }, { "type": "C", "frame": 20, "at": 9490.318587532227 }, { "type": "O", "frame": 6, "at": 9490.318587532227 }, { "type": "O", "frame": 7, "at": 9490.318587532227 }, { "type": "O", "frame": 8, "at": 9490.318587532227 }, { "type": "O", "frame": 9, "at": 9490.318587532227 }, { "type": "O", "frame": 10, "at": 9490.318587532227 }, { "type": "O", "frame": 11, "at": 9490.318587532227 }, { "type": "O", "frame": 12, "at": 9490.318587532227 }, { "type": "O", "frame": 13, "at": 9490.318587532227 }, { "type": "O", "frame": 14, "at": 9490.318587532227 }, { "type": "O", "frame": 15, "at": 9490.318587532227 }, { "type": "O", "frame": 16, "at": 9490.318587532227 }, { "type": "O", "frame": 21, "at": 9490.318587532227 }, { "type": "O", "frame": 22, "at": 9490.318587532227 }, { "type": "O", "frame": 23, "at": 9490.318587532227 }, { "type": "O", "frame": 24, "at": 9490.318587532227 }, { "type": "O", "frame": 18, "at": 9490.318587532227 }, { "type": "C", "frame": 18, "at": 9499.735250030884 }, { "type": "C", "frame": 24, "at": 9499.735250030884 }, { "type": "C", "frame": 23, "at": 9499.735250030884 }, { "type": "C", "frame": 22, "at": 9499.735250030884 }, { "type": "C", "frame": 21, "at": 9499.735250030884 }, { "type": "O", "frame": 17, "at": 9499.735250030884 }, { "type": "O", "frame": 18, "at": 9499.735250030884 }, { "type": "C", "frame": 18, "at": 9503.862958911895 }, { "type": "C", "frame": 17, "at": 9503.862958911895 }, { "type": "O", "frame": 19, "at": 9503.862959 }, { "type": "O", "frame": 18, "at": 9503.862959 }, { "type": "C", "frame": 18, "at": 9505.197208973297 }, { "type": "C", "frame": 19, "at": 9505.197208973297 }, { "type": "C", "frame": 16, "at": 9505.197209869752 }, { "type": "C", "frame": 15, "at": 9505.197209869752 }, { "type": "C", "frame": 14, "at": 9505.197209869752 }, { "type": "C", "frame": 13, "at": 9505.197209869752 }, { "type": "C", "frame": 12, "at": 9505.197209869752 }, { "type": "C", "frame": 11, "at": 9505.197209869752 }, { "type": "C", "frame": 10, "at": 9505.197209869752 }, { "type": "C", "frame": 9, "at": 9505.197209869752 }, { "type": "C", "frame": 8, "at": 9505.197209869752 }, { "type": "C", "frame": 7, "at": 9505.197209869752 }, { "type": "C", "frame": 6, "at": 9505.197209869752 }, { "type": "O", "frame": 20, "at": 9505.197209869752 }, { "type": "O", "frame": 8, "at": 9505.197209869752 }, { "type": "O", "frame": 9, "at": 9505.197209869752 }, { "type": "O", "frame": 10, "at": 9505.197209869752 }, { "type": "O", "frame": 11, "at": 9505.197209869752 }, { "type": "O", "frame": 12, "at": 9505.197209869752 }, { "type": "O", "frame": 13, "at": 9505.197209869752 }, { "type": "O", "frame": 14, "at": 9505.197209869752 }, { "type": "O", "frame": 15, "at": 9505.197209869752 }, { "type": "O", "frame": 16, "at": 9505.197209869752 }, { "type": "O", "frame": 21, "at": 9505.197209869752 }, { "type": "O", "frame": 22, "at": 9505.197209869752 }, { "type": "O", "frame": 23, "at": 9505.197209869752 }, { "type": "O", "frame": 24, "at": 9505.197209869752 }, { "type": "O", "frame": 18, "at": 9505.197209869752 }, { "type": "C", "frame": 18, "at": 9513.264708160767 }, { "type": "C", "frame": 24, "at": 9513.264708160767 }, { "type": "C", "frame": 23, "at": 9513.264708160767 }, { "type": "C", "frame": 22, "at": 9513.264708160767 }, { "type": "C", "frame": 21, "at": 9513.264708160767 }, { "type": "O", "frame": 17, "at": 9513.264709 }, { "type": "O", "frame": 18, "at": 9513.264709 }, { "type": "C", "frame": 18, "at": 9518.732584003814 }, { "type": "C", "frame": 17, "at": 9518.732584003814 }, { "type": "O", "frame": 19, "at": 9518.732584003814 }, { "type": "O", "frame": 18, "at": 9518.732584003814 }, { "type": "C", "frame": 18, "at": 9524.077249527343 }, { "type": "C", "frame": 19, "at": 9524.077249527343 }, { "type": "C", "frame": 16, "at": 9524.077249527343 }, { "type": "C", "frame": 15, "at": 9524.077249527343 }, { "type": "C", "frame": 14, "at": 9524.077249527343 }, { "type": "C", "frame": 13, "at": 9524.077249527343 }, { "type": "C", "frame": 12, "at": 9524.077249527343 }, { "type": "C", "frame": 11, "at": 9524.077249527343 }, { "type": "C", "frame": 10, "at": 9524.077249527343 }, { "type": "C", "frame": 9, "at": 9524.077249527343 }, { "type": "C", "frame": 8, "at": 9524.077249527343 }, { "type": "C", "frame": 20, "at": 9524.077249527343 }, { "type": "O", "frame": 6, "at": 9524.07725 }, { "type": "O", "frame": 7, "at": 9524.07725 }, { "type": "O", "frame": 8, "at": 9524.07725 }, { "type": "O", "frame": 9, "at": 9524.07725 }, { "type": "O", "frame": 10, "at": 9524.07725 }, { "type": "O", "frame": 11, "at": 9524.07725 }, { "type": "O", "frame": 12, "at": 9524.07725 }, { "type": "O", "frame": 13, "at": 9524.07725 }, { "type": "O", "frame": 14, "at": 9524.07725 }, { "type": "O", "frame": 15, "at": 9524.07725 }, { "type": "O", "frame": 16, "at": 9524.07725 }, { "type": "O", "frame": 21, "at": 9524.07725 }, { "type": "O", "frame": 22, "at": 9524.07725 }, { "type": "O", "frame": 23, "at": 9524.07725 }, { "type": "O", "frame": 24, "at": 9524.07725 }, { "type": "O", "frame": 18, "at": 9524.07725 }, { "type": "C", "frame": 18, "at": 9525.41900002575 }, { "type": "C", "frame": 24, "at": 9525.41900002575 }, { "type": "O", "frame": 49, "at": 9525.41900002575 }, { "type": "O", "frame": 18, "at": 9525.41900002575 }, { "type": "C", "frame": 18, "at": 9526.760542005539 }, { "type": "C", "frame": 49, "at": 9526.760542005539 }, { "type": "O", "frame": 24, "at": 9526.760542005539 }, { "type": "O", "frame": 18, "at": 9526.760542005539 }, { "type": "C", "frame": 18, "at": 9533.47925003833 }, { "type": "C", "frame": 24, "at": 9533.47925003833 }, { "type": "C", "frame": 23, "at": 9533.47925003833 }, { "type": "C", "frame": 22, "at": 9533.47925003833 }, { "type": "C", "frame": 21, "at": 9533.47925003833 }, { "type": "O", "frame": 17, "at": 9533.47925003833 }, { "type": "O", "frame": 18, "at": 9533.47925003833 }, { "type": "C", "frame": 18, "at": 9537.584875152588 }, { "type": "C", "frame": 17, "at": 9537.584875152588 }, { "type": "O", "frame": 19, "at": 9537.584875152588 }, { "type": "O", "frame": 18, "at": 9537.584875152588 }, { "type": "C", "frame": 18, "at": 9542.951458824158 }, { "type": "C", "frame": 19, "at": 9542.951458824158 }, { "type": "C", "frame": 16, "at": 9542.951458824158 }, { "type": "C", "frame": 15, "at": 9542.951458824158 }, { "type": "C", "frame": 14, "at": 9542.951458824158 }, { "type": "C", "frame": 13, "at": 9542.951458824158 }, { "type": "C", "frame": 12, "at": 9542.951458824158 }, { "type": "C", "frame": 11, "at": 9542.951458824158 }, { "type": "C", "frame": 10, "at": 9542.951458824158 }, { "type": "C", "frame": 9, "at": 9542.951458824158 }, { "type": "C", "frame": 8, "at": 9542.951458824158 }, { "type": "C", "frame": 7, "at": 9542.951458824158 }, { "type": "C", "frame": 6, "at": 9542.951458824158 }, { "type": "O", "frame": 20, "at": 9542.951459 }, { "type": "O", "frame": 8, "at": 9542.951459 }, { "type": "O", "frame": 9, "at": 9542.951459 }, { "type": "O", "frame": 10, "at": 9542.951459 }, { "type": "O", "frame": 11, "at": 9542.951459 }, { "type": "O", "frame": 12, "at": 9542.951459 }, { "type": "O", "frame": 13, "at": 9542.951459 }, { "type": "O", "frame": 14, "at": 9542.951459 }, { "type": "O", "frame": 15, "at": 9542.951459 }, { "type": "O", "frame": 16, "at": 9542.951459 }, { "type": "O", "frame": 21, "at": 9542.951459 }, { "type": "O", "frame": 22, "at": 9542.951459 }, { "type": "O", "frame": 23, "at": 9542.951459 }, { "type": "O", "frame": 31, "at": 9542.951459 }, { "type": "O", "frame": 18, "at": 9542.951459 }, { "type": "C", "frame": 18, "at": 9544.298083970436 }, { "type": "C", "frame": 31, "at": 9544.298083970436 }, { "type": "O", "frame": 24, "at": 9544.298084 }, { "type": "O", "frame": 18, "at": 9544.298084 }, { "type": "C", "frame": 18, "at": 9546.969249943146 }, { "type": "C", "frame": 24, "at": 9546.969249943146 }, { "type": "O", "frame": 29, "at": 9546.96925 }, { "type": "O", "frame": 18, "at": 9546.96925 }, { "type": "C", "frame": 18, "at": 9548.307209051132 }, { "type": "C", "frame": 29, "at": 9548.307209051132 }, { "type": "O", "frame": 24, "at": 9548.307209051132 }, { "type": "O", "frame": 18, "at": 9548.307209051132 }, { "type": "C", "frame": 18, "at": 9552.359833702454 }, { "type": "C", "frame": 24, "at": 9552.359833702454 }, { "type": "C", "frame": 23, "at": 9552.359834740051 }, { "type": "C", "frame": 22, "at": 9552.359834740051 }, { "type": "C", "frame": 21, "at": 9552.359834740051 }, { "type": "O", "frame": 17, "at": 9552.359834740051 }, { "type": "O", "frame": 18, "at": 9552.359834740051 }, { "type": "C", "frame": 18, "at": 9556.5676672901 }, { "type": "C", "frame": 17, "at": 9556.5676672901 }, { "type": "O", "frame": 19, "at": 9556.5676672901 }, { "type": "O", "frame": 18, "at": 9556.5676672901 }, { "type": "C", "frame": 18, "at": 9557.908709041778 }, { "type": "C", "frame": 19, "at": 9557.908709041778 }, { "type": "C", "frame": 16, "at": 9557.908709595093 }, { "type": "C", "frame": 15, "at": 9557.908709595093 }, { "type": "C", "frame": 14, "at": 9557.908709595093 }, { "type": "C", "frame": 13, "at": 9557.908709595093 }, { "type": "C", "frame": 12, "at": 9557.908709595093 }, { "type": "C", "frame": 11, "at": 9557.908709595093 }, { "type": "C", "frame": 10, "at": 9557.908709595093 }, { "type": "C", "frame": 9, "at": 9557.908709595093 }, { "type": "C", "frame": 8, "at": 9557.908709595093 }, { "type": "C", "frame": 20, "at": 9557.908709595093 }, { "type": "O", "frame": 6, "at": 9557.908709595093 }, { "type": "O", "frame": 7, "at": 9557.908709595093 }, { "type": "O", "frame": 8, "at": 9557.908709595093 }, { "type": "O", "frame": 9, "at": 9557.908709595093 }, { "type": "O", "frame": 10, "at": 9557.908709595093 }, { "type": "O", "frame": 11, "at": 9557.908709595093 }, { "type": "O", "frame": 12, "at": 9557.908709595093 }, { "type": "O", "frame": 13, "at": 9557.908709595093 }, { "type": "O", "frame": 14, "at": 9557.908709595093 }, { "type": "O", "frame": 15, "at": 9557.908709595093 }, { "type": "O", "frame": 16, "at": 9557.908709595093 }, { "type": "O", "frame": 21, "at": 9557.908709595093 }, { "type": "O", "frame": 22, "at": 9557.908709595093 }, { "type": "O", "frame": 23, "at": 9557.908709595093 }, { "type": "O", "frame": 24, "at": 9557.908709595093 }, { "type": "O", "frame": 18, "at": 9557.908709595093 }, { "type": "C", "frame": 18, "at": 9565.961416672119 }, { "type": "C", "frame": 24, "at": 9565.961416672119 }, { "type": "C", "frame": 23, "at": 9565.961416672119 }, { "type": "C", "frame": 22, "at": 9565.961416672119 }, { "type": "C", "frame": 21, "at": 9565.961416672119 }, { "type": "O", "frame": 17, "at": 9565.961417 }, { "type": "O", "frame": 18, "at": 9565.961417 }, { "type": "C", "frame": 18, "at": 9571.51308421344 }, { "type": "C", "frame": 17, "at": 9571.51308421344 }, { "type": "C", "frame": 16, "at": 9571.51308421344 }, { "type": "C", "frame": 15, "at": 9571.51308421344 }, { "type": "C", "frame": 14, "at": 9571.51308421344 }, { "type": "C", "frame": 13, "at": 9571.51308421344 }, { "type": "C", "frame": 12, "at": 9571.51308421344 }, { "type": "C", "frame": 11, "at": 9571.51308421344 }, { "type": "C", "frame": 10, "at": 9571.51308421344 }, { "type": "C", "frame": 9, "at": 9571.51308421344 }, { "type": "C", "frame": 8, "at": 9571.51308421344 }, { "type": "O", "frame": 18, "at": 9571.51308421344 }, { "type": "C", "frame": 18, "at": 9572.85758394564 }, { "type": "C", "frame": 7, "at": 9572.85758394564 }, { "type": "C", "frame": 6, "at": 9572.85758394564 }, { "type": "O", "frame": 20, "at": 9572.857584 }, { "type": "O", "frame": 8, "at": 9572.857584 }, { "type": "O", "frame": 9, "at": 9572.857584 }, { "type": "O", "frame": 10, "at": 9572.857584 }, { "type": "O", "frame": 11, "at": 9572.857584 }, { "type": "O", "frame": 12, "at": 9572.857584 }, { "type": "O", "frame": 13, "at": 9572.857584 }, { "type": "O", "frame": 14, "at": 9572.857584 }, { "type": "O", "frame": 15, "at": 9572.857584 }, { "type": "O", "frame": 16, "at": 9572.857584 }, { "type": "O", "frame": 21, "at": 9572.857584 }, { "type": "O", "frame": 22, "at": 9572.857584 }, { "type": "O", "frame": 23, "at": 9572.857584 }, { "type": "O", "frame": 24, "at": 9572.857584 }, { "type": "O", "frame": 18, "at": 9572.857584 }, { "type": "C", "frame": 18, "at": 9576.871791839965 }, { "type": "C", "frame": 24, "at": 9576.871791839965 }, { "type": "O", "frame": 25, "at": 9576.871792 }, { "type": "O", "frame": 18, "at": 9576.871792 }, { "type": "C", "frame": 18, "at": 9578.212000053589 }, { "type": "C", "frame": 25, "at": 9578.212000053589 }, { "type": "O", "frame": 24, "at": 9578.212000053589 }, { "type": "O", "frame": 18, "at": 9578.212000053589 }, { "type": "C", "frame": 18, "at": 9580.904749977111 }, { "type": "C", "frame": 24, "at": 9580.904749977111 }, { "type": "C", "frame": 23, "at": 9580.904749977111 }, { "type": "C", "frame": 22, "at": 9580.904749977111 }, { "type": "C", "frame": 21, "at": 9580.904749977111 }, { "type": "O", "frame": 17, "at": 9580.90475 }, { "type": "O", "frame": 18, "at": 9580.90475 }, { "type": "C", "frame": 18, "at": 9585.008000026703 }, { "type": "C", "frame": 17, "at": 9585.008000026703 }, { "type": "O", "frame": 19, "at": 9585.008000026703 }, { "type": "O", "frame": 18, "at": 9585.008000026703 }, { "type": "C", "frame": 18, "at": 9591.700042350769 }, { "type": "C", "frame": 19, "at": 9591.700042350769 }, { "type": "C", "frame": 16, "at": 9591.700042350769 }, { "type": "C", "frame": 15, "at": 9591.700042350769 }, { "type": "C", "frame": 14, "at": 9591.700042350769 }, { "type": "C", "frame": 13, "at": 9591.700042350769 }, { "type": "C", "frame": 12, "at": 9591.700042350769 }, { "type": "C", "frame": 11, "at": 9591.700042350769 }, { "type": "C", "frame": 10, "at": 9591.700042350769 }, { "type": "C", "frame": 9, "at": 9591.700042350769 }, { "type": "C", "frame": 8, "at": 9591.700042350769 }, { "type": "C", "frame": 20, "at": 9591.700042350769 }, { "type": "O", "frame": 6, "at": 9591.700042350769 }, { "type": "O", "frame": 7, "at": 9591.700042350769 }, { "type": "O", "frame": 8, "at": 9591.700042350769 }, { "type": "O", "frame": 9, "at": 9591.700042350769 }, { "type": "O", "frame": 10, "at": 9591.700042350769 }, { "type": "O", "frame": 11, "at": 9591.700042350769 }, { "type": "O", "frame": 12, "at": 9591.700042350769 }, { "type": "O", "frame": 13, "at": 9591.700042350769 }, { "type": "O", "frame": 14, "at": 9591.700042350769 }, { "type": "O", "frame": 15, "at": 9591.700042350769 }, { "type": "O", "frame": 16, "at": 9591.700042350769 }, { "type": "O", "frame": 21, "at": 9591.700042350769 }, { "type": "O", "frame": 22, "at": 9591.700042350769 }, { "type": "O", "frame": 23, "at": 9591.700042350769 }, { "type": "O", "frame": 24, "at": 9591.700042350769 }, { "type": "O", "frame": 18, "at": 9591.700042350769 }, { "type": "C", "frame": 18, "at": 9597.091666927521 }, { "type": "C", "frame": 24, "at": 9597.091666927521 }, { "type": "O", "frame": 25, "at": 9597.091667 }, { "type": "O", "frame": 18, "at": 9597.091667 }, { "type": "C", "frame": 18, "at": 9598.43312496299 }, { "type": "C", "frame": 25, "at": 9598.43312496299 }, { "type": "O", "frame": 24, "at": 9598.433125 }, { "type": "O", "frame": 18, "at": 9598.433125 }, { "type": "C", "frame": 18, "at": 9599.780042033195 }, { "type": "C", "frame": 24, "at": 9599.780042033195 }, { "type": "C", "frame": 23, "at": 9599.780042033195 }, { "type": "C", "frame": 22, "at": 9599.780042033195 }, { "type": "C", "frame": 21, "at": 9599.780042033195 }, { "type": "O", "frame": 17, "at": 9599.780042033195 }, { "type": "O", "frame": 18, "at": 9599.780042033195 }, { "type": "C", "frame": 18, "at": 9603.942750282471 }, { "type": "C", "frame": 17, "at": 9603.942750282471 }, { "type": "O", "frame": 19, "at": 9603.942750282471 }, { "type": "O", "frame": 18, "at": 9603.942750282471 }, { "type": "C", "frame": 18, "at": 9610.605999969483 }, { "type": "C", "frame": 19, "at": 9610.605999969483 }, { "type": "C", "frame": 16, "at": 9610.60600017566 }, { "type": "C", "frame": 15, "at": 9610.60600017566 }, { "type": "C", "frame": 14, "at": 9610.60600017566 }, { "type": "C", "frame": 13, "at": 9610.60600017566 }, { "type": "C", "frame": 12, "at": 9610.60600017566 }, { "type": "C", "frame": 11, "at": 9610.60600017566 }, { "type": "C", "frame": 10, "at": 9610.60600017566 }, { "type": "C", "frame": 9, "at": 9610.60600017566 }, { "type": "C", "frame": 8, "at": 9610.60600017566 }, { "type": "C", "frame": 7, "at": 9610.60600017566 }, { "type": "C", "frame": 6, "at": 9610.60600017566 }, { "type": "O", "frame": 20, "at": 9610.60600017566 }, { "type": "O", "frame": 8, "at": 9610.60600017566 }, { "type": "O", "frame": 9, "at": 9610.60600017566 }, { "type": "O", "frame": 10, "at": 9610.60600017566 }, { "type": "O", "frame": 11, "at": 9610.60600017566 }, { "type": "O", "frame": 12, "at": 9610.60600017566 }, { "type": "O", "frame": 13, "at": 9610.60600017566 }, { "type": "O", "frame": 14, "at": 9610.60600017566 }, { "type": "O", "frame": 15, "at": 9610.60600017566 }, { "type": "O", "frame": 16, "at": 9610.60600017566 }, { "type": "O", "frame": 21, "at": 9610.60600017566 }, { "type": "O", "frame": 22, "at": 9610.60600017566 }, { "type": "O", "frame": 23, "at": 9610.60600017566 }, { "type": "O", "frame": 24, "at": 9610.60600017566 }, { "type": "O", "frame": 18, "at": 9610.60600017566 }, { "type": "C", "frame": 18, "at": 9618.67937474823 }, { "type": "C", "frame": 24, "at": 9618.67937474823 }, { "type": "C", "frame": 23, "at": 9618.67937474823 }, { "type": "C", "frame": 22, "at": 9618.67937474823 }, { "type": "C", "frame": 21, "at": 9618.67937474823 }, { "type": "O", "frame": 17, "at": 9618.679375 }, { "type": "O", "frame": 18, "at": 9618.679375 }, { "type": "C", "frame": 18, "at": 9624.124208755493 }, { "type": "C", "frame": 17, "at": 9624.124208755493 }, { "type": "O", "frame": 19, "at": 9624.124209 }, { "type": "O", "frame": 18, "at": 9624.124209 }, { "type": "C", "frame": 18, "at": 9625.477209044822 }, { "type": "C", "frame": 19, "at": 9625.477209044822 }, { "type": "C", "frame": 16, "at": 9625.477209044822 }, { "type": "C", "frame": 15, "at": 9625.477209044822 }, { "type": "C", "frame": 14, "at": 9625.477209044822 }, { "type": "C", "frame": 13, "at": 9625.477209044822 }, { "type": "C", "frame": 12, "at": 9625.477209044822 }, { "type": "C", "frame": 11, "at": 9625.477209044822 }, { "type": "C", "frame": 10, "at": 9625.477209044822 }, { "type": "C", "frame": 9, "at": 9625.477209044822 }, { "type": "C", "frame": 8, "at": 9625.477209044822 }, { "type": "C", "frame": 20, "at": 9625.477209044822 }, { "type": "O", "frame": 6, "at": 9625.477209044822 }, { "type": "O", "frame": 7, "at": 9625.477209044822 }, { "type": "O", "frame": 8, "at": 9625.477209044822 }, { "type": "O", "frame": 9, "at": 9625.477209044822 }, { "type": "O", "frame": 10, "at": 9625.477209044822 }, { "type": "O", "frame": 11, "at": 9625.477209044822 }, { "type": "O", "frame": 12, "at": 9625.477209044822 }, { "type": "O", "frame": 13, "at": 9625.477209044822 }, { "type": "O", "frame": 14, "at": 9625.477209044822 }, { "type": "O", "frame": 15, "at": 9625.477209044822 }, { "type": "O", "frame": 16, "at": 9625.477209044822 }, { "type": "O", "frame": 21, "at": 9625.477209044822 }, { "type": "O", "frame": 22, "at": 9625.477209044822 }, { "type": "O", "frame": 23, "at": 9625.477209044822 }, { "type": "O", "frame": 24, "at": 9625.477209044822 }, { "type": "O", "frame": 18, "at": 9625.477209044822 }, { "type": "C", "frame": 18, "at": 9633.555334 }, { "type": "C", "frame": 24, "at": 9633.555334 }, { "type": "C", "frame": 23, "at": 9633.555334 }, { "type": "C", "frame": 22, "at": 9633.555334 }, { "type": "C", "frame": 21, "at": 9633.555334 }, { "type": "O", "frame": 17, "at": 9633.555334 }, { "type": "O", "frame": 18, "at": 9633.555334 }, { "type": "C", "frame": 18, "at": 9637.638250259766 }, { "type": "C", "frame": 17, "at": 9637.638250259766 }, { "type": "O", "frame": 19, "at": 9637.638250259766 }, { "type": "O", "frame": 18, "at": 9637.638250259766 }, { "type": "C", "frame": 18, "at": 9644.309167510986 }, { "type": "C", "frame": 19, "at": 9644.309167510986 }, { "type": "C", "frame": 16, "at": 9644.309167770753 }, { "type": "C", "frame": 15, "at": 9644.309167770753 }, { "type": "C", "frame": 14, "at": 9644.309167770753 }, { "type": "C", "frame": 13, "at": 9644.309167770753 }, { "type": "C", "frame": 12, "at": 9644.309167770753 }, { "type": "C", "frame": 11, "at": 9644.309167770753 }, { "type": "C", "frame": 10, "at": 9644.309167770753 }, { "type": "C", "frame": 9, "at": 9644.309167770753 }, { "type": "C", "frame": 8, "at": 9644.309167770753 }, { "type": "C", "frame": 7, "at": 9644.309167770753 }, { "type": "C", "frame": 6, "at": 9644.309167770753 }, { "type": "O", "frame": 20, "at": 9644.309167770753 }, { "type": "O", "frame": 8, "at": 9644.309167770753 }, { "type": "O", "frame": 9, "at": 9644.309167770753 }, { "type": "O", "frame": 10, "at": 9644.309167770753 }, { "type": "O", "frame": 11, "at": 9644.309167770753 }, { "type": "O", "frame": 12, "at": 9644.309167770753 }, { "type": "O", "frame": 13, "at": 9644.309167770753 }, { "type": "O", "frame": 14, "at": 9644.309167770753 }, { "type": "O", "frame": 15, "at": 9644.309167770753 }, { "type": "O", "frame": 16, "at": 9644.309167770753 }, { "type": "O", "frame": 21, "at": 9644.309167770753 }, { "type": "O", "frame": 22, "at": 9644.309167770753 }, { "type": "O", "frame": 23, "at": 9644.309167770753 }, { "type": "O", "frame": 24, "at": 9644.309167770753 }, { "type": "O", "frame": 18, "at": 9644.309167770753 }, { "type": "C", "frame": 18, "at": 9647.00012502307 }, { "type": "C", "frame": 24, "at": 9647.00012502307 }, { "type": "O", "frame": 25, "at": 9647.00012502307 }, { "type": "O", "frame": 18, "at": 9647.00012502307 }, { "type": "C", "frame": 18, "at": 9648.341334053994 }, { "type": "C", "frame": 25, "at": 9648.341334053994 }, { "type": "O", "frame": 24, "at": 9648.341334053994 }, { "type": "O", "frame": 18, "at": 9648.341334053994 }, { "type": "C", "frame": 18, "at": 9652.3897091297 }, { "type": "C", "frame": 24, "at": 9652.3897091297 }, { "type": "C", "frame": 23, "at": 9652.389709564392 }, { "type": "C", "frame": 22, "at": 9652.389709564392 }, { "type": "C", "frame": 21, "at": 9652.389709564392 }, { "type": "O", "frame": 17, "at": 9652.389709564392 }, { "type": "O", "frame": 18, "at": 9652.389709564392 }, { "type": "C", "frame": 18, "at": 9657.90879202307 }, { "type": "C", "frame": 17, "at": 9657.90879202307 }, { "type": "O", "frame": 19, "at": 9657.90879202307 }, { "type": "O", "frame": 18, "at": 9657.90879202307 }, { "type": "C", "frame": 18, "at": 9660.592667083924 }, { "type": "C", "frame": 19, "at": 9660.592667083924 }, { "type": "C", "frame": 16, "at": 9660.592667083924 }, { "type": "C", "frame": 15, "at": 9660.592667083924 }, { "type": "C", "frame": 14, "at": 9660.592667083924 }, { "type": "C", "frame": 13, "at": 9660.592667083924 }, { "type": "C", "frame": 12, "at": 9660.592667083924 }, { "type": "C", "frame": 11, "at": 9660.592667083924 }, { "type": "C", "frame": 10, "at": 9660.592667083924 }, { "type": "C", "frame": 9, "at": 9660.592667083924 }, { "type": "C", "frame": 8, "at": 9660.592667083924 }, { "type": "C", "frame": 20, "at": 9660.592667083924 }, { "type": "O", "frame": 6, "at": 9660.592667083924 }, { "type": "O", "frame": 7, "at": 9660.592667083924 }, { "type": "O", "frame": 8, "at": 9660.592667083924 }, { "type": "O", "frame": 9, "at": 9660.592667083924 }, { "type": "O", "frame": 10, "at": 9660.592667083924 }, { "type": "O", "frame": 11, "at": 9660.592667083924 }, { "type": "O", "frame": 12, "at": 9660.592667083924 }, { "type": "O", "frame": 13, "at": 9660.592667083924 }, { "type": "O", "frame": 14, "at": 9660.592667083924 }, { "type": "O", "frame": 15, "at": 9660.592667083924 }, { "type": "O", "frame": 16, "at": 9660.592667083924 }, { "type": "O", "frame": 21, "at": 9660.592667083924 }, { "type": "O", "frame": 22, "at": 9660.592667083924 }, { "type": "O", "frame": 23, "at": 9660.592667083924 }, { "type": "O", "frame": 24, "at": 9660.592667083924 }, { "type": "O", "frame": 18, "at": 9660.592667083924 }, { "type": "C", "frame": 18, "at": 9668.647624389832 }, { "type": "C", "frame": 24, "at": 9668.647624389832 }, { "type": "C", "frame": 23, "at": 9668.647624389832 }, { "type": "C", "frame": 22, "at": 9668.647624389832 }, { "type": "C", "frame": 21, "at": 9668.647624389832 }, { "type": "O", "frame": 17, "at": 9668.647625 }, { "type": "O", "frame": 18, "at": 9668.647625 }, { "type": "C", "frame": 18, "at": 9672.70616677475 }, { "type": "C", "frame": 17, "at": 9672.70616677475 }, { "type": "O", "frame": 19, "at": 9672.706167 }, { "type": "O", "frame": 18, "at": 9672.706167 }, { "type": "C", "frame": 18, "at": 9679.360749977295 }, { "type": "C", "frame": 19, "at": 9679.360749977295 }, { "type": "C", "frame": 16, "at": 9679.360749977295 }, { "type": "C", "frame": 15, "at": 9679.360749977295 }, { "type": "C", "frame": 14, "at": 9679.360749977295 }, { "type": "C", "frame": 13, "at": 9679.360749977295 }, { "type": "C", "frame": 12, "at": 9679.360749977295 }, { "type": "C", "frame": 11, "at": 9679.360749977295 }, { "type": "C", "frame": 10, "at": 9679.360749977295 }, { "type": "C", "frame": 9, "at": 9679.360749977295 }, { "type": "C", "frame": 8, "at": 9679.360749977295 }, { "type": "C", "frame": 7, "at": 9679.360749977295 }, { "type": "C", "frame": 6, "at": 9679.360749977295 }, { "type": "O", "frame": 20, "at": 9679.36075 }, { "type": "O", "frame": 8, "at": 9679.36075 }, { "type": "O", "frame": 9, "at": 9679.36075 }, { "type": "O", "frame": 10, "at": 9679.36075 }, { "type": "O", "frame": 11, "at": 9679.36075 }, { "type": "O", "frame": 12, "at": 9679.36075 }, { "type": "O", "frame": 13, "at": 9679.36075 }, { "type": "O", "frame": 14, "at": 9679.36075 }, { "type": "O", "frame": 15, "at": 9679.36075 }, { "type": "O", "frame": 16, "at": 9679.36075 }, { "type": "O", "frame": 21, "at": 9679.36075 }, { "type": "O", "frame": 22, "at": 9679.36075 }, { "type": "O", "frame": 23, "at": 9679.36075 }, { "type": "O", "frame": 24, "at": 9679.36075 }, { "type": "O", "frame": 18, "at": 9679.36075 }, { "type": "C", "frame": 18, "at": 9688.773750106811 }, { "type": "C", "frame": 24, "at": 9688.773750106811 }, { "type": "C", "frame": 23, "at": 9688.773750106811 }, { "type": "C", "frame": 22, "at": 9688.773750106811 }, { "type": "C", "frame": 21, "at": 9688.773750106811 }, { "type": "O", "frame": 17, "at": 9688.773750106811 }, { "type": "O", "frame": 18, "at": 9688.773750106811 }, { "type": "C", "frame": 18, "at": 9692.919334106446 }, { "type": "C", "frame": 17, "at": 9692.919334106446 }, { "type": "O", "frame": 19, "at": 9692.919334106446 }, { "type": "O", "frame": 18, "at": 9692.919334106446 }, { "type": "C", "frame": 18, "at": 9698.273833816895 }, { "type": "C", "frame": 19, "at": 9698.273833816895 }, { "type": "C", "frame": 16, "at": 9698.273834030151 }, { "type": "C", "frame": 15, "at": 9698.273834030151 }, { "type": "C", "frame": 14, "at": 9698.273834030151 }, { "type": "C", "frame": 13, "at": 9698.273834030151 }, { "type": "C", "frame": 12, "at": 9698.273834030151 }, { "type": "C", "frame": 11, "at": 9698.273834030151 }, { "type": "C", "frame": 10, "at": 9698.273834030151 }, { "type": "C", "frame": 9, "at": 9698.273834030151 }, { "type": "C", "frame": 8, "at": 9698.273834030151 }, { "type": "C", "frame": 20, "at": 9698.273834030151 }, { "type": "O", "frame": 6, "at": 9698.273834030151 }, { "type": "O", "frame": 7, "at": 9698.273834030151 }, { "type": "O", "frame": 8, "at": 9698.273834030151 }, { "type": "O", "frame": 9, "at": 9698.273834030151 }, { "type": "O", "frame": 10, "at": 9698.273834030151 }, { "type": "O", "frame": 11, "at": 9698.273834030151 }, { "type": "O", "frame": 12, "at": 9698.273834030151 }, { "type": "O", "frame": 13, "at": 9698.273834030151 }, { "type": "O", "frame": 14, "at": 9698.273834030151 }, { "type": "O", "frame": 15, "at": 9698.273834030151 }, { "type": "O", "frame": 16, "at": 9698.273834030151 }, { "type": "O", "frame": 18, "at": 9698.273834030151 }, { "type": "C", "frame": 18, "at": 9699.618916998275 }, { "type": "O", "frame": 21, "at": 9699.618917 }, { "type": "O", "frame": 22, "at": 9699.618917 }, { "type": "O", "frame": 23, "at": 9699.618917 }, { "type": "O", "frame": 24, "at": 9699.618917 }, { "type": "O", "frame": 18, "at": 9699.618917 }, { "type": "C", "frame": 18, "at": 9704.985750209991 }, { "type": "C", "frame": 24, "at": 9704.985750209991 }, { "type": "O", "frame": 31, "at": 9704.985750209991 }, { "type": "O", "frame": 18, "at": 9704.985750209991 }, { "type": "C", "frame": 18, "at": 9706.322999994278 }, { "type": "C", "frame": 31, "at": 9706.322999994278 }, { "type": "O", "frame": 24, "at": 9706.323 }, { "type": "O", "frame": 18, "at": 9706.323 }, { "type": "C", "frame": 18, "at": 9707.669833944321 }, { "type": "C", "frame": 24, "at": 9707.669833944321 }, { "type": "C", "frame": 23, "at": 9707.669834625427 }, { "type": "C", "frame": 22, "at": 9707.669834625427 }, { "type": "C", "frame": 21, "at": 9707.669834625427 }, { "type": "O", "frame": 17, "at": 9707.669834625427 }, { "type": "O", "frame": 18, "at": 9707.669834625427 }, { "type": "C", "frame": 18, "at": 9711.76029191626 }, { "type": "C", "frame": 17, "at": 9711.76029191626 }, { "type": "O", "frame": 19, "at": 9711.760292 }, { "type": "O", "frame": 18, "at": 9711.760292 }, { "type": "C", "frame": 18, "at": 9718.418624824708 }, { "type": "C", "frame": 19, "at": 9718.418624824708 }, { "type": "C", "frame": 16, "at": 9718.418626556762 }, { "type": "C", "frame": 15, "at": 9718.418626556762 }, { "type": "C", "frame": 14, "at": 9718.418626556762 }, { "type": "C", "frame": 13, "at": 9718.418626556762 }, { "type": "C", "frame": 12, "at": 9718.418626556762 }, { "type": "C", "frame": 11, "at": 9718.418626556762 }, { "type": "C", "frame": 10, "at": 9718.418626556762 }, { "type": "C", "frame": 9, "at": 9718.418626556762 }, { "type": "C", "frame": 8, "at": 9718.418626556762 }, { "type": "C", "frame": 7, "at": 9718.418626556762 }, { "type": "C", "frame": 6, "at": 9718.418626556762 }, { "type": "O", "frame": 20, "at": 9718.418626556762 }, { "type": "O", "frame": 8, "at": 9718.418626556762 }, { "type": "O", "frame": 9, "at": 9718.418626556762 }, { "type": "O", "frame": 10, "at": 9718.418626556762 }, { "type": "O", "frame": 11, "at": 9718.418626556762 }, { "type": "O", "frame": 12, "at": 9718.418626556762 }, { "type": "O", "frame": 13, "at": 9718.418626556762 }, { "type": "O", "frame": 14, "at": 9718.418626556762 }, { "type": "O", "frame": 15, "at": 9718.418626556762 }, { "type": "O", "frame": 16, "at": 9718.418626556762 }, { "type": "O", "frame": 21, "at": 9718.418626556762 }, { "type": "O", "frame": 22, "at": 9718.418626556762 }, { "type": "O", "frame": 23, "at": 9718.418626556762 }, { "type": "O", "frame": 24, "at": 9718.418626556762 }, { "type": "O", "frame": 18, "at": 9718.418626556762 }, { "type": "C", "frame": 18, "at": 9721.099208953858 }, { "type": "C", "frame": 24, "at": 9721.099208953858 }, { "type": "O", "frame": 38, "at": 9721.099209 }, { "type": "O", "frame": 18, "at": 9721.099209 }, { "type": "C", "frame": 18, "at": 9722.436875034698 }, { "type": "C", "frame": 38, "at": 9722.436875034698 }, { "type": "O", "frame": 49, "at": 9722.436875034698 }, { "type": "O", "frame": 18, "at": 9722.436875034698 }, { "type": "C", "frame": 18, "at": 9723.778084053993 }, { "type": "C", "frame": 49, "at": 9723.778084053993 }, { "type": "O", "frame": 24, "at": 9723.778084053993 }, { "type": "O", "frame": 18, "at": 9723.778084053993 }, { "type": "C", "frame": 18, "at": 9726.492209156402 }, { "type": "C", "frame": 24, "at": 9726.492209156402 }, { "type": "C", "frame": 23, "at": 9726.492209156402 }, { "type": "C", "frame": 22, "at": 9726.492209156402 }, { "type": "C", "frame": 21, "at": 9726.492209156402 }, { "type": "O", "frame": 17, "at": 9726.492209156402 }, { "type": "O", "frame": 18, "at": 9726.492209156402 }, { "type": "C", "frame": 18, "at": 9730.62954191626 }, { "type": "C", "frame": 17, "at": 9730.62954191626 }, { "type": "O", "frame": 19, "at": 9730.629542 }, { "type": "O", "frame": 18, "at": 9730.629542 }, { "type": "C", "frame": 18, "at": 9738.62950003833 }, { "type": "C", "frame": 19, "at": 9738.62950003833 }, { "type": "C", "frame": 16, "at": 9738.62950003833 }, { "type": "C", "frame": 15, "at": 9738.62950003833 }, { "type": "C", "frame": 14, "at": 9738.62950003833 }, { "type": "C", "frame": 13, "at": 9738.62950003833 }, { "type": "C", "frame": 12, "at": 9738.62950003833 }, { "type": "C", "frame": 11, "at": 9738.62950003833 }, { "type": "C", "frame": 10, "at": 9738.62950003833 }, { "type": "C", "frame": 9, "at": 9738.62950003833 }, { "type": "C", "frame": 8, "at": 9738.62950003833 }, { "type": "C", "frame": 20, "at": 9738.62950003833 }, { "type": "O", "frame": 6, "at": 9738.62950003833 }, { "type": "O", "frame": 7, "at": 9738.62950003833 }, { "type": "O", "frame": 8, "at": 9738.62950003833 }, { "type": "O", "frame": 9, "at": 9738.62950003833 }, { "type": "O", "frame": 10, "at": 9738.62950003833 }, { "type": "O", "frame": 11, "at": 9738.62950003833 }, { "type": "O", "frame": 12, "at": 9738.62950003833 }, { "type": "O", "frame": 13, "at": 9738.62950003833 }, { "type": "O", "frame": 14, "at": 9738.62950003833 }, { "type": "O", "frame": 15, "at": 9738.62950003833 }, { "type": "O", "frame": 16, "at": 9738.62950003833 }, { "type": "O", "frame": 21, "at": 9738.62950003833 }, { "type": "O", "frame": 22, "at": 9738.62950003833 }, { "type": "O", "frame": 23, "at": 9738.62950003833 }, { "type": "O", "frame": 29, "at": 9738.62950003833 }, { "type": "O", "frame": 18, "at": 9738.62950003833 }, { "type": "C", "frame": 18, "at": 9739.972624985694 }, { "type": "C", "frame": 29, "at": 9739.972624985694 }, { "type": "O", "frame": 49, "at": 9739.972625 }, { "type": "O", "frame": 18, "at": 9739.972625 }, { "type": "C", "frame": 18, "at": 9741.314334017754 }, { "type": "C", "frame": 49, "at": 9741.314334017754 }, { "type": "O", "frame": 24, "at": 9741.314334017754 }, { "type": "O", "frame": 18, "at": 9741.314334017754 }, { "type": "C", "frame": 18, "at": 9745.347124660859 }, { "type": "C", "frame": 24, "at": 9745.347124660859 }, { "type": "O", "frame": 25, "at": 9745.347125 }, { "type": "O", "frame": 18, "at": 9745.347125 }, { "type": "C", "frame": 18, "at": 9746.681958979607 }, { "type": "C", "frame": 25, "at": 9746.681958979607 }, { "type": "O", "frame": 24, "at": 9746.681959 }, { "type": "O", "frame": 18, "at": 9746.681959 }, { "type": "C", "frame": 18, "at": 9748.031583991416 }, { "type": "C", "frame": 24, "at": 9748.031583991416 }, { "type": "C", "frame": 23, "at": 9748.031583991416 }, { "type": "C", "frame": 22, "at": 9748.031583991416 }, { "type": "C", "frame": 21, "at": 9748.031583991416 }, { "type": "O", "frame": 17, "at": 9748.031584 }, { "type": "O", "frame": 18, "at": 9748.031584 }, { "type": "C", "frame": 18, "at": 9752.164458965668 }, { "type": "C", "frame": 17, "at": 9752.164458965668 }, { "type": "O", "frame": 19, "at": 9752.164459 }, { "type": "O", "frame": 18, "at": 9752.164459 }, { "type": "C", "frame": 18, "at": 9758.874708900817 }, { "type": "C", "frame": 19, "at": 9758.874708900817 }, { "type": "C", "frame": 16, "at": 9758.874708900817 }, { "type": "C", "frame": 15, "at": 9758.874708900817 }, { "type": "C", "frame": 14, "at": 9758.874708900817 }, { "type": "C", "frame": 13, "at": 9758.874708900817 }, { "type": "C", "frame": 12, "at": 9758.874708900817 }, { "type": "C", "frame": 11, "at": 9758.874708900817 }, { "type": "C", "frame": 10, "at": 9758.874708900817 }, { "type": "C", "frame": 9, "at": 9758.874708900817 }, { "type": "C", "frame": 8, "at": 9758.874708900817 }, { "type": "C", "frame": 7, "at": 9758.874708900817 }, { "type": "C", "frame": 6, "at": 9758.874708900817 }, { "type": "O", "frame": 20, "at": 9758.874709 }, { "type": "O", "frame": 8, "at": 9758.874709 }, { "type": "O", "frame": 9, "at": 9758.874709 }, { "type": "O", "frame": 10, "at": 9758.874709 }, { "type": "O", "frame": 11, "at": 9758.874709 }, { "type": "O", "frame": 12, "at": 9758.874709 }, { "type": "O", "frame": 13, "at": 9758.874709 }, { "type": "O", "frame": 14, "at": 9758.874709 }, { "type": "O", "frame": 15, "at": 9758.874709 }, { "type": "O", "frame": 16, "at": 9758.874709 }, { "type": "O", "frame": 21, "at": 9758.874709 }, { "type": "O", "frame": 22, "at": 9758.874709 }, { "type": "O", "frame": 23, "at": 9758.874709 }, { "type": "O", "frame": 24, "at": 9758.874709 }, { "type": "O", "frame": 18, "at": 9758.874709 }, { "type": "C", "frame": 18, "at": 9764.293208946594 }, { "type": "C", "frame": 24, "at": 9764.293208946594 }, { "type": "O", "frame": 25, "at": 9764.293209 }, { "type": "O", "frame": 18, "at": 9764.293209 }, { "type": "C", "frame": 18, "at": 9765.635458989509 }, { "type": "C", "frame": 25, "at": 9765.635458989509 }, { "type": "O", "frame": 24, "at": 9765.635459 }, { "type": "O", "frame": 18, "at": 9765.635459 }, { "type": "C", "frame": 18, "at": 9766.983042055495 }, { "type": "C", "frame": 24, "at": 9766.983042055495 }, { "type": "C", "frame": 23, "at": 9766.983042055495 }, { "type": "C", "frame": 22, "at": 9766.983042055495 }, { "type": "C", "frame": 21, "at": 9766.983042055495 }, { "type": "O", "frame": 17, "at": 9766.983042055495 }, { "type": "O", "frame": 18, "at": 9766.983042055495 }, { "type": "C", "frame": 18, "at": 9772.571459053222 }, { "type": "C", "frame": 17, "at": 9772.571459053222 }, { "type": "O", "frame": 19, "at": 9772.571459053222 }, { "type": "O", "frame": 18, "at": 9772.571459053222 }, { "type": "C", "frame": 18, "at": 9779.225750152955 }, { "type": "C", "frame": 19, "at": 9779.225750152955 }, { "type": "C", "frame": 16, "at": 9779.225750152955 }, { "type": "C", "frame": 15, "at": 9779.225750152955 }, { "type": "C", "frame": 14, "at": 9779.225750152955 }, { "type": "C", "frame": 13, "at": 9779.225750152955 }, { "type": "C", "frame": 12, "at": 9779.225750152955 }, { "type": "C", "frame": 11, "at": 9779.225750152955 }, { "type": "C", "frame": 10, "at": 9779.225750152955 }, { "type": "C", "frame": 9, "at": 9779.225750152955 }, { "type": "C", "frame": 8, "at": 9779.225750152955 }, { "type": "O", "frame": 18, "at": 9779.225750152955 }, { "type": "C", "frame": 18, "at": 9780.571708948135 }, { "type": "C", "frame": 20, "at": 9780.571708948135 }, { "type": "O", "frame": 6, "at": 9780.571709 }, { "type": "O", "frame": 7, "at": 9780.571709 }, { "type": "O", "frame": 8, "at": 9780.571709 }, { "type": "O", "frame": 9, "at": 9780.571709 }, { "type": "O", "frame": 10, "at": 9780.571709 }, { "type": "O", "frame": 11, "at": 9780.571709 }, { "type": "O", "frame": 12, "at": 9780.571709 }, { "type": "O", "frame": 13, "at": 9780.571709 }, { "type": "O", "frame": 14, "at": 9780.571709 }, { "type": "O", "frame": 15, "at": 9780.571709 }, { "type": "O", "frame": 16, "at": 9780.571709 }, { "type": "O", "frame": 21, "at": 9780.571709 }, { "type": "O", "frame": 22, "at": 9780.571709 }, { "type": "O", "frame": 23, "at": 9780.571709 }, { "type": "O", "frame": 24, "at": 9780.571709 }, { "type": "O", "frame": 18, "at": 9780.571709 }, { "type": "C", "frame": 18, "at": 9781.914584003815 }, { "type": "C", "frame": 24, "at": 9781.914584003815 }, { "type": "O", "frame": 25, "at": 9781.914584003815 }, { "type": "O", "frame": 18, "at": 9781.914584003815 }, { "type": "C", "frame": 18, "at": 9783.254584033379 }, { "type": "C", "frame": 25, "at": 9783.254584033379 }, { "type": "O", "frame": 24, "at": 9783.254584033379 }, { "type": "O", "frame": 18, "at": 9783.254584033379 }, { "type": "C", "frame": 18, "at": 9785.943416998276 }, { "type": "C", "frame": 24, "at": 9785.943416998276 }, { "type": "O", "frame": 31, "at": 9785.943417 }, { "type": "O", "frame": 18, "at": 9785.943417 }, { "type": "C", "frame": 18, "at": 9787.291541980927 }, { "type": "C", "frame": 31, "at": 9787.291541980927 }, { "type": "O", "frame": 24, "at": 9787.291542 }, { "type": "O", "frame": 18, "at": 9787.291542 }, { "type": "C", "frame": 18, "at": 9788.650791949456 }, { "type": "C", "frame": 24, "at": 9788.650791949456 }, { "type": "C", "frame": 23, "at": 9788.650792442688 }, { "type": "C", "frame": 22, "at": 9788.650792442688 }, { "type": "C", "frame": 21, "at": 9788.650792442688 }, { "type": "O", "frame": 17, "at": 9788.650792442688 }, { "type": "O", "frame": 18, "at": 9788.650792442688 }, { "type": "C", "frame": 18, "at": 9792.752084133332 }, { "type": "C", "frame": 17, "at": 9792.752084133332 }, { "type": "O", "frame": 19, "at": 9792.752084133332 }, { "type": "O", "frame": 18, "at": 9792.752084133332 }, { "type": "C", "frame": 18, "at": 9800.739292366394 }, { "type": "C", "frame": 19, "at": 9800.739292366394 }, { "type": "C", "frame": 16, "at": 9800.739292465576 }, { "type": "C", "frame": 15, "at": 9800.739292465576 }, { "type": "C", "frame": 14, "at": 9800.739292465576 }, { "type": "C", "frame": 13, "at": 9800.739292465576 }, { "type": "C", "frame": 12, "at": 9800.739292465576 }, { "type": "C", "frame": 11, "at": 9800.739292465576 }, { "type": "C", "frame": 10, "at": 9800.739292465576 }, { "type": "C", "frame": 9, "at": 9800.739292465576 }, { "type": "C", "frame": 8, "at": 9800.739292465576 }, { "type": "C", "frame": 7, "at": 9800.739292465576 }, { "type": "C", "frame": 6, "at": 9800.739292465576 }, { "type": "O", "frame": 20, "at": 9800.739292465576 }, { "type": "O", "frame": 8, "at": 9800.739292465576 }, { "type": "O", "frame": 9, "at": 9800.739292465576 }, { "type": "O", "frame": 10, "at": 9800.739292465576 }, { "type": "O", "frame": 11, "at": 9800.739292465576 }, { "type": "O", "frame": 12, "at": 9800.739292465576 }, { "type": "O", "frame": 13, "at": 9800.739292465576 }, { "type": "O", "frame": 14, "at": 9800.739292465576 }, { "type": "O", "frame": 15, "at": 9800.739292465576 }, { "type": "O", "frame": 16, "at": 9800.739292465576 }, { "type": "O", "frame": 21, "at": 9800.739292465576 }, { "type": "O", "frame": 22, "at": 9800.739292465576 }, { "type": "O", "frame": 23, "at": 9800.739292465576 }, { "type": "O", "frame": 24, "at": 9800.739292465576 }, { "type": "O", "frame": 18, "at": 9800.739292465576 }, { "type": "C", "frame": 18, "at": 9808.807041977112 }, { "type": "C", "frame": 24, "at": 9808.807041977112 }, { "type": "O", "frame": 29, "at": 9808.807042 }, { "type": "O", "frame": 18, "at": 9808.807042 }, { "type": "C", "frame": 18, "at": 9810.16591703624 }, { "type": "C", "frame": 29, "at": 9810.16591703624 }, { "type": "C", "frame": 23, "at": 9810.16591725177 }, { "type": "C", "frame": 22, "at": 9810.16591725177 }, { "type": "C", "frame": 21, "at": 9810.16591725177 }, { "type": "O", "frame": 17, "at": 9810.16591725177 }, { "type": "O", "frame": 18, "at": 9810.16591725177 }, { "type": "C", "frame": 18, "at": 9814.2423339693 }, { "type": "C", "frame": 17, "at": 9814.2423339693 }, { "type": "O", "frame": 19, "at": 9814.242334 }, { "type": "O", "frame": 18, "at": 9814.242334 }, { "type": "C", "frame": 18, "at": 9819.591792217621 }, { "type": "C", "frame": 19, "at": 9819.591792217621 }, { "type": "C", "frame": 16, "at": 9819.591792915528 }, { "type": "C", "frame": 15, "at": 9819.591792915528 }, { "type": "C", "frame": 14, "at": 9819.591792915528 }, { "type": "C", "frame": 13, "at": 9819.591792915528 }, { "type": "C", "frame": 12, "at": 9819.591792915528 }, { "type": "C", "frame": 11, "at": 9819.591792915528 }, { "type": "C", "frame": 10, "at": 9819.591792915528 }, { "type": "C", "frame": 9, "at": 9819.591792915528 }, { "type": "C", "frame": 8, "at": 9819.591792915528 }, { "type": "C", "frame": 20, "at": 9819.591792915528 }, { "type": "O", "frame": 6, "at": 9819.591792915528 }, { "type": "O", "frame": 7, "at": 9819.591792915528 }, { "type": "O", "frame": 8, "at": 9819.591792915528 }, { "type": "O", "frame": 9, "at": 9819.591792915528 }, { "type": "O", "frame": 10, "at": 9819.591792915528 }, { "type": "O", "frame": 11, "at": 9819.591792915528 }, { "type": "O", "frame": 12, "at": 9819.591792915528 }, { "type": "O", "frame": 13, "at": 9819.591792915528 }, { "type": "O", "frame": 14, "at": 9819.591792915528 }, { "type": "O", "frame": 15, "at": 9819.591792915528 }, { "type": "O", "frame": 16, "at": 9819.591792915528 }, { "type": "O", "frame": 21, "at": 9819.591792915528 }, { "type": "O", "frame": 22, "at": 9819.591792915528 }, { "type": "O", "frame": 23, "at": 9819.591792915528 }, { "type": "O", "frame": 24, "at": 9819.591792915528 }, { "type": "O", "frame": 18, "at": 9819.591792915528 }, { "type": "C", "frame": 18, "at": 9829.029167068664 }, { "type": "C", "frame": 24, "at": 9829.029167068664 }, { "type": "C", "frame": 23, "at": 9829.029167068664 }, { "type": "C", "frame": 22, "at": 9829.029167068664 }, { "type": "C", "frame": 21, "at": 9829.029167068664 }, { "type": "O", "frame": 17, "at": 9829.029167068664 }, { "type": "O", "frame": 18, "at": 9829.029167068664 }, { "type": "C", "frame": 18, "at": 9833.11791688556 }, { "type": "C", "frame": 17, "at": 9833.11791688556 }, { "type": "O", "frame": 19, "at": 9833.117917 }, { "type": "O", "frame": 18, "at": 9833.117917 }, { "type": "C", "frame": 18, "at": 9838.450416504089 }, { "type": "C", "frame": 19, "at": 9838.450416504089 }, { "type": "C", "frame": 16, "at": 9838.450419319335 }, { "type": "C", "frame": 15, "at": 9838.450419319335 }, { "type": "C", "frame": 14, "at": 9838.450419319335 }, { "type": "C", "frame": 13, "at": 9838.450419319335 }, { "type": "C", "frame": 12, "at": 9838.450419319335 }, { "type": "C", "frame": 11, "at": 9838.450419319335 }, { "type": "C", "frame": 10, "at": 9838.450419319335 }, { "type": "C", "frame": 9, "at": 9838.450419319335 }, { "type": "C", "frame": 8, "at": 9838.450419319335 }, { "type": "C", "frame": 7, "at": 9838.450419319335 }, { "type": "C", "frame": 6, "at": 9838.450419319335 }, { "type": "O", "frame": 20, "at": 9838.450419319335 }, { "type": "O", "frame": 8, "at": 9838.450419319335 }, { "type": "O", "frame": 9, "at": 9838.450419319335 }, { "type": "O", "frame": 10, "at": 9838.450419319335 }, { "type": "O", "frame": 11, "at": 9838.450419319335 }, { "type": "O", "frame": 12, "at": 9838.450419319335 }, { "type": "O", "frame": 13, "at": 9838.450419319335 }, { "type": "O", "frame": 14, "at": 9838.450419319335 }, { "type": "O", "frame": 15, "at": 9838.450419319335 }, { "type": "O", "frame": 16, "at": 9838.450419319335 }, { "type": "O", "frame": 21, "at": 9838.450419319335 }, { "type": "O", "frame": 22, "at": 9838.450419319335 }, { "type": "O", "frame": 23, "at": 9838.450419319335 }, { "type": "O", "frame": 25, "at": 9838.450419319335 }, { "type": "O", "frame": 18, "at": 9838.450419319335 }, { "type": "C", "frame": 18, "at": 9839.792792040054 }, { "type": "C", "frame": 25, "at": 9839.792792040054 }, { "type": "O", "frame": 24, "at": 9839.792792040054 }, { "type": "O", "frame": 18, "at": 9839.792792040054 }, { "type": "C", "frame": 18, "at": 9846.522041954224 }, { "type": "C", "frame": 24, "at": 9846.522041954224 }, { "type": "C", "frame": 23, "at": 9846.522041954224 }, { "type": "C", "frame": 22, "at": 9846.522041954224 }, { "type": "C", "frame": 21, "at": 9846.522041954224 }, { "type": "O", "frame": 17, "at": 9846.522042 }, { "type": "O", "frame": 18, "at": 9846.522042 }, { "type": "C", "frame": 18, "at": 9852.031041824524 }, { "type": "C", "frame": 17, "at": 9852.031041824524 }, { "type": "O", "frame": 19, "at": 9852.031042 }, { "type": "O", "frame": 18, "at": 9852.031042 }, { "type": "C", "frame": 18, "at": 9854.696792026703 }, { "type": "C", "frame": 19, "at": 9854.696792026703 }, { "type": "C", "frame": 16, "at": 9854.696792026703 }, { "type": "C", "frame": 15, "at": 9854.696792026703 }, { "type": "C", "frame": 14, "at": 9854.696792026703 }, { "type": "C", "frame": 13, "at": 9854.696792026703 }, { "type": "C", "frame": 12, "at": 9854.696792026703 }, { "type": "C", "frame": 11, "at": 9854.696792026703 }, { "type": "C", "frame": 10, "at": 9854.696792026703 }, { "type": "C", "frame": 9, "at": 9854.696792026703 }, { "type": "C", "frame": 8, "at": 9854.696792026703 }, { "type": "C", "frame": 20, "at": 9854.696792026703 }, { "type": "O", "frame": 6, "at": 9854.696792026703 }, { "type": "O", "frame": 7, "at": 9854.696792026703 }, { "type": "O", "frame": 8, "at": 9854.696792026703 }, { "type": "O", "frame": 9, "at": 9854.696792026703 }, { "type": "O", "frame": 10, "at": 9854.696792026703 }, { "type": "O", "frame": 11, "at": 9854.696792026703 }, { "type": "O", "frame": 12, "at": 9854.696792026703 }, { "type": "O", "frame": 13, "at": 9854.696792026703 }, { "type": "O", "frame": 14, "at": 9854.696792026703 }, { "type": "O", "frame": 15, "at": 9854.696792026703 }, { "type": "O", "frame": 16, "at": 9854.696792026703 }, { "type": "O", "frame": 21, "at": 9854.696792026703 }, { "type": "O", "frame": 22, "at": 9854.696792026703 }, { "type": "O", "frame": 23, "at": 9854.696792026703 }, { "type": "O", "frame": 24, "at": 9854.696792026703 }, { "type": "O", "frame": 18, "at": 9854.696792026703 }, { "type": "C", "frame": 18, "at": 9864.145709388917 }, { "type": "C", "frame": 24, "at": 9864.145709388917 }, { "type": "C", "frame": 23, "at": 9864.145709388917 }, { "type": "C", "frame": 22, "at": 9864.145709388917 }, { "type": "C", "frame": 21, "at": 9864.145709388917 }, { "type": "O", "frame": 17, "at": 9864.145709388917 }, { "type": "O", "frame": 18, "at": 9864.145709388917 }, { "type": "C", "frame": 18, "at": 9868.250292263398 }, { "type": "C", "frame": 17, "at": 9868.250292263398 }, { "type": "O", "frame": 19, "at": 9868.250292263398 }, { "type": "O", "frame": 18, "at": 9868.250292263398 }, { "type": "C", "frame": 18, "at": 9878.892460045045 }, { "type": "C", "frame": 19, "at": 9878.892460045045 }, { "type": "C", "frame": 16, "at": 9878.892461174195 }, { "type": "C", "frame": 15, "at": 9878.892461174195 }, { "type": "C", "frame": 14, "at": 9878.892461174195 }, { "type": "C", "frame": 13, "at": 9878.892461174195 }, { "type": "C", "frame": 12, "at": 9878.892461174195 }, { "type": "C", "frame": 11, "at": 9878.892461174195 }, { "type": "C", "frame": 10, "at": 9878.892461174195 }, { "type": "C", "frame": 9, "at": 9878.892461174195 }, { "type": "C", "frame": 8, "at": 9878.892461174195 }, { "type": "C", "frame": 7, "at": 9878.892461174195 }, { "type": "C", "frame": 6, "at": 9878.892461174195 }, { "type": "O", "frame": 20, "at": 9878.892461174195 }, { "type": "O", "frame": 8, "at": 9878.892461174195 }, { "type": "O", "frame": 9, "at": 9878.892461174195 }, { "type": "O", "frame": 10, "at": 9878.892461174195 }, { "type": "O", "frame": 11, "at": 9878.892461174195 }, { "type": "O", "frame": 12, "at": 9878.892461174195 }, { "type": "O", "frame": 13, "at": 9878.892461174195 }, { "type": "O", "frame": 14, "at": 9878.892461174195 }, { "type": "O", "frame": 15, "at": 9878.892461174195 }, { "type": "O", "frame": 16, "at": 9878.892461174195 }, { "type": "O", "frame": 21, "at": 9878.892461174195 }, { "type": "O", "frame": 22, "at": 9878.892461174195 }, { "type": "O", "frame": 23, "at": 9878.892461174195 }, { "type": "O", "frame": 24, "at": 9878.892461174195 }, { "type": "O", "frame": 18, "at": 9878.892461174195 }, { "type": "C", "frame": 18, "at": 9880.235666955361 }, { "type": "C", "frame": 24, "at": 9880.235666955361 }, { "type": "O", "frame": 28, "at": 9880.235667 }, { "type": "O", "frame": 18, "at": 9880.235667 }, { "type": "C", "frame": 18, "at": 9881.596624980157 }, { "type": "C", "frame": 28, "at": 9881.596624980157 }, { "type": "O", "frame": 24, "at": 9881.596625 }, { "type": "O", "frame": 18, "at": 9881.596625 }, { "type": "C", "frame": 18, "at": 9886.995709568024 }, { "type": "C", "frame": 24, "at": 9886.995709568024 }, { "type": "C", "frame": 23, "at": 9886.995709568024 }, { "type": "C", "frame": 22, "at": 9886.995709568024 }, { "type": "C", "frame": 21, "at": 9886.995709568024 }, { "type": "O", "frame": 17, "at": 9886.995709568024 }, { "type": "O", "frame": 18, "at": 9886.995709568024 }, { "type": "C", "frame": 18, "at": 9892.448124943146 }, { "type": "C", "frame": 17, "at": 9892.448124943146 }, { "type": "O", "frame": 19, "at": 9892.448125 }, { "type": "O", "frame": 18, "at": 9892.448125 }, { "type": "C", "frame": 18, "at": 9893.776167030335 }, { "type": "C", "frame": 19, "at": 9893.776167030335 }, { "type": "C", "frame": 16, "at": 9893.776167030335 }, { "type": "C", "frame": 15, "at": 9893.776167030335 }, { "type": "C", "frame": 14, "at": 9893.776167030335 }, { "type": "C", "frame": 13, "at": 9893.776167030335 }, { "type": "C", "frame": 12, "at": 9893.776167030335 }, { "type": "C", "frame": 11, "at": 9893.776167030335 }, { "type": "C", "frame": 10, "at": 9893.776167030335 }, { "type": "C", "frame": 9, "at": 9893.776167030335 }, { "type": "C", "frame": 8, "at": 9893.776167030335 }, { "type": "O", "frame": 18, "at": 9893.776167030335 }, { "type": "C", "frame": 18, "at": 9895.121000016396 }, { "type": "C", "frame": 20, "at": 9895.121000016396 }, { "type": "O", "frame": 6, "at": 9895.121000016396 }, { "type": "O", "frame": 7, "at": 9895.121000016396 }, { "type": "O", "frame": 8, "at": 9895.121000016396 }, { "type": "O", "frame": 9, "at": 9895.121000016396 }, { "type": "O", "frame": 10, "at": 9895.121000016396 }, { "type": "O", "frame": 11, "at": 9895.121000016396 }, { "type": "O", "frame": 12, "at": 9895.121000016396 }, { "type": "O", "frame": 13, "at": 9895.121000016396 }, { "type": "O", "frame": 14, "at": 9895.121000016396 }, { "type": "O", "frame": 15, "at": 9895.121000016396 }, { "type": "O", "frame": 16, "at": 9895.121000016396 }, { "type": "O", "frame": 21, "at": 9895.121000016396 }, { "type": "O", "frame": 22, "at": 9895.121000016396 }, { "type": "O", "frame": 23, "at": 9895.121000016396 }, { "type": "O", "frame": 38, "at": 9895.121000016396 }, { "type": "O", "frame": 18, "at": 9895.121000016396 }, { "type": "C", "frame": 18, "at": 9896.4675000391 }, { "type": "C", "frame": 38, "at": 9896.4675000391 }, { "type": "O", "frame": 24, "at": 9896.4675000391 }, { "type": "O", "frame": 18, "at": 9896.4675000391 }, { "type": "C", "frame": 18, "at": 9897.80824997902 }, { "type": "C", "frame": 24, "at": 9897.80824997902 }, { "type": "O", "frame": 26, "at": 9897.80825 }, { "type": "O", "frame": 18, "at": 9897.80825 }, { "type": "C", "frame": 18, "at": 9899.147458960533 }, { "type": "C", "frame": 26, "at": 9899.147458960533 }, { "type": "O", "frame": 24, "at": 9899.147459 }, { "type": "O", "frame": 18, "at": 9899.147459 }, { "type": "C", "frame": 18, "at": 9903.196208923706 }, { "type": "C", "frame": 24, "at": 9903.196208923706 }, { "type": "C", "frame": 23, "at": 9903.196208923706 }, { "type": "C", "frame": 22, "at": 9903.196208923706 }, { "type": "C", "frame": 21, "at": 9903.196208923706 }, { "type": "O", "frame": 17, "at": 9903.196209 }, { "type": "O", "frame": 18, "at": 9903.196209 }, { "type": "C", "frame": 18, "at": 9907.305417106994 }, { "type": "C", "frame": 17, "at": 9907.305417106994 }, { "type": "O", "frame": 19, "at": 9907.305417106994 }, { "type": "O", "frame": 18, "at": 9907.305417106994 }, { "type": "C", "frame": 18, "at": 9915.3178338396 }, { "type": "C", "frame": 19, "at": 9915.3178338396 }, { "type": "C", "frame": 16, "at": 9915.317834564208 }, { "type": "C", "frame": 15, "at": 9915.317834564208 }, { "type": "C", "frame": 14, "at": 9915.317834564208 }, { "type": "C", "frame": 13, "at": 9915.317834564208 }, { "type": "C", "frame": 12, "at": 9915.317834564208 }, { "type": "C", "frame": 11, "at": 9915.317834564208 }, { "type": "C", "frame": 10, "at": 9915.317834564208 }, { "type": "C", "frame": 9, "at": 9915.317834564208 }, { "type": "C", "frame": 8, "at": 9915.317834564208 }, { "type": "C", "frame": 7, "at": 9915.317834564208 }, { "type": "C", "frame": 6, "at": 9915.317834564208 }, { "type": "O", "frame": 20, "at": 9915.317834564208 }, { "type": "O", "frame": 8, "at": 9915.317834564208 }, { "type": "O", "frame": 9, "at": 9915.317834564208 }, { "type": "O", "frame": 10, "at": 9915.317834564208 }, { "type": "O", "frame": 11, "at": 9915.317834564208 }, { "type": "O", "frame": 12, "at": 9915.317834564208 }, { "type": "O", "frame": 13, "at": 9915.317834564208 }, { "type": "O", "frame": 14, "at": 9915.317834564208 }, { "type": "O", "frame": 15, "at": 9915.317834564208 }, { "type": "O", "frame": 16, "at": 9915.317834564208 }, { "type": "O", "frame": 21, "at": 9915.317834564208 }, { "type": "O", "frame": 22, "at": 9915.317834564208 }, { "type": "O", "frame": 23, "at": 9915.317834564208 }, { "type": "O", "frame": 29, "at": 9915.317834564208 }, { "type": "O", "frame": 18, "at": 9915.317834564208 }, { "type": "C", "frame": 18, "at": 9916.6605419916 }, { "type": "C", "frame": 29, "at": 9916.6605419916 }, { "type": "O", "frame": 24, "at": 9916.660542 }, { "type": "O", "frame": 18, "at": 9916.660542 }, { "type": "C", "frame": 18, "at": 9919.355792034332 }, { "type": "C", "frame": 24, "at": 9919.355792034332 }, { "type": "O", "frame": 49, "at": 9919.355792034332 }, { "type": "O", "frame": 18, "at": 9919.355792034332 }, { "type": "C", "frame": 18, "at": 9920.69908399791 }, { "type": "C", "frame": 49, "at": 9920.69908399791 }, { "type": "O", "frame": 24, "at": 9920.699084 }, { "type": "O", "frame": 18, "at": 9920.699084 }, { "type": "C", "frame": 18, "at": 9923.394000009903 }, { "type": "C", "frame": 24, "at": 9923.394000009903 }, { "type": "C", "frame": 23, "at": 9923.394000152954 }, { "type": "C", "frame": 22, "at": 9923.394000152954 }, { "type": "C", "frame": 21, "at": 9923.394000152954 }, { "type": "O", "frame": 17, "at": 9923.394000152954 }, { "type": "O", "frame": 18, "at": 9923.394000152954 }, { "type": "C", "frame": 18, "at": 9927.559833950043 }, { "type": "C", "frame": 17, "at": 9927.559833950043 }, { "type": "O", "frame": 19, "at": 9927.559834 }, { "type": "O", "frame": 18, "at": 9927.559834 }, { "type": "C", "frame": 18, "at": 9930.228125091919 }, { "type": "C", "frame": 19, "at": 9930.228125091919 }, { "type": "C", "frame": 16, "at": 9930.228125671752 }, { "type": "C", "frame": 15, "at": 9930.228125671752 }, { "type": "C", "frame": 14, "at": 9930.228125671752 }, { "type": "C", "frame": 13, "at": 9930.228125671752 }, { "type": "C", "frame": 12, "at": 9930.228125671752 }, { "type": "C", "frame": 11, "at": 9930.228125671752 }, { "type": "C", "frame": 10, "at": 9930.228125671752 }, { "type": "C", "frame": 9, "at": 9930.228125671752 }, { "type": "C", "frame": 8, "at": 9930.228125671752 }, { "type": "C", "frame": 20, "at": 9930.228125671752 }, { "type": "O", "frame": 6, "at": 9930.228125671752 }, { "type": "O", "frame": 7, "at": 9930.228125671752 }, { "type": "O", "frame": 8, "at": 9930.228125671752 }, { "type": "O", "frame": 9, "at": 9930.228125671752 }, { "type": "O", "frame": 10, "at": 9930.228125671752 }, { "type": "O", "frame": 11, "at": 9930.228125671752 }, { "type": "O", "frame": 12, "at": 9930.228125671752 }, { "type": "O", "frame": 13, "at": 9930.228125671752 }, { "type": "O", "frame": 14, "at": 9930.228125671752 }, { "type": "O", "frame": 15, "at": 9930.228125671752 }, { "type": "O", "frame": 16, "at": 9930.228125671752 }, { "type": "O", "frame": 21, "at": 9930.228125671752 }, { "type": "O", "frame": 22, "at": 9930.228125671752 }, { "type": "O", "frame": 23, "at": 9930.228125671752 }, { "type": "O", "frame": 24, "at": 9930.228125671752 }, { "type": "O", "frame": 18, "at": 9930.228125671752 }, { "type": "C", "frame": 18, "at": 9934.261499786377 }, { "type": "C", "frame": 24, "at": 9934.261499786377 }, { "type": "O", "frame": 38, "at": 9934.2615 }, { "type": "O", "frame": 18, "at": 9934.2615 }, { "type": "C", "frame": 18, "at": 9935.607959031106 }, { "type": "C", "frame": 38, "at": 9935.607959031106 }, { "type": "O", "frame": 24, "at": 9935.607959031106 }, { "type": "O", "frame": 18, "at": 9935.607959031106 }, { "type": "C", "frame": 18, "at": 9938.30679198874 }, { "type": "C", "frame": 24, "at": 9938.30679198874 }, { "type": "C", "frame": 23, "at": 9938.30679198874 }, { "type": "C", "frame": 22, "at": 9938.30679198874 }, { "type": "C", "frame": 21, "at": 9938.30679198874 }, { "type": "O", "frame": 17, "at": 9938.306792 }, { "type": "O", "frame": 18, "at": 9938.306792 }, { "type": "C", "frame": 18, "at": 9942.4146668703 }, { "type": "C", "frame": 17, "at": 9942.4146668703 }, { "type": "O", "frame": 19, "at": 9942.414667 }, { "type": "O", "frame": 18, "at": 9942.414667 }, { "type": "C", "frame": 18, "at": 9949.086624969665 }, { "type": "C", "frame": 19, "at": 9949.086624969665 }, { "type": "C", "frame": 16, "at": 9949.086624969665 }, { "type": "C", "frame": 15, "at": 9949.086624969665 }, { "type": "C", "frame": 14, "at": 9949.086624969665 }, { "type": "C", "frame": 13, "at": 9949.086624969665 }, { "type": "C", "frame": 12, "at": 9949.086624969665 }, { "type": "C", "frame": 11, "at": 9949.086624969665 }, { "type": "C", "frame": 10, "at": 9949.086624969665 }, { "type": "C", "frame": 9, "at": 9949.086624969665 }, { "type": "C", "frame": 8, "at": 9949.086624969665 }, { "type": "C", "frame": 7, "at": 9949.086624969665 }, { "type": "C", "frame": 6, "at": 9949.086624969665 }, { "type": "O", "frame": 20, "at": 9949.086625 }, { "type": "O", "frame": 8, "at": 9949.086625 }, { "type": "O", "frame": 9, "at": 9949.086625 }, { "type": "O", "frame": 10, "at": 9949.086625 }, { "type": "O", "frame": 11, "at": 9949.086625 }, { "type": "O", "frame": 12, "at": 9949.086625 }, { "type": "O", "frame": 13, "at": 9949.086625 }, { "type": "O", "frame": 14, "at": 9949.086625 }, { "type": "O", "frame": 15, "at": 9949.086625 }, { "type": "O", "frame": 16, "at": 9949.086625 }, { "type": "O", "frame": 21, "at": 9949.086625 }, { "type": "O", "frame": 22, "at": 9949.086625 }, { "type": "O", "frame": 23, "at": 9949.086625 }, { "type": "O", "frame": 26, "at": 9949.086625 }, { "type": "O", "frame": 18, "at": 9949.086625 }, { "type": "C", "frame": 18, "at": 9950.433542033195 }, { "type": "C", "frame": 26, "at": 9950.433542033195 }, { "type": "O", "frame": 24, "at": 9950.433542033195 }, { "type": "O", "frame": 18, "at": 9950.433542033195 }, { "type": "C", "frame": 18, "at": 9957.159416900819 }, { "type": "C", "frame": 24, "at": 9957.159416900819 }, { "type": "C", "frame": 23, "at": 9957.159417053223 }, { "type": "C", "frame": 22, "at": 9957.159417053223 }, { "type": "C", "frame": 21, "at": 9957.159417053223 }, { "type": "O", "frame": 17, "at": 9957.159417053223 }, { "type": "O", "frame": 18, "at": 9957.159417053223 }, { "type": "C", "frame": 18, "at": 9962.655791607087 }, { "type": "C", "frame": 17, "at": 9962.655791607087 }, { "type": "O", "frame": 19, "at": 9962.655792 }, { "type": "O", "frame": 18, "at": 9962.655792 }, { "type": "C", "frame": 18, "at": 9968.021791698638 }, { "type": "C", "frame": 19, "at": 9968.021791698638 }, { "type": "C", "frame": 16, "at": 9968.021792312622 }, { "type": "C", "frame": 15, "at": 9968.021792312622 }, { "type": "C", "frame": 14, "at": 9968.021792312622 }, { "type": "C", "frame": 13, "at": 9968.021792312622 }, { "type": "C", "frame": 12, "at": 9968.021792312622 }, { "type": "C", "frame": 11, "at": 9968.021792312622 }, { "type": "C", "frame": 10, "at": 9968.021792312622 }, { "type": "C", "frame": 9, "at": 9968.021792312622 }, { "type": "C", "frame": 8, "at": 9968.021792312622 }, { "type": "C", "frame": 20, "at": 9968.021792312622 }, { "type": "O", "frame": 6, "at": 9968.021792312622 }, { "type": "O", "frame": 7, "at": 9968.021792312622 }, { "type": "O", "frame": 8, "at": 9968.021792312622 }, { "type": "O", "frame": 9, "at": 9968.021792312622 }, { "type": "O", "frame": 10, "at": 9968.021792312622 }, { "type": "O", "frame": 11, "at": 9968.021792312622 }, { "type": "O", "frame": 12, "at": 9968.021792312622 }, { "type": "O", "frame": 13, "at": 9968.021792312622 }, { "type": "O", "frame": 14, "at": 9968.021792312622 }, { "type": "O", "frame": 15, "at": 9968.021792312622 }, { "type": "O", "frame": 16, "at": 9968.021792312622 }, { "type": "O", "frame": 21, "at": 9968.021792312622 }, { "type": "O", "frame": 22, "at": 9968.021792312622 }, { "type": "O", "frame": 23, "at": 9968.021792312622 }, { "type": "O", "frame": 24, "at": 9968.021792312622 }, { "type": "O", "frame": 18, "at": 9968.021792312622 }, { "type": "C", "frame": 18, "at": 9976.097833221618 }, { "type": "C", "frame": 24, "at": 9976.097833221618 }, { "type": "C", "frame": 23, "at": 9976.097833221618 }, { "type": "C", "frame": 22, "at": 9976.097833221618 }, { "type": "C", "frame": 21, "at": 9976.097833221618 }, { "type": "O", "frame": 17, "at": 9976.097834 }, { "type": "O", "frame": 18, "at": 9976.097834 }, { "type": "C", "frame": 18, "at": 9981.540958771118 }, { "type": "C", "frame": 17, "at": 9981.540958771118 }, { "type": "O", "frame": 19, "at": 9981.540959 }, { "type": "O", "frame": 18, "at": 9981.540959 }, { "type": "C", "frame": 18, "at": 9986.911459087738 }, { "type": "C", "frame": 19, "at": 9986.911459087738 }, { "type": "C", "frame": 16, "at": 9986.911459087738 }, { "type": "C", "frame": 15, "at": 9986.911459087738 }, { "type": "C", "frame": 14, "at": 9986.911459087738 }, { "type": "C", "frame": 13, "at": 9986.911459087738 }, { "type": "C", "frame": 12, "at": 9986.911459087738 }, { "type": "C", "frame": 11, "at": 9986.911459087738 }, { "type": "C", "frame": 10, "at": 9986.911459087738 }, { "type": "C", "frame": 9, "at": 9986.911459087738 }, { "type": "C", "frame": 8, "at": 9986.911459087738 }, { "type": "C", "frame": 7, "at": 9986.911459087738 }, { "type": "C", "frame": 6, "at": 9986.911459087738 }, { "type": "O", "frame": 20, "at": 9986.911459087738 }, { "type": "O", "frame": 8, "at": 9986.911459087738 }, { "type": "O", "frame": 9, "at": 9986.911459087738 }, { "type": "O", "frame": 10, "at": 9986.911459087738 }, { "type": "O", "frame": 11, "at": 9986.911459087738 }, { "type": "O", "frame": 12, "at": 9986.911459087738 }, { "type": "O", "frame": 13, "at": 9986.911459087738 }, { "type": "O", "frame": 14, "at": 9986.911459087738 }, { "type": "O", "frame": 15, "at": 9986.911459087738 }, { "type": "O", "frame": 16, "at": 9986.911459087738 }, { "type": "O", "frame": 21, "at": 9986.911459087738 }, { "type": "O", "frame": 22, "at": 9986.911459087738 }, { "type": "O", "frame": 23, "at": 9986.911459087738 }, { "type": "O", "frame": 24, "at": 9986.911459087738 }, { "type": "O", "frame": 18, "at": 9986.911459087738 }, { "type": "C", "frame": 18, "at": 9990.927249939332 }, { "type": "C", "frame": 24, "at": 9990.927249939332 }, { "type": "O", "frame": 29, "at": 9990.92725 }, { "type": "O", "frame": 18, "at": 9990.92725 }, { "type": "C", "frame": 18, "at": 9992.273249956132 }, { "type": "C", "frame": 29, "at": 9992.273249956132 }, { "type": "O", "frame": 24, "at": 9992.27325 }, { "type": "O", "frame": 18, "at": 9992.27325 }, { "type": "C", "frame": 18, "at": 9996.308833972931 }, { "type": "C", "frame": 24, "at": 9996.308833972931 }, { "type": "C", "frame": 23, "at": 9996.308834106812 }, { "type": "C", "frame": 22, "at": 9996.308834106812 }, { "type": "C", "frame": 21, "at": 9996.308834106812 }, { "type": "O", "frame": 17, "at": 9996.308834106812 }, { "type": "O", "frame": 18, "at": 9996.308834106812 }, { "type": "C", "frame": 18, "at": 10000.541999740966 }, { "type": "C", "frame": 17, "at": 10000.541999740966 }, { "type": "O", "frame": 19, "at": 10000.542 }, { "type": "O", "frame": 18, "at": 10000.542 }, { "type": "C", "frame": 18, "at": 10001.885834042549 }, { "type": "C", "frame": 19, "at": 10001.885834042549 }, { "type": "C", "frame": 16, "at": 10001.885834724793 }, { "type": "C", "frame": 15, "at": 10001.885834724793 }, { "type": "C", "frame": 14, "at": 10001.885834724793 }, { "type": "C", "frame": 13, "at": 10001.885834724793 }, { "type": "C", "frame": 12, "at": 10001.885834724793 }, { "type": "C", "frame": 11, "at": 10001.885834724793 }, { "type": "C", "frame": 10, "at": 10001.885834724793 }, { "type": "C", "frame": 9, "at": 10001.885834724793 }, { "type": "C", "frame": 8, "at": 10001.885834724793 }, { "type": "C", "frame": 20, "at": 10001.885834724793 }, { "type": "O", "frame": 6, "at": 10001.885834724793 }, { "type": "O", "frame": 7, "at": 10001.885834724793 }, { "type": "O", "frame": 8, "at": 10001.885834724793 }, { "type": "O", "frame": 9, "at": 10001.885834724793 }, { "type": "O", "frame": 10, "at": 10001.885834724793 }, { "type": "O", "frame": 11, "at": 10001.885834724793 }, { "type": "O", "frame": 12, "at": 10001.885834724793 }, { "type": "O", "frame": 13, "at": 10001.885834724793 }, { "type": "O", "frame": 14, "at": 10001.885834724793 }, { "type": "O", "frame": 15, "at": 10001.885834724793 }, { "type": "O", "frame": 16, "at": 10001.885834724793 }, { "type": "O", "frame": 21, "at": 10001.885834724793 }, { "type": "O", "frame": 22, "at": 10001.885834724793 }, { "type": "O", "frame": 23, "at": 10001.885834724793 }, { "type": "O", "frame": 24, "at": 10001.885834724793 }, { "type": "O", "frame": 18, "at": 10001.885834724793 }, { "type": "C", "frame": 18, "at": 10009.938750526795 }, { "type": "C", "frame": 24, "at": 10009.938750526795 }, { "type": "O", "frame": 26, "at": 10009.938750526795 }, { "type": "O", "frame": 18, "at": 10009.938750526795 }, { "type": "C", "frame": 18, "at": 10011.289542050361 }, { "type": "C", "frame": 26, "at": 10011.289542050361 }, { "type": "C", "frame": 23, "at": 10011.289542457947 }, { "type": "C", "frame": 22, "at": 10011.289542457947 }, { "type": "C", "frame": 21, "at": 10011.289542457947 }, { "type": "O", "frame": 17, "at": 10011.289542457947 }, { "type": "O", "frame": 18, "at": 10011.289542457947 }, { "type": "C", "frame": 18, "at": 10015.3847921297 }, { "type": "C", "frame": 17, "at": 10015.3847921297 }, { "type": "O", "frame": 19, "at": 10015.3847921297 }, { "type": "O", "frame": 18, "at": 10015.3847921297 }, { "type": "C", "frame": 18, "at": 10020.713916927521 }, { "type": "C", "frame": 19, "at": 10020.713916927521 }, { "type": "C", "frame": 16, "at": 10020.71391703833 }, { "type": "C", "frame": 15, "at": 10020.71391703833 }, { "type": "C", "frame": 14, "at": 10020.71391703833 }, { "type": "C", "frame": 13, "at": 10020.71391703833 }, { "type": "C", "frame": 12, "at": 10020.71391703833 }, { "type": "C", "frame": 11, "at": 10020.71391703833 }, { "type": "C", "frame": 10, "at": 10020.71391703833 }, { "type": "C", "frame": 9, "at": 10020.71391703833 }, { "type": "C", "frame": 8, "at": 10020.71391703833 }, { "type": "C", "frame": 7, "at": 10020.71391703833 }, { "type": "C", "frame": 6, "at": 10020.71391703833 }, { "type": "O", "frame": 20, "at": 10020.71391703833 }, { "type": "O", "frame": 18, "at": 10020.71391703833 }, { "type": "C", "frame": 18, "at": 10022.075916988555 }, { "type": "O", "frame": 8, "at": 10022.075917 }, { "type": "O", "frame": 9, "at": 10022.075917 }, { "type": "O", "frame": 10, "at": 10022.075917 }, { "type": "O", "frame": 11, "at": 10022.075917 }, { "type": "O", "frame": 12, "at": 10022.075917 }, { "type": "O", "frame": 13, "at": 10022.075917 }, { "type": "O", "frame": 14, "at": 10022.075917 }, { "type": "O", "frame": 15, "at": 10022.075917 }, { "type": "O", "frame": 16, "at": 10022.075917 }, { "type": "O", "frame": 21, "at": 10022.075917 }, { "type": "O", "frame": 22, "at": 10022.075917 }, { "type": "O", "frame": 23, "at": 10022.075917 }, { "type": "O", "frame": 24, "at": 10022.075917 }, { "type": "O", "frame": 18, "at": 10022.075917 }, { "type": "C", "frame": 18, "at": 10024.754459137146 }, { "type": "C", "frame": 24, "at": 10024.754459137146 }, { "type": "O", "frame": 38, "at": 10024.754459137146 }, { "type": "O", "frame": 18, "at": 10024.754459137146 }, { "type": "C", "frame": 18, "at": 10026.093625045189 }, { "type": "C", "frame": 38, "at": 10026.093625045189 }, { "type": "O", "frame": 24, "at": 10026.093625045189 }, { "type": "O", "frame": 18, "at": 10026.093625045189 }, { "type": "C", "frame": 18, "at": 10030.125749996185 }, { "type": "C", "frame": 24, "at": 10030.125749996185 }, { "type": "C", "frame": 23, "at": 10030.12575029773 }, { "type": "C", "frame": 22, "at": 10030.12575029773 }, { "type": "C", "frame": 21, "at": 10030.12575029773 }, { "type": "O", "frame": 17, "at": 10030.12575029773 }, { "type": "O", "frame": 18, "at": 10030.12575029773 }, { "type": "C", "frame": 18, "at": 10034.198958808898 }, { "type": "C", "frame": 17, "at": 10034.198958808898 }, { "type": "O", "frame": 19, "at": 10034.198959 }, { "type": "O", "frame": 18, "at": 10034.198959 }, { "type": "C", "frame": 18, "at": 10035.532459027656 }, { "type": "C", "frame": 19, "at": 10035.532459027656 }, { "type": "C", "frame": 16, "at": 10035.532459027656 }, { "type": "C", "frame": 15, "at": 10035.532459027656 }, { "type": "C", "frame": 14, "at": 10035.532459027656 }, { "type": "C", "frame": 13, "at": 10035.532459027656 }, { "type": "C", "frame": 12, "at": 10035.532459027656 }, { "type": "C", "frame": 11, "at": 10035.532459027656 }, { "type": "C", "frame": 10, "at": 10035.532459027656 }, { "type": "C", "frame": 9, "at": 10035.532459027656 }, { "type": "C", "frame": 8, "at": 10035.532459027656 }, { "type": "C", "frame": 20, "at": 10035.532459027656 }, { "type": "O", "frame": 6, "at": 10035.532459027656 }, { "type": "O", "frame": 7, "at": 10035.532459027656 }, { "type": "O", "frame": 8, "at": 10035.532459027656 }, { "type": "O", "frame": 9, "at": 10035.532459027656 }, { "type": "O", "frame": 10, "at": 10035.532459027656 }, { "type": "O", "frame": 11, "at": 10035.532459027656 }, { "type": "O", "frame": 12, "at": 10035.532459027656 }, { "type": "O", "frame": 13, "at": 10035.532459027656 }, { "type": "O", "frame": 14, "at": 10035.532459027656 }, { "type": "O", "frame": 15, "at": 10035.532459027656 }, { "type": "O", "frame": 16, "at": 10035.532459027656 }, { "type": "O", "frame": 21, "at": 10035.532459027656 }, { "type": "O", "frame": 22, "at": 10035.532459027656 }, { "type": "O", "frame": 23, "at": 10035.532459027656 }, { "type": "O", "frame": 24, "at": 10035.532459027656 }, { "type": "O", "frame": 18, "at": 10035.532459027656 }, { "type": "C", "frame": 18, "at": 10044.945584038147 }, { "type": "C", "frame": 24, "at": 10044.945584038147 }, { "type": "C", "frame": 23, "at": 10044.945584038147 }, { "type": "C", "frame": 22, "at": 10044.945584038147 }, { "type": "C", "frame": 21, "at": 10044.945584038147 }, { "type": "O", "frame": 17, "at": 10044.945584038147 }, { "type": "O", "frame": 18, "at": 10044.945584038147 }, { "type": "C", "frame": 18, "at": 10049.045709312804 }, { "type": "C", "frame": 17, "at": 10049.045709312804 }, { "type": "O", "frame": 19, "at": 10049.045709312804 }, { "type": "O", "frame": 18, "at": 10049.045709312804 }, { "type": "C", "frame": 18, "at": 10050.380249963173 }, { "type": "C", "frame": 19, "at": 10050.380249963173 }, { "type": "C", "frame": 16, "at": 10050.380250671753 }, { "type": "C", "frame": 15, "at": 10050.380250671753 }, { "type": "C", "frame": 14, "at": 10050.380250671753 }, { "type": "C", "frame": 13, "at": 10050.380250671753 }, { "type": "C", "frame": 12, "at": 10050.380250671753 }, { "type": "C", "frame": 11, "at": 10050.380250671753 }, { "type": "C", "frame": 10, "at": 10050.380250671753 }, { "type": "C", "frame": 9, "at": 10050.380250671753 }, { "type": "C", "frame": 8, "at": 10050.380250671753 }, { "type": "C", "frame": 7, "at": 10050.380250671753 }, { "type": "C", "frame": 6, "at": 10050.380250671753 }, { "type": "C", "frame": 5, "at": 10050.380250671753 }, { "type": "C", "frame": 4, "at": 10050.380250671753 }, { "type": "C", "frame": 3, "at": 10050.380250671753 }, { "type": "C", "frame": 2, "at": 10050.380250671753 }, { "type": "C", "frame": 1, "at": 10050.380250671753 }, { "type": "C", "frame": 0, "at": 10050.380250671753 }]}] } \ No newline at end of file