From 533cb7ddc2204d5e0e1bc3d7f5ef64c51f9c8678 Mon Sep 17 00:00:00 2001
From: Piotr Graczyk
Date: Fri, 11 Sep 2026 12:59:21 +0200
Subject: [PATCH 01/10] fix(ios): evaluate Google provider flag in podspec
scope
---
package/react-native-better-maps.podspec | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/package/react-native-better-maps.podspec b/package/react-native-better-maps.podspec
index a0dfe50..ceba089 100644
--- a/package/react-native-better-maps.podspec
+++ b/package/react-native-better-maps.podspec
@@ -2,7 +2,7 @@ require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
-def better_maps_podfile_properties
+better_maps_podfile_properties = lambda do
installation_root = Pod::Config.instance.installation_root
return {} if installation_root.nil?
@@ -15,10 +15,10 @@ rescue StandardError => e
{}
end
-def better_maps_ios_google_provider_enabled?
- # Must match IOS_GOOGLE_PROVIDER_PODFILE_PROPERTY in plugin/src/ios.ts
- better_maps_podfile_properties['betterMaps.iosGoogleProvider'] == 'true'
-end
+# Local binding survives CocoaPods evaluating the podspec in its module scope.
+# Must match IOS_GOOGLE_PROVIDER_PODFILE_PROPERTY in plugin/src/ios.ts.
+better_maps_ios_google_provider_enabled =
+ better_maps_podfile_properties.call['betterMaps.iosGoogleProvider'] == 'true'
Pod::Spec.new do |s|
s.name = 'react-native-better-maps'
@@ -48,7 +48,7 @@ Pod::Spec.new do |s|
s.dependency 'React-jsi'
s.dependency 'React-callinvoker'
- if better_maps_ios_google_provider_enabled?
+ if better_maps_ios_google_provider_enabled
s.dependency 'GoogleMaps'
end
From d76a8c98313454706d24990f9f17daa56f7d9caa Mon Sep 17 00:00:00 2001
From: Piotr Graczyk
Date: Fri, 11 Sep 2026 13:02:19 +0200
Subject: [PATCH 02/10] feat: add live Fabric marker views with native
projection
---
docs/custom-marker-views.md | 50 +++++
.../nitromaps/GoogleMapProviderAdapter.kt | 8 +
.../margelo/nitro/nitromaps/HybridMapView.kt | 9 +-
.../nitro/nitromaps/HybridMarkerView.kt | 19 ++
.../nitro/nitromaps/MapProviderAdapter.kt | 2 +
.../nitro/nitromaps/NitroMapContainerView.kt | 118 +++++++++++
.../nitro/nitromaps/NitroMapsPackage.kt | 3 +-
.../nitro/nitromaps/NitroMarkerContentView.kt | 37 ++++
package/ios/AppleMapProviderAdapter.swift | 7 +
package/ios/GoogleMapProviderAdapter.swift | 12 ++
package/ios/HybridMapView.swift | 11 +-
package/ios/HybridMapViewDelegate.swift | 7 +
package/ios/HybridMarkerView.swift | 17 ++
package/ios/MapProviderAdapter.swift | 4 +
package/ios/NitroMapContainerView.swift | 61 ++++++
package/ios/NitroMarkerContentView.swift | 43 ++++
package/nitro.json | 10 +
package/scripts/patch-nitrogen-generated.mjs | 92 +++++++++
package/src/components/MapChildrenContext.ts | 3 +
package/src/components/MapView.tsx | 186 ++++++++++--------
package/src/components/MarkerView.tsx | 69 +++++++
package/src/components/index.ts | 3 +
package/src/index.ts | 3 +
package/src/native/MarkerViewNative.ts | 9 +
package/src/native/specs/MarkerView.nitro.ts | 11 ++
.../__tests__/collectMarkerViews.test.ts | 49 +++++
package/src/overlays/collectMarkerViews.ts | 20 ++
27 files changed, 778 insertions(+), 85 deletions(-)
create mode 100644 docs/custom-marker-views.md
create mode 100644 package/android/src/main/java/com/margelo/nitro/nitromaps/HybridMarkerView.kt
create mode 100644 package/android/src/main/java/com/margelo/nitro/nitromaps/NitroMapContainerView.kt
create mode 100644 package/android/src/main/java/com/margelo/nitro/nitromaps/NitroMarkerContentView.kt
create mode 100644 package/ios/HybridMarkerView.swift
create mode 100644 package/ios/NitroMapContainerView.swift
create mode 100644 package/ios/NitroMarkerContentView.swift
create mode 100644 package/src/components/MapChildrenContext.ts
create mode 100644 package/src/components/MarkerView.tsx
create mode 100644 package/src/native/MarkerViewNative.ts
create mode 100644 package/src/native/specs/MarkerView.nitro.ts
create mode 100644 package/src/overlays/__tests__/collectMarkerViews.test.ts
create mode 100644 package/src/overlays/collectMarkerViews.ts
diff --git a/docs/custom-marker-views.md b/docs/custom-marker-views.md
new file mode 100644
index 0000000..24d00d6
--- /dev/null
+++ b/docs/custom-marker-views.md
@@ -0,0 +1,50 @@
+# Live custom marker views
+
+`MarkerView` keeps arbitrary React Native content live above the native map. It positions the host using the provider's native coordinate projection, without bitmap snapshots or per-frame JavaScript camera events. Child state, `Pressable`, and Reanimated animations stay in Fabric.
+
+```tsx
+import { MapView, MarkerView } from 'react-native-better-maps';
+import { Pressable, Text } from 'react-native';
+
+
+
+ selectPlace()} style={styles.priceBubble}>
+ 120 zł
+
+
+;
+```
+
+Give every item a stable React key when rendering a list. Direct `MarkerView` children and nested React fragments are supported, as with the library's explicit overlay collection model. Arbitrary wrapper components returning a `MarkerView` are not collected: put the wrapper inside `MarkerView` instead.
+
+## Contract
+
+| Property | Behavior |
+| --- | --- |
+| `coordinate` | Required finite latitude −90…90 and longitude −180…180. Changing it repositions only that host. |
+| `width`, `height` | Required positive finite dimensions in points/dp. They define layout, clipping, hit-testing, and the anchor reference. |
+| `anchor` | Defaults to bottom-center (`{ x: 0.5, y: 1 }`). Components are finite fractions of the bounds; values outside 0…1 deliberately offset the host. |
+| `children` | Live React Native tree. Animate child views inside the fixed bounds; the native host reserves its own transform for geographic position. |
+
+Content is screen-aligned and clipped to its bounds and the map viewport. Marker views are composed above the SDK surface, including its annotations and controls. Use map padding/placement to avoid covering controls. Their order follows JSX order. They do not participate in SDK clustering, annotation collision, depth occlusion, dragging, callouts, or flat/ground-plane rotation. Use `Marker` descriptors for those SDK marker features and for large static datasets.
+
+The same live-host mechanism is implemented for MapKit, Google iOS, and Google Android. The host stays in Fabric's hierarchy: the library does not steal/reparent RN children into SDK annotation views. On iOS, the generated component explicitly forwards Fabric mount/unmount into the Swift content container. On Android, ViewGroup managers keep the SDK surface out of Fabric child indices. The Nitrogen compatibility script validates its patch targets and fails if the generated shape changes.
+
+Provider camera callbacks update positions synchronously on the native UI thread. Idle maps do not run a projection timer. Empty maps have no marker projection loop. Layout/coordinate changes update affected hosts; provider/map lifecycle tears down the association. Hosts outside the viewport are hidden from drawing/hit-testing, but this does not cancel application-owned timers or worklet animations.
+
+## Performance contract and validation status
+
+Removing snapshots eliminates one expensive class of work; it does not remove native view layout, React commits, projection, texture composition, or GPU cost. A simple child transform and an animated layout/text subtree have different costs. No universal 120 FPS guarantee is made for arbitrary JSX or unbounded marker counts.
+
+The target is no material regression against the same provider and device baseline for a recorded workload. Google Maps iOS documents a 60 FPS maximum for its native map; a 120 Hz JSX overlay or display callback is not evidence of 120 distinct map frames. See [SDK evidence](research/custom-marker-sdk-sources.md).
+
+The implementation is currently under native validation. Run the opt-in example with `EXPO_PUBLIC_MARKER_VIEW_BENCHMARK=1` in a Release build. Its A/B flow compares pins, static JSX, child transform animation, and child layout animation at 10/50/200 mounted hosts, using three passes and alternating mode order. Native callback intervals and memory are diagnostic data; Instruments/Perfetto and functional checks are also required before accepting the feature.
+
+The example reuses the local FrameStats module introduced in PR #66. It is example-only and does not ship in the library. Trace the application without a debugger attached; identify the actual map presentation/animation cadence rather than treating display callback intervals as GPU frames. Record device/OS/SDK, visible count, thermal and power state, route, marker dimensions, and baseline/candidate traces.
+
+See [snapshot experiment](../experiments/custom-markers/README.md) for the earlier hypothesis test and [research](research/custom-marker-performance.md) for the design alternatives. Those notes predate the live-host implementation; this document describes the implemented API.
diff --git a/package/android/src/main/java/com/margelo/nitro/nitromaps/GoogleMapProviderAdapter.kt b/package/android/src/main/java/com/margelo/nitro/nitromaps/GoogleMapProviderAdapter.kt
index 06f555f..890158d 100644
--- a/package/android/src/main/java/com/margelo/nitro/nitromaps/GoogleMapProviderAdapter.kt
+++ b/package/android/src/main/java/com/margelo/nitro/nitromaps/GoogleMapProviderAdapter.kt
@@ -32,6 +32,10 @@ class GoogleMapProviderAdapter(
LifecycleEventListener {
private var googleMap: GoogleMap? = null
+ override var onCameraMoved: (() -> Unit)? = null
+
+ override fun projectMarker(coordinate: Coordinate): android.graphics.Point? =
+ googleMap?.projection?.toScreenLocation(LatLng(coordinate.latitude, coordinate.longitude))
private var isUserGesture = false
private var hasFiredMapReady = false
private val overlayController = MapOverlayController(null, context)
@@ -87,6 +91,7 @@ class GoogleMapProviderAdapter(
view.getMapAsync { map ->
googleMap = map
configureMap(map)
+ onCameraMoved?.invoke()
}
installViewportSizeListener(view)
@@ -425,9 +430,11 @@ class GoogleMapProviderAdapter(
)
}
map.setOnCameraMoveListener {
+ onCameraMoved?.invoke()
overlayController.onCameraMove()
}
map.setOnCameraIdleListener {
+ onCameraMoved?.invoke()
overlayController.onCameraIdle()
handleRegionDidChange()
}
@@ -741,6 +748,7 @@ class GoogleMapProviderAdapter(
override fun release() {
// Drop the JS callbacks first: a map event still in flight must not reach a
// view that is already gone.
+ onCameraMoved = null
onRegionChange = null
onRegionChangeComplete = null
onMapReady = null
diff --git a/package/android/src/main/java/com/margelo/nitro/nitromaps/HybridMapView.kt b/package/android/src/main/java/com/margelo/nitro/nitromaps/HybridMapView.kt
index 8eab2bf..a9b673f 100644
--- a/package/android/src/main/java/com/margelo/nitro/nitromaps/HybridMapView.kt
+++ b/package/android/src/main/java/com/margelo/nitro/nitromaps/HybridMapView.kt
@@ -39,7 +39,7 @@ class HybridMapView(private val context: ThemedReactContext) :
private var _markerEnteringAnimation: OverlayEnteringAnimationDescriptor? = null
private var _clusterEnteringAnimation: OverlayEnteringAnimationDescriptor? = null
- override val view: FrameLayout = FrameLayout(context)
+ override val view = NitroMapContainerView(context)
override var provider: MapProvider?
get() = _provider
@@ -359,6 +359,9 @@ class HybridMapView(private val context: ThemedReactContext) :
adapter?.release()
adapter?.view?.let(view::removeView)
adapter = null
+ view.mapSurface = null
+ view.projectCoordinate = null
+ view.updateMarkerPositions()
}
private fun installAdapter(provider: MapProvider) {
@@ -367,6 +370,8 @@ class HybridMapView(private val context: ThemedReactContext) :
releaseAdapter()
adapter = nextAdapter
+ view.projectCoordinate = nextAdapter::projectMarker
+ nextAdapter.onCameraMoved = view::updateMarkerPositions
attach(nextAdapter.view)
syncState(nextAdapter)
}
@@ -382,8 +387,10 @@ class HybridMapView(private val context: ThemedReactContext) :
}
private fun attach(contentView: View) {
+ view.mapSurface = contentView
view.addView(
contentView,
+ 0,
FrameLayout.LayoutParams(
FrameLayout.LayoutParams.MATCH_PARENT,
FrameLayout.LayoutParams.MATCH_PARENT,
diff --git a/package/android/src/main/java/com/margelo/nitro/nitromaps/HybridMarkerView.kt b/package/android/src/main/java/com/margelo/nitro/nitromaps/HybridMarkerView.kt
new file mode 100644
index 0000000..95adf42
--- /dev/null
+++ b/package/android/src/main/java/com/margelo/nitro/nitromaps/HybridMarkerView.kt
@@ -0,0 +1,19 @@
+package com.margelo.nitro.nitromaps
+
+import androidx.annotation.Keep
+import com.facebook.proguard.annotations.DoNotStrip
+import com.facebook.react.uimanager.ThemedReactContext
+
+@Keep
+@DoNotStrip
+class HybridMarkerView(context: ThemedReactContext) : HybridMarkerViewSpec() {
+ override val view = NitroMarkerContentView(context)
+
+ override var coordinate = Coordinate(0.0, 0.0)
+ set(value) { field = value; view.coordinate = value }
+
+ override var anchor: MarkerAnchor? = null
+ set(value) { field = value; view.anchor = value }
+
+ override fun afterUpdate() { view.updatePosition() }
+}
diff --git a/package/android/src/main/java/com/margelo/nitro/nitromaps/MapProviderAdapter.kt b/package/android/src/main/java/com/margelo/nitro/nitromaps/MapProviderAdapter.kt
index 06f7e14..7735a39 100644
--- a/package/android/src/main/java/com/margelo/nitro/nitromaps/MapProviderAdapter.kt
+++ b/package/android/src/main/java/com/margelo/nitro/nitromaps/MapProviderAdapter.kt
@@ -5,6 +5,8 @@ import com.margelo.nitro.core.Promise
interface MapProviderAdapter {
val view: View
+ var onCameraMoved: (() -> Unit)?
+ fun projectMarker(coordinate: Coordinate): android.graphics.Point?
var mapType: MapType
var region: Region?
diff --git a/package/android/src/main/java/com/margelo/nitro/nitromaps/NitroMapContainerView.kt b/package/android/src/main/java/com/margelo/nitro/nitromaps/NitroMapContainerView.kt
new file mode 100644
index 0000000..6dd60fb
--- /dev/null
+++ b/package/android/src/main/java/com/margelo/nitro/nitromaps/NitroMapContainerView.kt
@@ -0,0 +1,118 @@
+package com.margelo.nitro.nitromaps
+
+import android.content.Context
+import android.graphics.Point
+import android.view.View
+import android.view.MotionEvent
+import android.view.ViewConfiguration
+import com.facebook.react.uimanager.events.NativeGestureUtil
+import android.view.ViewGroup
+
+/** Keeps the SDK child out of Fabric's child-index bookkeeping. */
+class NitroMapContainerView(context: Context) : ViewGroup(context) {
+ var projectCoordinate: ((Coordinate) -> Point?)? = null
+ var mapSurface: View? = null
+ private val markerViews = mutableListOf()
+ private val touchSlop = ViewConfiguration.get(context).scaledTouchSlop
+ private var markerDown: MotionEvent? = null
+ private var forwardingGesture = false
+
+ init { clipChildren = true }
+
+ fun addMarkerView(child: View, index: Int) {
+ require(child is NitroMarkerContentView) { "MapView only accepts native MarkerView children" }
+ val nativeChildCount = childCount - markerViews.size
+ markerViews.add(index, child)
+ addView(child, index + nativeChildCount)
+ child.updatePosition()
+ }
+
+ fun markerViewAt(index: Int): View = markerViews[index]
+ fun markerViewCount(): Int = markerViews.size
+ fun removeMarkerViewAt(index: Int) { removeView(markerViews.removeAt(index)) }
+ fun removeAllMarkerViews() {
+ for (marker in markerViews) removeView(marker)
+ markerViews.clear()
+ }
+
+ override fun dispatchTouchEvent(event: MotionEvent): Boolean {
+ if (event.actionMasked == MotionEvent.ACTION_DOWN) {
+ clearMarkerGesture()
+ val touchesMarker = markerViews.any { marker ->
+ marker.visibility == VISIBLE && event.x >= marker.x && event.x < marker.x + marker.width &&
+ event.y >= marker.y && event.y < marker.y + marker.height
+ }
+ if (touchesMarker) markerDown = MotionEvent.obtain(event)
+ }
+ val down = markerDown
+ val surface = mapSurface
+ if (down != null && surface != null) {
+ val dx = event.x - down.x
+ val dy = event.y - down.y
+ val startsGesture = event.actionMasked == MotionEvent.ACTION_POINTER_DOWN ||
+ (event.actionMasked == MotionEvent.ACTION_MOVE && dx * dx + dy * dy > touchSlop * touchSlop)
+ if (!forwardingGesture && startsGesture) {
+ NativeGestureUtil.notifyNativeGestureStarted(this, event)
+ val cancel = MotionEvent.obtain(event)
+ cancel.action = MotionEvent.ACTION_CANCEL
+ super.dispatchTouchEvent(cancel)
+ cancel.recycle()
+ surface.dispatchTouchEvent(down)
+ forwardingGesture = true
+ }
+ if (forwardingGesture) {
+ surface.dispatchTouchEvent(event)
+ if (event.actionMasked == MotionEvent.ACTION_UP || event.actionMasked == MotionEvent.ACTION_CANCEL) {
+ NativeGestureUtil.notifyNativeGestureEnded(this, event)
+ clearMarkerGesture()
+ }
+ return true
+ }
+ }
+ val handled = super.dispatchTouchEvent(event)
+ if (event.actionMasked == MotionEvent.ACTION_UP || event.actionMasked == MotionEvent.ACTION_CANCEL) {
+ clearMarkerGesture()
+ }
+ return handled
+ }
+
+ private fun clearMarkerGesture() {
+ markerDown?.recycle()
+ markerDown = null
+ forwardingGesture = false
+ }
+
+ override fun onDetachedFromWindow() {
+ if (forwardingGesture) {
+ markerDown?.let { down ->
+ val cancel = MotionEvent.obtain(down)
+ cancel.action = MotionEvent.ACTION_CANCEL
+ mapSurface?.dispatchTouchEvent(cancel)
+ NativeGestureUtil.notifyNativeGestureEnded(this, cancel)
+ cancel.recycle()
+ }
+ }
+ clearMarkerGesture()
+ super.onDetachedFromWindow()
+ }
+
+ override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) {
+ setMeasuredDimension(MeasureSpec.getSize(widthMeasureSpec), MeasureSpec.getSize(heightMeasureSpec))
+ for (index in 0 until childCount) {
+ val child = getChildAt(index)
+ if (child !is NitroMarkerContentView) child.measure(widthMeasureSpec, heightMeasureSpec)
+ }
+ }
+
+ override fun onLayout(changed: Boolean, left: Int, top: Int, right: Int, bottom: Int) {
+ for (index in 0 until childCount) {
+ val child = getChildAt(index)
+ if (child !is NitroMarkerContentView) child.layout(0, 0, right - left, bottom - top)
+ }
+ updateMarkerPositions()
+ }
+
+ fun updateMarkerPositions() {
+ for (marker in markerViews) marker.updatePosition()
+ }
+}
diff --git a/package/android/src/main/java/com/margelo/nitro/nitromaps/NitroMapsPackage.kt b/package/android/src/main/java/com/margelo/nitro/nitromaps/NitroMapsPackage.kt
index 2feeb9e..9228d2b 100644
--- a/package/android/src/main/java/com/margelo/nitro/nitromaps/NitroMapsPackage.kt
+++ b/package/android/src/main/java/com/margelo/nitro/nitromaps/NitroMapsPackage.kt
@@ -6,6 +6,7 @@ import com.facebook.react.bridge.ReactApplicationContext
import com.facebook.react.module.model.ReactModuleInfoProvider
import com.facebook.react.uimanager.ViewManager
import com.margelo.nitro.nitromaps.views.HybridMapViewManager
+import com.margelo.nitro.nitromaps.views.HybridMarkerViewManager
/**
* React Native package that registers the `MapView` Nitro HybridView's view
@@ -21,7 +22,7 @@ class NitroMapsPackage : BaseReactPackage() {
}
override fun createViewManagers(reactContext: ReactApplicationContext): List> {
- return listOf(HybridMapViewManager())
+ return listOf(HybridMapViewManager(), HybridMarkerViewManager())
}
companion object {
diff --git a/package/android/src/main/java/com/margelo/nitro/nitromaps/NitroMarkerContentView.kt b/package/android/src/main/java/com/margelo/nitro/nitromaps/NitroMarkerContentView.kt
new file mode 100644
index 0000000..32be901
--- /dev/null
+++ b/package/android/src/main/java/com/margelo/nitro/nitromaps/NitroMarkerContentView.kt
@@ -0,0 +1,37 @@
+package com.margelo.nitro.nitromaps
+
+import android.content.Context
+import android.view.ViewGroup
+
+/** Fabric keeps ownership and layout of children; the outer host translates. */
+class NitroMarkerContentView(context: Context) : ViewGroup(context) {
+ var coordinate: Coordinate? = null
+ var anchor: MarkerAnchor? = null
+
+ init { clipChildren = true }
+
+ override fun onLayout(changed: Boolean, left: Int, top: Int, right: Int, bottom: Int) {
+ updatePosition()
+ }
+
+ fun updatePosition() {
+ val map = parent as? NitroMapContainerView ?: return
+ val coordinate = coordinate
+ val point = coordinate?.let { map.projectCoordinate?.invoke(it) }
+ if (point == null || width <= 0 || height <= 0) {
+ visibility = INVISIBLE
+ return
+ }
+ val x = point.x - width * (anchor?.x ?: 0.5)
+ val y = point.y - height * (anchor?.y ?: 1.0)
+ val visible = x.isFinite() && y.isFinite() &&
+ x < map.width && y < map.height && x + width > 0 && y + height > 0
+ visibility = if (visible) VISIBLE else INVISIBLE
+ if (visible) {
+ val nextX = (x - left).toFloat()
+ val nextY = (y - top).toFloat()
+ if (translationX != nextX) translationX = nextX
+ if (translationY != nextY) translationY = nextY
+ }
+ }
+}
diff --git a/package/ios/AppleMapProviderAdapter.swift b/package/ios/AppleMapProviderAdapter.swift
index fb73d5b..2a6bb31 100644
--- a/package/ios/AppleMapProviderAdapter.swift
+++ b/package/ios/AppleMapProviderAdapter.swift
@@ -149,6 +149,12 @@ final class AppleMapProviderAdapter: MapProviderAdapter {
}
}
+ var onCameraMoved: (() -> Void)?
+
+ func projectMarker(_ coordinate: Coordinate) -> CGPoint? {
+ view.convert(coordinate.toCLLocationCoordinate2D(), toPointTo: view)
+ }
+
var onRegionChange: ((Region) -> Void)?
var onRegionChangeComplete: ((Region) -> Void)?
var onMapReady: (() -> Void)? {
@@ -406,6 +412,7 @@ final class AppleMapProviderAdapter: MapProviderAdapter {
isUserRegionChange = false
isMapReady = false
hasDeliveredMapReady = false
+ onCameraMoved = nil
onRegionChange = nil
onRegionChangeComplete = nil
onMapReady = nil
diff --git a/package/ios/GoogleMapProviderAdapter.swift b/package/ios/GoogleMapProviderAdapter.swift
index 95c5b6a..1ef24d7 100644
--- a/package/ios/GoogleMapProviderAdapter.swift
+++ b/package/ios/GoogleMapProviderAdapter.swift
@@ -169,6 +169,12 @@ final class GoogleMapProviderAdapter: NSObject, MapProviderAdapter {
}
}
+ var onCameraMoved: (() -> Void)?
+
+ func projectMarker(_ coordinate: Coordinate) -> CGPoint? {
+ view.projection.point(for: coordinate.toCLLocationCoordinate2D())
+ }
+
var onRegionChange: ((Region) -> Void)?
var onRegionChangeComplete: ((Region) -> Void)?
var onMapReady: (() -> Void)? {
@@ -265,6 +271,7 @@ final class GoogleMapProviderAdapter: NSObject, MapProviderAdapter {
hasDeliveredMapReady = false
view.delegate = nil
overlayController.reset()
+ onCameraMoved = nil
onRegionChange = nil
onRegionChangeComplete = nil
onMapReady = nil
@@ -376,6 +383,7 @@ final class GoogleMapProviderAdapter: NSObject, MapProviderAdapter {
private func startGestureMarkerRefresh() {
isUserGestureMoving = true
lastLiveMarkerRefreshTime = 0
+ onCameraMoved?()
refreshGestureMarkersIfNeeded()
}
@@ -510,10 +518,12 @@ extension GoogleMapProviderAdapter: GMSMapViewDelegate {
}
func mapView(_ mapView: GMSMapView, didChange position: GMSCameraPosition) {
+ onCameraMoved?()
refreshGestureMarkersIfNeeded()
}
func mapView(_ mapView: GMSMapView, idleAt position: GMSCameraPosition) {
+ onCameraMoved?()
refreshVisibleMarkers()
stopGestureMarkerRefresh()
handleRegionDidChange()
@@ -521,6 +531,7 @@ extension GoogleMapProviderAdapter: GMSMapViewDelegate {
}
func mapView(_ mapView: GMSMapView, didTapAt coordinate: CLLocationCoordinate2D) {
+ if (mapView.superview as? NitroMapContainerView)?.containsMarker(at: mapView.projection.point(for: coordinate)) == true { return }
onPress?(Coordinate(latitude: coordinate.latitude, longitude: coordinate.longitude))
}
@@ -543,6 +554,7 @@ extension GoogleMapProviderAdapter: GMSMapViewDelegate {
}
func mapView(_ mapView: GMSMapView, didLongPressAt coordinate: CLLocationCoordinate2D) {
+ if (mapView.superview as? NitroMapContainerView)?.containsMarker(at: mapView.projection.point(for: coordinate)) == true { return }
onLongPress?(Coordinate(latitude: coordinate.latitude, longitude: coordinate.longitude))
}
diff --git a/package/ios/HybridMapView.swift b/package/ios/HybridMapView.swift
index 05dca26..98a2782 100644
--- a/package/ios/HybridMapView.swift
+++ b/package/ios/HybridMapView.swift
@@ -2,7 +2,7 @@ import NitroModules
import UIKit
final class HybridMapView: HybridMapViewSpec {
- private let containerView = UIView()
+ private let containerView = NitroMapContainerView()
private let lifecycleLock = NSLock()
private let stateLock = NSLock()
private var adapter: MapProviderAdapter?
@@ -367,6 +367,12 @@ final class HybridMapView: HybridMapViewSpec {
let nextAdapter = makeAdapter(for: provider)
adapter = nextAdapter
+ containerView.projectCoordinate = { [weak nextAdapter] coordinate in
+ nextAdapter?.projectMarker(coordinate)
+ }
+ nextAdapter.onCameraMoved = { [weak containerView] in
+ containerView?.updateMarkerPositions()
+ }
attach(contentView: nextAdapter.contentView)
syncState(to: nextAdapter)
}
@@ -396,7 +402,8 @@ final class HybridMapView: HybridMapViewSpec {
private func attach(contentView: UIView) {
contentView.translatesAutoresizingMaskIntoConstraints = false
- containerView.addSubview(contentView)
+ containerView.mapSurface = contentView
+ containerView.insertSubview(contentView, at: 0)
NSLayoutConstraint.activate([
contentView.leadingAnchor.constraint(equalTo: containerView.leadingAnchor),
contentView.trailingAnchor.constraint(equalTo: containerView.trailingAnchor),
diff --git a/package/ios/HybridMapViewDelegate.swift b/package/ios/HybridMapViewDelegate.swift
index 67891a2..d5768e5 100644
--- a/package/ios/HybridMapViewDelegate.swift
+++ b/package/ios/HybridMapViewDelegate.swift
@@ -30,6 +30,7 @@ final class HybridMapViewDelegate: NSObject, MKMapViewDelegate, UIGestureRecogni
}
let point = recognizer.location(in: parent.view)
+ if (parent.view.superview as? NitroMapContainerView)?.containsMarker(at: point) == true { return }
if parent.notifyOverlayPress(at: point) {
return
}
@@ -58,6 +59,7 @@ final class HybridMapViewDelegate: NSObject, MKMapViewDelegate, UIGestureRecogni
}
let point = recognizer.location(in: parent.view)
+ if (parent.view.superview as? NitroMapContainerView)?.containsMarker(at: point) == true { return }
parent.notifyLongPress(at: point)
}
@@ -79,11 +81,16 @@ final class HybridMapViewDelegate: NSObject, MKMapViewDelegate, UIGestureRecogni
return false
}
+ func mapViewDidChangeVisibleRegion(_ mapView: MKMapView) {
+ parent?.onCameraMoved?()
+ }
+
func mapView(_ mapView: MKMapView, regionWillChangeAnimated animated: Bool) {
parent?.handleRegionWillChange(userInteracting: mapView.isUserInteracting)
}
func mapView(_ mapView: MKMapView, regionDidChangeAnimated animated: Bool) {
+ parent?.onCameraMoved?()
parent?.handleRegionDidChange()
}
diff --git a/package/ios/HybridMarkerView.swift b/package/ios/HybridMarkerView.swift
new file mode 100644
index 0000000..2e90fd3
--- /dev/null
+++ b/package/ios/HybridMarkerView.swift
@@ -0,0 +1,17 @@
+import UIKit
+
+final class HybridMarkerView: HybridMarkerViewSpec {
+ private let content = NitroMarkerContentView()
+ var view: UIView { content }
+
+ var coordinate = Coordinate(latitude: 0, longitude: 0) {
+ didSet { content.coordinate = coordinate }
+ }
+ var anchor: MarkerAnchor? {
+ didSet { content.anchor = anchor }
+ }
+
+ func afterUpdate() {
+ content.updatePosition()
+ }
+}
diff --git a/package/ios/MapProviderAdapter.swift b/package/ios/MapProviderAdapter.swift
index ff5d220..c29d25a 100644
--- a/package/ios/MapProviderAdapter.swift
+++ b/package/ios/MapProviderAdapter.swift
@@ -3,6 +3,8 @@ import UIKit
protocol MapProviderAdapter: AnyObject {
var contentView: UIView { get }
+ var onCameraMoved: (() -> Void)? { get set }
+ func projectMarker(_ coordinate: Coordinate) -> CGPoint?
var mapType: MapType { get set }
var region: Region? { get set }
@@ -51,6 +53,8 @@ protocol MapProviderAdapter: AnyObject {
final class UnavailableMapProviderAdapter: MapProviderAdapter {
let contentView: UIView
+ var onCameraMoved: (() -> Void)?
+ func projectMarker(_ coordinate: Coordinate) -> CGPoint? { nil }
private let error: Error
var mapType: MapType = .standard
diff --git a/package/ios/NitroMapContainerView.swift b/package/ios/NitroMapContainerView.swift
new file mode 100644
index 0000000..4b0730d
--- /dev/null
+++ b/package/ios/NitroMapContainerView.swift
@@ -0,0 +1,61 @@
+import UIKit
+
+/// The SDK surface and live Fabric hosts share this native coordinate space.
+final class NitroMapContainerView: UIView {
+ var projectCoordinate: ((Coordinate) -> CGPoint?)?
+ private var markerContents: [NitroMarkerContentView] = []
+
+ override init(frame: CGRect) {
+ super.init(frame: frame)
+ clipsToBounds = true
+ }
+
+ required init?(coder: NSCoder) { fatalError("init(coder:) is unsupported") }
+
+ weak var mapSurface: UIView?
+
+ @objc(nitroMountChild:atIndex:)
+ func mountFabricChild(_ child: UIView, at index: Int) {
+ let surface = mapSurface ?? self
+ let next = markerContents.indices.contains(index) ? markerContents[index].fabricHost : nil
+ if let next { surface.insertSubview(child, belowSubview: next) }
+ else { surface.addSubview(child) }
+ guard let content = child.subviews.first(where: { $0 is NitroMarkerContentView })
+ as? NitroMarkerContentView else { return }
+ content.mapContainer = self
+ content.fabricHost = child
+ markerContents.insert(content, at: index)
+ content.updatePosition()
+ }
+
+ @objc(nitroUnmountChild:)
+ func unmountFabricChild(_ child: UIView) {
+ if let index = markerContents.firstIndex(where: { $0.fabricHost === child }) {
+ let content = markerContents.remove(at: index)
+ content.mapContainer = nil
+ content.fabricHost = nil
+ child.transform = .identity
+ child.isHidden = false
+ }
+ child.removeFromSuperview()
+ }
+
+ func containsMarker(at point: CGPoint) -> Bool {
+ markerContents.contains { marker in
+ guard let host = marker.fabricHost, !host.isHidden else { return false }
+ return host.frame.contains(point)
+ }
+ }
+
+ override func layoutSubviews() {
+ super.layoutSubviews()
+ updateMarkerPositions()
+ }
+
+ func updateMarkerPositions() {
+ // No timers, snapshots, or JS callbacks; an empty marker list costs no work.
+ UIView.performWithoutAnimation {
+ for marker in markerContents { marker.updatePosition() }
+ }
+ }
+}
diff --git a/package/ios/NitroMarkerContentView.swift b/package/ios/NitroMarkerContentView.swift
new file mode 100644
index 0000000..995dc3b
--- /dev/null
+++ b/package/ios/NitroMarkerContentView.swift
@@ -0,0 +1,43 @@
+import UIKit
+
+/// Owns Fabric children for their entire lifetime. Only the outer host moves.
+final class NitroMarkerContentView: UIView {
+ var coordinate: Coordinate?
+ var anchor: MarkerAnchor?
+ weak var mapContainer: NitroMapContainerView?
+ weak var fabricHost: UIView?
+
+ @objc(nitroMountChild:atIndex:)
+ func mountFabricChild(_ child: UIView, at index: Int) {
+ insertSubview(child, at: index)
+ }
+
+ @objc(nitroUnmountChild:)
+ func unmountFabricChild(_ child: UIView) {
+ child.removeFromSuperview()
+ }
+
+ override func layoutSubviews() {
+ super.layoutSubviews()
+ updatePosition()
+ }
+
+ func updatePosition() {
+ guard let host = fabricHost, let map = mapContainer else { return }
+ guard let coordinate, let point = map.projectCoordinate?(coordinate),
+ point.x.isFinite, point.y.isFinite,
+ host.bounds.width > 0, host.bounds.height > 0 else {
+ host.isHidden = true
+ return
+ }
+ let x = point.x - host.bounds.width * CGFloat(anchor?.x ?? 0.5)
+ let y = point.y - host.bounds.height * CGFloat(anchor?.y ?? 1)
+ let projectedFrame = CGRect(origin: CGPoint(x: x, y: y), size: host.bounds.size)
+ let visible = projectedFrame.intersects(map.bounds)
+ host.isHidden = !visible
+ if visible {
+ let transform = CGAffineTransform(translationX: x, y: y)
+ if host.transform != transform { host.transform = transform }
+ }
+ }
+}
diff --git a/package/nitro.json b/package/nitro.json
index b86f88e..90724d2 100644
--- a/package/nitro.json
+++ b/package/nitro.json
@@ -18,6 +18,16 @@
"language": "kotlin",
"implementationClassName": "HybridMapView"
}
+ },
+ "MarkerView": {
+ "ios": {
+ "language": "swift",
+ "implementationClassName": "HybridMarkerView"
+ },
+ "android": {
+ "language": "kotlin",
+ "implementationClassName": "HybridMarkerView"
+ }
}
}
}
diff --git a/package/scripts/patch-nitrogen-generated.mjs b/package/scripts/patch-nitrogen-generated.mjs
index feaa8e7..58764c3 100644
--- a/package/scripts/patch-nitrogen-generated.mjs
+++ b/package/scripts/patch-nitrogen-generated.mjs
@@ -94,3 +94,95 @@ replaceOnce(
'coordinates: coordinates.map({ __item in __item })',
'coordinates: (0.. *)child index:(NSInteger)index {
+ NSAssert(child.superview == nil, @"Marker child is already mounted");
+ [self.contentView nitroMountChild:child atIndex:index];
+}
+
+- (void)unmountChildComponentView:(UIView *)child index:(NSInteger)index {
+ [self.contentView nitroUnmountChild:child];
+}
+
+- (void) updateView {`);
+}
+
+// Android must expose a ViewGroupManager for Fabric to mount descendants.
+for (const name of ['MapView', 'MarkerView']) {
+ const file = join(
+ packageDir,
+ `nitrogen/generated/android/kotlin/com/margelo/nitro/nitromaps/views/Hybrid${name}Manager.kt`,
+ );
+ const source = readFileSync(file, 'utf8');
+ if (source.includes('SimpleViewManager()')) {
+ writeFileSync(
+ file,
+ source
+ .replace(
+ 'import android.view.View\n',
+ 'import android.view.View\nimport android.view.ViewGroup\n',
+ )
+ .replace(
+ 'import com.facebook.react.uimanager.SimpleViewManager',
+ 'import com.facebook.react.uimanager.ViewGroupManager',
+ )
+ .replace('SimpleViewManager()', 'ViewGroupManager()')
+ .replaceAll('view: View', 'view: ViewGroup')
+ .replace(
+ 'createViewInstance(reactContext: ThemedReactContext): View',
+ 'createViewInstance(reactContext: ThemedReactContext): ViewGroup',
+ )
+ .replace('view: ViewGroup): View?', 'view: ViewGroup): ViewGroup?'),
+ );
+ } else if (!source.includes('ViewGroupManager()')) {
+ throw new Error(`Unexpected generated manager shape: ${file}`);
+ }
+ if (name === 'MapView') {
+ replaceOnce(
+ file,
+ ' override fun getName(): String {',
+ ` override fun addView(parent: ViewGroup, child: View, index: Int) {
+ (parent as NitroMapContainerView).addMarkerView(child, index)
+ }
+ override fun getChildCount(parent: ViewGroup): Int = (parent as NitroMapContainerView).markerViewCount()
+ override fun getChildAt(parent: ViewGroup, index: Int): View = (parent as NitroMapContainerView).markerViewAt(index)
+ override fun removeViewAt(parent: ViewGroup, index: Int) { (parent as NitroMapContainerView).removeMarkerViewAt(index) }
+ override fun removeAllViews(parent: ViewGroup) { (parent as NitroMapContainerView).removeAllMarkerViews() }
+
+ override fun getName(): String {`,
+ );
+ }
+}
+
+// Both views need the existing RN 0.86 state compatibility fixes.
+replaceOnce(
+ join(
+ packageDir,
+ 'nitrogen/generated/shared/c++/views/HybridMarkerViewComponent.cpp',
+ ),
+ ` const std::shared_ptr& constProps = concreteShadowNode.getConcreteSharedProps();
+ const std::shared_ptr& props = std::const_pointer_cast(constProps);
+`,
+ ` auto constProps = std::static_pointer_cast(concreteShadowNode.getProps());
+ auto props = std::const_pointer_cast(constProps);
+`,
+);
+replaceOnce(
+ join(
+ packageDir,
+ 'nitrogen/generated/shared/c++/views/HybridMarkerViewComponent.hpp',
+ ),
+ ` HybridMarkerViewState(const HybridMarkerViewState& /* previousState */, folly::dynamic /* data */) {}\n`,
+ ` HybridMarkerViewState(const HybridMarkerViewState& previousState, folly::dynamic /* data */):\n _props(previousState.getProps()) {}\n`,
+);
diff --git a/package/src/components/MapChildrenContext.ts b/package/src/components/MapChildrenContext.ts
new file mode 100644
index 0000000..bcf6758
--- /dev/null
+++ b/package/src/components/MapChildrenContext.ts
@@ -0,0 +1,3 @@
+import { createContext } from 'react';
+
+export const MapChildrenContext = createContext(false);
diff --git a/package/src/components/MapView.tsx b/package/src/components/MapView.tsx
index 122eadb..92cbae7 100644
--- a/package/src/components/MapView.tsx
+++ b/package/src/components/MapView.tsx
@@ -1,4 +1,13 @@
-import { useCallback, useImperativeHandle, useMemo, useRef, type Ref, type RefObject } from 'react';
+import { MapChildrenContext } from './MapChildrenContext';
+import { collectMarkerViews } from '../overlays/collectMarkerViews';
+import {
+ useCallback,
+ useImperativeHandle,
+ useMemo,
+ useRef,
+ type Ref,
+ type RefObject,
+} from 'react';
import { callback } from 'react-native-nitro-modules';
import { useCollectedOverlays } from '../hooks/useCollectedOverlays';
import { NativeMapView } from '../native/MapViewNative';
@@ -68,6 +77,7 @@ export function MapView({
onCirclePress: onCirclePressProp,
}: MapViewProps & { ref?: Ref }) {
const resolvedProvider = resolveMapProvider(provider);
+ const markerViews = useMemo(() => collectMarkerViews(children), [children]);
const hybridRef = useRef(null);
const {
markers: collectedMarkers,
@@ -82,36 +92,32 @@ export function MapView({
hasCirclePress,
} = useCollectedOverlays(children);
const normalizedBulkMarkers = useMemo(
- () => (markersProp != null ? normalizeMarkerDescriptors(markersProp) : null),
+ () =>
+ markersProp != null ? normalizeMarkerDescriptors(markersProp) : null,
[markersProp],
);
const markers =
normalizedBulkMarkers != null ? normalizedBulkMarkers : collectedMarkers;
- const polylines =
- polylinesProp != null ? polylinesProp : collectedPolylines;
- const polygons =
- polygonsProp != null ? polygonsProp : collectedPolygons;
- const circles =
- circlesProp != null ? circlesProp : collectedCircles;
+ const polylines = polylinesProp != null ? polylinesProp : collectedPolylines;
+ const polygons = polygonsProp != null ? polygonsProp : collectedPolygons;
+ const circles = circlesProp != null ? circlesProp : collectedCircles;
- const hasMarkerPress =
- onMarkerPressProp != null || hasCollectedMarkerPress;
+ const hasMarkerPress = onMarkerPressProp != null || hasCollectedMarkerPress;
const hasMarkerDragEnd =
onMarkerDragEndProp != null || hasCollectedMarkerDragEnd;
const hasPolylinePressHandler =
onPolylinePressProp != null || hasPolylinePress;
- const hasPolygonPressHandler =
- onPolygonPressProp != null || hasPolygonPress;
- const hasCirclePressHandler =
- onCirclePressProp != null || hasCirclePress;
+ const hasPolygonPressHandler = onPolygonPressProp != null || hasPolygonPress;
+ const hasCirclePressHandler = onCirclePressProp != null || hasCirclePress;
const onPoiPressCallback = onPoiPress as
- | ((event: PoiPressEvent) => void)
- | undefined;
+ ((event: PoiPressEvent) => void) | undefined;
const handleMarkerPress = useCallback(
(id: string) => {
- callbackRegistry.current.get(overlayCallbackKey(OverlayType.Marker, id))?.onPress?.();
+ callbackRegistry.current
+ .get(overlayCallbackKey(OverlayType.Marker, id))
+ ?.onPress?.();
onMarkerPressProp?.(id);
},
[callbackRegistry, onMarkerPressProp],
@@ -119,7 +125,9 @@ export function MapView({
const handleMarkerDragEnd = useCallback(
(id: string, coordinate: Coordinate) => {
- callbackRegistry.current.get(overlayCallbackKey(OverlayType.Marker, id))?.onDragEnd?.(coordinate);
+ callbackRegistry.current
+ .get(overlayCallbackKey(OverlayType.Marker, id))
+ ?.onDragEnd?.(coordinate);
onMarkerDragEndProp?.(id, coordinate);
},
[callbackRegistry, onMarkerDragEndProp],
@@ -127,7 +135,9 @@ export function MapView({
const handlePolylinePress = useCallback(
(id: string) => {
- callbackRegistry.current.get(overlayCallbackKey(OverlayType.Polyline, id))?.onPress?.();
+ callbackRegistry.current
+ .get(overlayCallbackKey(OverlayType.Polyline, id))
+ ?.onPress?.();
onPolylinePressProp?.(id);
},
[callbackRegistry, onPolylinePressProp],
@@ -135,7 +145,9 @@ export function MapView({
const handlePolygonPress = useCallback(
(id: string) => {
- callbackRegistry.current.get(overlayCallbackKey(OverlayType.Polygon, id))?.onPress?.();
+ callbackRegistry.current
+ .get(overlayCallbackKey(OverlayType.Polygon, id))
+ ?.onPress?.();
onPolygonPressProp?.(id);
},
[callbackRegistry, onPolygonPressProp],
@@ -143,7 +155,9 @@ export function MapView({
const handleCirclePress = useCallback(
(id: string) => {
- callbackRegistry.current.get(overlayCallbackKey(OverlayType.Circle, id))?.onPress?.();
+ callbackRegistry.current
+ .get(overlayCallbackKey(OverlayType.Circle, id))
+ ?.onPress?.();
onCirclePressProp?.(id);
},
[callbackRegistry, onCirclePressProp],
@@ -163,7 +177,11 @@ export function MapView({
return;
}
- if (event.provider === 'google' && event.name != null && event.placeId != null) {
+ if (
+ event.provider === 'google' &&
+ event.name != null &&
+ event.placeId != null
+ ) {
const poiEvent: PoiPressEvent = {
provider: 'google',
coordinate: event.coordinate,
@@ -198,64 +216,70 @@ export function MapView({
);
return (
- {
- hybridRef.current = nativeRef;
- })}
- provider={resolvedProvider}
- googleMapId={googleMapId}
- mapType={mapType}
- region={region}
- camera={camera}
- scrollEnabled={scrollEnabled}
- zoomEnabled={zoomEnabled}
- rotateEnabled={rotateEnabled}
- pitchEnabled={pitchEnabled}
- showsUserLocation={showsUserLocation}
- followsUserLocation={followsUserLocation}
- showsCompass={showsCompass}
- showsScale={showsScale}
- customMapStyle={customMapStyle}
- clusteringEnabled={clusteringEnabled}
- mapPadding={mapPadding}
- markerEnteringAnimation={normalizeEnteringAnimation(markerEnteringAnimation)}
- clusterEnteringAnimation={normalizeEnteringAnimation(clusterEnteringAnimation)}
- markers={markers}
- polylines={polylines}
- polygons={polygons}
- circles={circles}
- onRegionChange={
- onRegionChange == null ? undefined : callback(onRegionChange)
- }
- onRegionChangeComplete={
- onRegionChangeComplete == null
- ? undefined
- : callback(onRegionChangeComplete)
- }
- onMapReady={onMapReady == null ? undefined : callback(onMapReady)}
- onPress={onPress == null ? undefined : callback(onPress)}
- onPoiPress={onPoiPress == null ? undefined : callback(handlePoiPress)}
- onLongPress={onLongPress == null ? undefined : callback(onLongPress)}
- onClusterPress={
- onClusterPress == null ? undefined : callback(onClusterPress)
- }
- onMarkerPress={
- hasMarkerPress ? callback(handleMarkerPress) : undefined
- }
- onMarkerDragEnd={
- hasMarkerDragEnd ? callback(handleMarkerDragEnd) : undefined
- }
- onPolylinePress={
- hasPolylinePressHandler ? callback(handlePolylinePress) : undefined
- }
- onPolygonPress={
- hasPolygonPressHandler ? callback(handlePolygonPress) : undefined
- }
- onCirclePress={
- hasCirclePressHandler ? callback(handleCirclePress) : undefined
- }
- />
+
+ {
+ hybridRef.current = nativeRef;
+ })}
+ provider={resolvedProvider}
+ googleMapId={googleMapId}
+ mapType={mapType}
+ region={region}
+ camera={camera}
+ scrollEnabled={scrollEnabled}
+ zoomEnabled={zoomEnabled}
+ rotateEnabled={rotateEnabled}
+ pitchEnabled={pitchEnabled}
+ showsUserLocation={showsUserLocation}
+ followsUserLocation={followsUserLocation}
+ showsCompass={showsCompass}
+ showsScale={showsScale}
+ customMapStyle={customMapStyle}
+ clusteringEnabled={clusteringEnabled}
+ mapPadding={mapPadding}
+ markerEnteringAnimation={normalizeEnteringAnimation(
+ markerEnteringAnimation,
+ )}
+ clusterEnteringAnimation={normalizeEnteringAnimation(
+ clusterEnteringAnimation,
+ )}
+ markers={markers}
+ polylines={polylines}
+ polygons={polygons}
+ circles={circles}
+ onRegionChange={
+ onRegionChange == null ? undefined : callback(onRegionChange)
+ }
+ onRegionChangeComplete={
+ onRegionChangeComplete == null
+ ? undefined
+ : callback(onRegionChangeComplete)
+ }
+ onMapReady={onMapReady == null ? undefined : callback(onMapReady)}
+ onPress={onPress == null ? undefined : callback(onPress)}
+ onPoiPress={onPoiPress == null ? undefined : callback(handlePoiPress)}
+ onLongPress={onLongPress == null ? undefined : callback(onLongPress)}
+ onClusterPress={
+ onClusterPress == null ? undefined : callback(onClusterPress)
+ }
+ onMarkerPress={hasMarkerPress ? callback(handleMarkerPress) : undefined}
+ onMarkerDragEnd={
+ hasMarkerDragEnd ? callback(handleMarkerDragEnd) : undefined
+ }
+ onPolylinePress={
+ hasPolylinePressHandler ? callback(handlePolylinePress) : undefined
+ }
+ onPolygonPress={
+ hasPolygonPressHandler ? callback(handlePolygonPress) : undefined
+ }
+ onCirclePress={
+ hasCirclePressHandler ? callback(handleCirclePress) : undefined
+ }
+ >
+ {markerViews}
+
+
);
}
diff --git a/package/src/components/MarkerView.tsx b/package/src/components/MarkerView.tsx
new file mode 100644
index 0000000..56ff398
--- /dev/null
+++ b/package/src/components/MarkerView.tsx
@@ -0,0 +1,69 @@
+import { useContext } from 'react';
+import type { ReactNode } from 'react';
+import { NativeMarkerView } from '../native/MarkerViewNative';
+import type { Coordinate } from '../types/coordinate';
+import type { MarkerAnchor } from '../types/overlays';
+import { MapChildrenContext } from './MapChildrenContext';
+
+export interface MarkerViewProps {
+ coordinate: Coordinate;
+ /** Fixed layout bounds in points/dp. Animate content inside these bounds. */
+ width: number;
+ height: number;
+ /** Point in the content attached to the coordinate; defaults to bottom-center. */
+ anchor?: MarkerAnchor;
+ /** Live React Native content, including Pressable and Animated views. */
+ children: ReactNode;
+}
+
+/**
+ * A live, screen-aligned marker. Its JSX stays in Fabric; no snapshots or
+ * per-frame JS camera updates are used. Does not participate in clustering.
+ */
+export function MarkerView({
+ coordinate,
+ width,
+ height,
+ anchor,
+ children,
+}: MarkerViewProps) {
+ const isInsideMap = useContext(MapChildrenContext);
+ if (!isInsideMap) {
+ throw new Error('MarkerView must be a child of MapView');
+ }
+ if (
+ !Number.isFinite(width) ||
+ width <= 0 ||
+ !Number.isFinite(height) ||
+ height <= 0
+ ) {
+ throw new Error(
+ 'MarkerView width and height must be finite positive numbers',
+ );
+ }
+ if (
+ !Number.isFinite(coordinate.latitude) ||
+ Math.abs(coordinate.latitude) > 90 ||
+ !Number.isFinite(coordinate.longitude) ||
+ Math.abs(coordinate.longitude) > 180
+ ) {
+ throw new Error(
+ 'MarkerView coordinate must contain a valid latitude and longitude',
+ );
+ }
+ if (
+ anchor != null &&
+ (!Number.isFinite(anchor.x) || !Number.isFinite(anchor.y))
+ ) {
+ throw new Error('MarkerView anchor must contain finite values');
+ }
+ return (
+
+ {children}
+
+ );
+}
diff --git a/package/src/components/index.ts b/package/src/components/index.ts
index 0f2bc07..b035b62 100644
--- a/package/src/components/index.ts
+++ b/package/src/components/index.ts
@@ -4,3 +4,6 @@ export { Polyline } from './Polyline';
export { Polygon } from './Polygon';
export { Circle } from './Circle';
export { Geojson } from './Geojson';
+
+export { MarkerView } from './MarkerView';
+export type { MarkerViewProps } from './MarkerView';
diff --git a/package/src/index.ts b/package/src/index.ts
index be56c29..b952ec9 100644
--- a/package/src/index.ts
+++ b/package/src/index.ts
@@ -46,3 +46,6 @@ export type {
} from './types';
export { regionFromCoordinate, distanceBetween } from './utils';
+
+export { MarkerView } from './components/MarkerView';
+export type { MarkerViewProps } from './components/MarkerView';
diff --git a/package/src/native/MarkerViewNative.ts b/package/src/native/MarkerViewNative.ts
new file mode 100644
index 0000000..b016f85
--- /dev/null
+++ b/package/src/native/MarkerViewNative.ts
@@ -0,0 +1,9 @@
+import { getHostComponent } from 'react-native-nitro-modules';
+import type { HybridViewMethods } from 'react-native-nitro-modules';
+import MarkerViewConfig from '../../nitrogen/generated/shared/json/MarkerViewConfig.json';
+import type { MarkerViewProps } from './specs/MarkerView.nitro';
+
+export const NativeMarkerView = getHostComponent<
+ MarkerViewProps,
+ HybridViewMethods
+>('MarkerView', () => MarkerViewConfig);
diff --git a/package/src/native/specs/MarkerView.nitro.ts b/package/src/native/specs/MarkerView.nitro.ts
new file mode 100644
index 0000000..9e6a76c
--- /dev/null
+++ b/package/src/native/specs/MarkerView.nitro.ts
@@ -0,0 +1,11 @@
+import type { HybridView, HybridViewProps } from 'react-native-nitro-modules';
+import type { Coordinate } from '../../types/coordinate';
+import type { MarkerAnchor } from './overlays';
+
+export interface MarkerViewProps extends HybridViewProps {
+ coordinate: Coordinate;
+ anchor?: MarkerAnchor;
+}
+
+/** A live Fabric subtree positioned by the native map projection. */
+export type MarkerView = HybridView;
diff --git a/package/src/overlays/__tests__/collectMarkerViews.test.ts b/package/src/overlays/__tests__/collectMarkerViews.test.ts
new file mode 100644
index 0000000..7e2c3a1
--- /dev/null
+++ b/package/src/overlays/__tests__/collectMarkerViews.test.ts
@@ -0,0 +1,49 @@
+import { describe, expect, mock, test } from 'bun:test';
+import { createElement, Fragment } from 'react';
+
+mock.module('../../native/MarkerViewNative', () => ({
+ NativeMarkerView: 'NativeMarkerView',
+}));
+const { MarkerView } = await import('../../components/MarkerView');
+const { collectMarkerViews } = await import('../collectMarkerViews');
+const marker = (key: string) =>
+ createElement(MarkerView, {
+ key,
+ coordinate: { latitude: 52, longitude: 21 },
+ width: 96,
+ height: 48,
+ children: null,
+ });
+
+describe('live marker collection', () => {
+ test('keeps descriptor and unrelated children out of the native child hierarchy', () => {
+ const result = collectMarkerViews([
+ null,
+ false,
+ createElement('unrelated'),
+ marker('live'),
+ ]);
+ expect(result).toHaveLength(1);
+ expect(result[0].type).toBe(MarkerView);
+ });
+
+ test('preserves separate fragment key scopes and reuses marker props', () => {
+ const first = marker('same');
+ const second = marker('same');
+ const result = collectMarkerViews([
+ createElement(Fragment, { key: 'first' }, first),
+ createElement(Fragment, { key: 'second' }, second),
+ ]);
+ expect(result).toHaveLength(2);
+ expect(result[0].type).toBe(Fragment);
+ expect(result[0].key).not.toBe(result[1].key);
+ const nested = (result[0].props as { children: { props: unknown }[] })
+ .children;
+ expect(nested[0].props).toBe(first.props);
+ });
+
+ test('returns an empty collection for descriptor-only maps and empty fragments', () => {
+ expect(collectMarkerViews(createElement(Fragment, {}, null))).toEqual([]);
+ expect(collectMarkerViews(undefined)).toEqual([]);
+ });
+});
diff --git a/package/src/overlays/collectMarkerViews.ts b/package/src/overlays/collectMarkerViews.ts
new file mode 100644
index 0000000..1939e58
--- /dev/null
+++ b/package/src/overlays/collectMarkerViews.ts
@@ -0,0 +1,20 @@
+import { Children, Fragment, cloneElement, isValidElement } from 'react';
+import type { ReactElement, ReactNode } from 'react';
+import { MarkerView } from '../components/MarkerView';
+
+/** Keep live hosts out of descriptor serialization, preserving React keys. */
+export function collectMarkerViews(children: ReactNode): ReactElement[] {
+ const result: ReactElement[] = [];
+ Children.toArray(children).forEach((child) => {
+ if (!isValidElement(child)) return;
+ if (child.type === Fragment) {
+ const fragment = child as ReactElement<{ children?: ReactNode }>;
+ const nested = collectMarkerViews(fragment.props.children);
+ if (nested.length > 0)
+ result.push(cloneElement(fragment, { children: nested }));
+ } else if (child.type === MarkerView) {
+ result.push(child);
+ }
+ });
+ return result;
+}
From 7805bc91f8d6415a1d55c97cdca6892cc760dd31 Mon Sep 17 00:00:00 2001
From: Piotr Graczyk
Date: Fri, 11 Sep 2026 13:33:17 +0200
Subject: [PATCH 03/10] fix(ios): guard optional Google marker visual
implementation
---
package/ios/GoogleMarkerVisualApplier.swift | 2 ++
1 file changed, 2 insertions(+)
diff --git a/package/ios/GoogleMarkerVisualApplier.swift b/package/ios/GoogleMarkerVisualApplier.swift
index e1f4dc2..d799e0f 100644
--- a/package/ios/GoogleMarkerVisualApplier.swift
+++ b/package/ios/GoogleMarkerVisualApplier.swift
@@ -1,3 +1,4 @@
+#if canImport(GoogleMaps)
import GoogleMaps
import UIKit
@@ -147,3 +148,4 @@ final class GoogleMarkerVisualApplier {
return Self.defaultPinImage.size
}
}
+#endif
From 3085c91b5acd3d44d772656955d78fe6258eb62d Mon Sep 17 00:00:00 2001
From: Piotr Graczyk
Date: Fri, 11 Sep 2026 13:35:04 +0200
Subject: [PATCH 04/10] fix: preserve marker gestures and native host lifecycle
---
package/android/build.gradle | 5 +
.../margelo/nitro/nitromaps/HybridMapView.kt | 10 ++
.../nitro/nitromaps/NitroMapContainerView.kt | 19 +++-
.../nitro/nitromaps/MarkerViewGestureTest.kt | 97 +++++++++++++++++++
package/ios/HybridMapView.swift | 4 +
package/ios/HybridMapViewDelegate.swift | 11 +++
package/ios/NitroMapContainerView.swift | 13 ++-
package/ios/NitroMarkerContentView.swift | 7 ++
package/scripts/patch-nitrogen-generated.mjs | 85 ++++++++--------
9 files changed, 199 insertions(+), 52 deletions(-)
create mode 100644 package/android/src/test/java/com/margelo/nitro/nitromaps/MarkerViewGestureTest.kt
diff --git a/package/android/build.gradle b/package/android/build.gradle
index 646a4b0..bcee26f 100644
--- a/package/android/build.gradle
+++ b/package/android/build.gradle
@@ -58,6 +58,10 @@ android {
prefab true
}
+ testOptions {
+ unitTests.includeAndroidResources = true
+ }
+
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
@@ -80,4 +84,5 @@ dependencies {
implementation 'com.google.android.gms:play-services-maps:19.0.0'
implementation 'com.google.maps.android:android-maps-utils:3.8.2'
testImplementation 'junit:junit:4.13.2'
+ testImplementation 'org.robolectric:robolectric:4.16.1'
}
diff --git a/package/android/src/main/java/com/margelo/nitro/nitromaps/HybridMapView.kt b/package/android/src/main/java/com/margelo/nitro/nitromaps/HybridMapView.kt
index a9b673f..55b095a 100644
--- a/package/android/src/main/java/com/margelo/nitro/nitromaps/HybridMapView.kt
+++ b/package/android/src/main/java/com/margelo/nitro/nitromaps/HybridMapView.kt
@@ -78,6 +78,7 @@ class HybridMapView(private val context: ThemedReactContext) :
get() = _scrollEnabled
set(value) {
_scrollEnabled = value
+ view.scrollGesturesEnabled = value != false
adapter?.scrollEnabled = value
}
@@ -85,6 +86,7 @@ class HybridMapView(private val context: ThemedReactContext) :
get() = _zoomEnabled
set(value) {
_zoomEnabled = value
+ updateMultiTouchGestures()
adapter?.zoomEnabled = value
}
@@ -92,6 +94,7 @@ class HybridMapView(private val context: ThemedReactContext) :
get() = _rotateEnabled
set(value) {
_rotateEnabled = value
+ updateMultiTouchGestures()
adapter?.rotateEnabled = value
}
@@ -99,9 +102,14 @@ class HybridMapView(private val context: ThemedReactContext) :
get() = _pitchEnabled
set(value) {
_pitchEnabled = value
+ updateMultiTouchGestures()
adapter?.pitchEnabled = value
}
+ private fun updateMultiTouchGestures() {
+ view.multiTouchGesturesEnabled = _zoomEnabled != false || _rotateEnabled != false || _pitchEnabled != false
+ }
+
override var showsUserLocation: Boolean?
get() = _showsUserLocation
set(value) {
@@ -316,6 +324,8 @@ class HybridMapView(private val context: ThemedReactContext) :
_region = null
_camera = null
_scrollEnabled = true
+ view.scrollGesturesEnabled = true
+ view.multiTouchGesturesEnabled = true
_zoomEnabled = true
_rotateEnabled = true
_pitchEnabled = true
diff --git a/package/android/src/main/java/com/margelo/nitro/nitromaps/NitroMapContainerView.kt b/package/android/src/main/java/com/margelo/nitro/nitromaps/NitroMapContainerView.kt
index 6dd60fb..c6ad32f 100644
--- a/package/android/src/main/java/com/margelo/nitro/nitromaps/NitroMapContainerView.kt
+++ b/package/android/src/main/java/com/margelo/nitro/nitromaps/NitroMapContainerView.kt
@@ -16,6 +16,9 @@ class NitroMapContainerView(context: Context) : ViewGroup(context) {
private val touchSlop = ViewConfiguration.get(context).scaledTouchSlop
private var markerDown: MotionEvent? = null
private var forwardingGesture = false
+ private var descendantOwnsGesture = false
+ var scrollGesturesEnabled = true
+ var multiTouchGesturesEnabled = true
init { clipChildren = true }
@@ -44,14 +47,17 @@ class NitroMapContainerView(context: Context) : ViewGroup(context) {
}
if (touchesMarker) markerDown = MotionEvent.obtain(event)
}
+ // A ScrollView commonly claims ownership on its first MOVE beyond slop,
+ // not on DOWN. Let it inspect that event before deciding to hand it off.
+ val handled = if (!forwardingGesture) super.dispatchTouchEvent(event) else false
val down = markerDown
val surface = mapSurface
if (down != null && surface != null) {
val dx = event.x - down.x
val dy = event.y - down.y
- val startsGesture = event.actionMasked == MotionEvent.ACTION_POINTER_DOWN ||
- (event.actionMasked == MotionEvent.ACTION_MOVE && dx * dx + dy * dy > touchSlop * touchSlop)
- if (!forwardingGesture && startsGesture) {
+ val startsGesture = (multiTouchGesturesEnabled && event.actionMasked == MotionEvent.ACTION_POINTER_DOWN) ||
+ (scrollGesturesEnabled && event.actionMasked == MotionEvent.ACTION_MOVE && dx * dx + dy * dy > touchSlop * touchSlop)
+ if (!forwardingGesture && !descendantOwnsGesture && startsGesture) {
NativeGestureUtil.notifyNativeGestureStarted(this, event)
val cancel = MotionEvent.obtain(event)
cancel.action = MotionEvent.ACTION_CANCEL
@@ -69,7 +75,6 @@ class NitroMapContainerView(context: Context) : ViewGroup(context) {
return true
}
}
- val handled = super.dispatchTouchEvent(event)
if (event.actionMasked == MotionEvent.ACTION_UP || event.actionMasked == MotionEvent.ACTION_CANCEL) {
clearMarkerGesture()
}
@@ -80,6 +85,12 @@ class NitroMapContainerView(context: Context) : ViewGroup(context) {
markerDown?.recycle()
markerDown = null
forwardingGesture = false
+ descendantOwnsGesture = false
+ }
+
+ override fun requestDisallowInterceptTouchEvent(disallowIntercept: Boolean) {
+ descendantOwnsGesture = disallowIntercept
+ super.requestDisallowInterceptTouchEvent(disallowIntercept)
}
override fun onDetachedFromWindow() {
diff --git a/package/android/src/test/java/com/margelo/nitro/nitromaps/MarkerViewGestureTest.kt b/package/android/src/test/java/com/margelo/nitro/nitromaps/MarkerViewGestureTest.kt
new file mode 100644
index 0000000..19ab0ee
--- /dev/null
+++ b/package/android/src/test/java/com/margelo/nitro/nitromaps/MarkerViewGestureTest.kt
@@ -0,0 +1,97 @@
+package com.margelo.nitro.nitromaps
+
+import android.content.Context
+import android.graphics.Point
+import android.view.MotionEvent
+import android.view.View
+import android.widget.ScrollView
+import org.junit.Assert.*
+import org.junit.Test
+import org.junit.runner.RunWith
+import org.robolectric.RobolectricTestRunner
+import org.robolectric.RuntimeEnvironment
+import org.robolectric.annotation.Config
+
+@RunWith(RobolectricTestRunner::class)
+@Config(sdk = [35])
+class MarkerViewGestureTest {
+ private val context: Context = RuntimeEnvironment.getApplication()
+
+ private class Surface(context: Context) : View(context) {
+ val actions = mutableListOf()
+ override fun onTouchEvent(event: MotionEvent): Boolean {
+ actions.add(event.actionMasked)
+ return true
+ }
+ }
+
+ private fun fixture(child: View): Pair {
+ val map = NitroMapContainerView(context)
+ val surface = Surface(context)
+ map.addView(surface)
+ map.mapSurface = surface
+ map.projectCoordinate = { Point(150, 150) }
+ map.layout(0, 0, 400, 400)
+ val marker = NitroMarkerContentView(context)
+ marker.coordinate = Coordinate(0.0, 0.0)
+ marker.anchor = MarkerAnchor(0.0, 0.0)
+ marker.addView(child)
+ child.measure(View.MeasureSpec.makeMeasureSpec(100, View.MeasureSpec.EXACTLY),
+ View.MeasureSpec.makeMeasureSpec(100, View.MeasureSpec.EXACTLY))
+ child.layout(0, 0, 100, 100)
+ marker.layout(0, 0, 100, 100)
+ map.addMarkerView(marker, 0)
+ return Pair(map, surface)
+ }
+
+ private fun send(map: NitroMapContainerView, action: Int, y: Float, time: Long) {
+ val event = MotionEvent.obtain(0, time, action, 175f, y, 0)
+ map.dispatchTouchEvent(event)
+ event.recycle()
+ }
+
+ @Test fun scrollViewClaimsThresholdCrossingMoveBeforeMapHandoff() {
+ val scroll = ScrollView(context)
+ scroll.addView(View(context).apply { minimumHeight = 1000 }, android.widget.FrameLayout.LayoutParams(100, 1000))
+ val (map, surface) = fixture(scroll)
+ send(map, MotionEvent.ACTION_DOWN, 235f, 0)
+ send(map, MotionEvent.ACTION_MOVE, 185f, 20)
+ send(map, MotionEvent.ACTION_MOVE, 165f, 40)
+ send(map, MotionEvent.ACTION_UP, 165f, 60)
+ assertTrue("SDK must not see the owned gesture", surface.actions.isEmpty())
+ assertTrue("The child scrolls instead of receiving CANCEL (viewport=${scroll.height}, content=${scroll.getChildAt(0).height}, scrollY=${scroll.scrollY})", scroll.scrollY > 0)
+ }
+
+ @Test fun unclaimedDragReplaysDownToMapAndCancelsChild() {
+ val childActions = mutableListOf()
+ val child = object : View(context) {
+ override fun onTouchEvent(event: MotionEvent): Boolean {
+ childActions.add(event.actionMasked)
+ return true
+ }
+ }
+ val (map, surface) = fixture(child)
+ send(map, MotionEvent.ACTION_DOWN, 235f, 0)
+ send(map, MotionEvent.ACTION_MOVE, 185f, 20)
+ send(map, MotionEvent.ACTION_UP, 185f, 40)
+ assertEquals(listOf(MotionEvent.ACTION_DOWN, MotionEvent.ACTION_MOVE, MotionEvent.ACTION_CANCEL), childActions)
+ assertEquals(listOf(MotionEvent.ACTION_DOWN, MotionEvent.ACTION_MOVE, MotionEvent.ACTION_UP), surface.actions)
+ }
+
+ @Test fun disabledMapScrollPreservesChildSequence() {
+ val childActions = mutableListOf()
+ val child = object : View(context) {
+ override fun onTouchEvent(event: MotionEvent): Boolean {
+ childActions.add(event.actionMasked)
+ return true
+ }
+ }
+ val (map, surface) = fixture(child)
+ map.scrollGesturesEnabled = false
+ send(map, MotionEvent.ACTION_DOWN, 235f, 0)
+ send(map, MotionEvent.ACTION_MOVE, 185f, 20)
+ send(map, MotionEvent.ACTION_UP, 185f, 40)
+ assertEquals(listOf(MotionEvent.ACTION_DOWN, MotionEvent.ACTION_MOVE, MotionEvent.ACTION_UP), childActions)
+ assertTrue(surface.actions.isEmpty())
+ }
+}
diff --git a/package/ios/HybridMapView.swift b/package/ios/HybridMapView.swift
index 98a2782..a923f03 100644
--- a/package/ios/HybridMapView.swift
+++ b/package/ios/HybridMapView.swift
@@ -293,6 +293,8 @@ final class HybridMapView: HybridMapViewSpec {
}
recycleLifecycle()
+ containerView.projectCoordinate = nil
+ containerView.mapSurface = nil
adapter?.prepareForRecycle()
adapter?.contentView.removeFromSuperview()
adapter = nil
@@ -362,6 +364,8 @@ final class HybridMapView: HybridMapViewSpec {
private func installAdapter(for provider: MapProvider) {
precondition(Thread.isMainThread)
+ containerView.projectCoordinate = nil
+ containerView.mapSurface = nil
adapter?.prepareForRecycle()
adapter?.contentView.removeFromSuperview()
diff --git a/package/ios/HybridMapViewDelegate.swift b/package/ios/HybridMapViewDelegate.swift
index d5768e5..30547c7 100644
--- a/package/ios/HybridMapViewDelegate.swift
+++ b/package/ios/HybridMapViewDelegate.swift
@@ -63,6 +63,17 @@ final class HybridMapViewDelegate: NSObject, MKMapViewDelegate, UIGestureRecogni
parent.notifyLongPress(at: point)
}
+ func gestureRecognizer(
+ _ gestureRecognizer: UIGestureRecognizer,
+ shouldReceive touch: UITouch
+ ) -> Bool {
+ guard let mapView = parent?.view,
+ let container = mapView.superview as? NitroMapContainerView else { return true }
+ // Reject before recognition: returning early from handleTap still cancels
+ // the child's touch sequence when UIKit recognizes this tap.
+ return !container.containsMarker(at: touch.location(in: mapView))
+ }
+
func gestureRecognizer(
_ gestureRecognizer: UIGestureRecognizer,
shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer
diff --git a/package/ios/NitroMapContainerView.swift b/package/ios/NitroMapContainerView.swift
index 4b0730d..354995a 100644
--- a/package/ios/NitroMapContainerView.swift
+++ b/package/ios/NitroMapContainerView.swift
@@ -12,7 +12,18 @@ final class NitroMapContainerView: UIView {
required init?(coder: NSCoder) { fatalError("init(coder:) is unsupported") }
- weak var mapSurface: UIView?
+ weak var mapSurface: UIView? {
+ didSet {
+ guard oldValue !== mapSurface else { return }
+ // Provider replacement keeps the same Fabric children and React state.
+ // Also handles children mounted before the provider surface is ready.
+ let surface = mapSurface ?? self
+ for marker in markerContents {
+ if let host = marker.fabricHost { surface.addSubview(host) }
+ }
+ updateMarkerPositions()
+ }
+ }
@objc(nitroMountChild:atIndex:)
func mountFabricChild(_ child: UIView, at index: Int) {
diff --git a/package/ios/NitroMarkerContentView.swift b/package/ios/NitroMarkerContentView.swift
index 995dc3b..b173474 100644
--- a/package/ios/NitroMarkerContentView.swift
+++ b/package/ios/NitroMarkerContentView.swift
@@ -7,6 +7,13 @@ final class NitroMarkerContentView: UIView {
weak var mapContainer: NitroMapContainerView?
weak var fabricHost: UIView?
+ override init(frame: CGRect) {
+ super.init(frame: frame)
+ clipsToBounds = true
+ }
+
+ required init?(coder: NSCoder) { fatalError("init(coder:) is unsupported") }
+
@objc(nitroMountChild:atIndex:)
func mountFabricChild(_ child: UIView, at index: Int) {
insertSubview(child, at: index)
diff --git a/package/scripts/patch-nitrogen-generated.mjs b/package/scripts/patch-nitrogen-generated.mjs
index 58764c3..05f75b5 100644
--- a/package/scripts/patch-nitrogen-generated.mjs
+++ b/package/scripts/patch-nitrogen-generated.mjs
@@ -11,11 +11,11 @@ function replaceOnce(filePath, from, to) {
const fromCount = source.split(from).length - 1;
const toCount = source.split(to).length - 1;
- if (fromCount === 0 && toCount === 1) {
+ if (toCount === 1 && fromCount === to.split(from).length - 1) {
return;
}
- if (fromCount !== 1) {
+ if (fromCount !== 1 || toCount !== 0) {
throw new Error(
`Expected exactly one patch target in ${filePath}, found ${fromCount}`,
);
@@ -24,30 +24,32 @@ function replaceOnce(filePath, from, to) {
writeFileSync(filePath, source.replace(from, to));
}
-replaceOnce(
- join(
- packageDir,
- 'nitrogen/generated/shared/c++/views/HybridMapViewComponent.cpp',
- ),
- ` const std::shared_ptr& constProps = concreteShadowNode.getConcreteSharedProps();
- const std::shared_ptr& props = std::const_pointer_cast(constProps);
+for (const name of ['MapView', 'MarkerView']) {
+ replaceOnce(
+ join(
+ packageDir,
+ `nitrogen/generated/shared/c++/views/Hybrid${name}Component.cpp`,
+ ),
+ ` const std::shared_ptr& constProps = concreteShadowNode.getConcreteSharedProps();
+ const std::shared_ptr& props = std::const_pointer_cast(constProps);
`,
- ` auto constProps = std::static_pointer_cast(concreteShadowNode.getProps());
- auto props = std::const_pointer_cast(constProps);
+ ` auto constProps = std::static_pointer_cast(concreteShadowNode.getProps());
+ auto props = std::const_pointer_cast(constProps);
`,
-);
+ );
-replaceOnce(
- join(
- packageDir,
- 'nitrogen/generated/shared/c++/views/HybridMapViewComponent.hpp',
- ),
- ` HybridMapViewState(const HybridMapViewState& /* previousState */, folly::dynamic /* data */) {}
+ replaceOnce(
+ join(
+ packageDir,
+ `nitrogen/generated/shared/c++/views/Hybrid${name}Component.hpp`,
+ ),
+ ` Hybrid${name}State(const Hybrid${name}State& /* previousState */, folly::dynamic /* data */) {}
`,
- ` HybridMapViewState(const HybridMapViewState& previousState, folly::dynamic /* data */):
+ ` Hybrid${name}State(const Hybrid${name}State& previousState, folly::dynamic /* data */):
_props(previousState.getProps()) {}
`,
-);
+ );
+}
for (const fileName of [
'Func_void_std__vector_std__string__Coordinate.swift',
@@ -97,15 +99,25 @@ replaceOnce(
// Explicit Fabric mount targets: no SDK-driven reparenting of RN children.
for (const name of ['MapView', 'MarkerView']) {
- const file = join(packageDir, `nitrogen/generated/ios/c++/views/Hybrid${name}Component.mm`);
- replaceOnce(file, `@interface Hybrid${name}Component: RCTViewComponentView`, `// Implemented by both Swift content containers via explicit @objc selectors.
+ const file = join(
+ packageDir,
+ `nitrogen/generated/ios/c++/views/Hybrid${name}Component.mm`,
+ );
+ replaceOnce(
+ file,
+ `@interface Hybrid${name}Component: RCTViewComponentView`,
+ `// Implemented by both Swift content containers via explicit @objc selectors.
@interface UIView (NitroMapFabricChildren)
- (void)nitroMountChild:(UIView *)child atIndex:(NSInteger)index;
- (void)nitroUnmountChild:(UIView *)child;
@end
-@interface Hybrid${name}Component: RCTViewComponentView`);
- replaceOnce(file, '- (void) updateView {', `
+@interface Hybrid${name}Component: RCTViewComponentView`,
+ );
+ replaceOnce(
+ file,
+ '- (void) updateView {',
+ `
- (void)mountChildComponentView:(UIView *)child index:(NSInteger)index {
NSAssert(child.superview == nil, @"Marker child is already mounted");
[self.contentView nitroMountChild:child atIndex:index];
@@ -115,7 +127,8 @@ for (const name of ['MapView', 'MarkerView']) {
[self.contentView nitroUnmountChild:child];
}
-- (void) updateView {`);
+- (void) updateView {`,
+ );
}
// Android must expose a ViewGroupManager for Fabric to mount descendants.
@@ -164,25 +177,3 @@ for (const name of ['MapView', 'MarkerView']) {
);
}
}
-
-// Both views need the existing RN 0.86 state compatibility fixes.
-replaceOnce(
- join(
- packageDir,
- 'nitrogen/generated/shared/c++/views/HybridMarkerViewComponent.cpp',
- ),
- ` const std::shared_ptr& constProps = concreteShadowNode.getConcreteSharedProps();
- const std::shared_ptr& props = std::const_pointer_cast(constProps);
-`,
- ` auto constProps = std::static_pointer_cast(concreteShadowNode.getProps());
- auto props = std::const_pointer_cast(constProps);
-`,
-);
-replaceOnce(
- join(
- packageDir,
- 'nitrogen/generated/shared/c++/views/HybridMarkerViewComponent.hpp',
- ),
- ` HybridMarkerViewState(const HybridMarkerViewState& /* previousState */, folly::dynamic /* data */) {}\n`,
- ` HybridMarkerViewState(const HybridMarkerViewState& previousState, folly::dynamic /* data */):\n _props(previousState.getProps()) {}\n`,
-);
From 51d7908c44ba0d6d8e1774e53ba697566689a3e5 Mon Sep 17 00:00:00 2001
From: Piotr Graczyk
Date: Fri, 11 Sep 2026 13:49:14 +0200
Subject: [PATCH 05/10] test: add physical marker benchmarks and document
performance limits
---
README.md | 6 +-
docs/adr/0004-custom-view-markers.md | 151 +----
docs/custom-marker-views.md | 2 +-
docs/research/custom-marker-device-results.md | 43 ++
docs/research/custom-marker-performance.md | 90 +++
docs/research/custom-marker-sdk-sources.md | 63 ++
docs/roadmap.md | 6 +-
example/app.json | 5 +-
example/index.js | 8 +-
.../MarkerViewBenchmark.tsx | 366 +++++++++++
.../modules/frame-stats/android/build.gradle | 15 +
.../android/src/main/AndroidManifest.xml | 1 +
.../expo/modules/framestats/FrameRecorder.kt | 61 ++
.../modules/framestats/FrameStatsModule.kt | 66 ++
.../frame-stats/expo-module.config.json | 9 +
example/modules/frame-stats/index.ts | 1 +
.../frame-stats/ios/FrameRecorder.swift | 88 +++
.../frame-stats/ios/FrameStats.podspec | 25 +
.../frame-stats/ios/FrameStatsModule.swift | 81 +++
example/modules/frame-stats/package.json | 10 +
example/modules/frame-stats/src/FrameStats.ts | 61 ++
experiments/custom-markers/.gitignore | 2 +
experiments/custom-markers/HostChecks.swift | 79 +++
experiments/custom-markers/README.md | 94 +++
.../custom-markers/SnapshotBench.swift | 177 +++++
.../results/ios-simulator-run-1.json | 502 ++++++++++++++
.../results/ios-simulator-run-2.json | 503 ++++++++++++++
.../results/iphone-15-pro-run-1.json | 615 ++++++++++++++++++
.../results/native-host-checks.json | 1 +
.../custom-markers/run-ios-simulator.sh | 54 ++
.../custom-markers/summarize-rn-benchmark.py | 67 ++
package/src/index.ts | 2 +-
32 files changed, 3123 insertions(+), 131 deletions(-)
create mode 100644 docs/research/custom-marker-device-results.md
create mode 100644 docs/research/custom-marker-performance.md
create mode 100644 docs/research/custom-marker-sdk-sources.md
create mode 100644 example/marker-view-benchmark/MarkerViewBenchmark.tsx
create mode 100644 example/modules/frame-stats/android/build.gradle
create mode 100644 example/modules/frame-stats/android/src/main/AndroidManifest.xml
create mode 100644 example/modules/frame-stats/android/src/main/java/expo/modules/framestats/FrameRecorder.kt
create mode 100644 example/modules/frame-stats/android/src/main/java/expo/modules/framestats/FrameStatsModule.kt
create mode 100644 example/modules/frame-stats/expo-module.config.json
create mode 100644 example/modules/frame-stats/index.ts
create mode 100644 example/modules/frame-stats/ios/FrameRecorder.swift
create mode 100644 example/modules/frame-stats/ios/FrameStats.podspec
create mode 100644 example/modules/frame-stats/ios/FrameStatsModule.swift
create mode 100644 example/modules/frame-stats/package.json
create mode 100644 example/modules/frame-stats/src/FrameStats.ts
create mode 100644 experiments/custom-markers/.gitignore
create mode 100644 experiments/custom-markers/HostChecks.swift
create mode 100644 experiments/custom-markers/README.md
create mode 100644 experiments/custom-markers/SnapshotBench.swift
create mode 100644 experiments/custom-markers/results/ios-simulator-run-1.json
create mode 100644 experiments/custom-markers/results/ios-simulator-run-2.json
create mode 100644 experiments/custom-markers/results/iphone-15-pro-run-1.json
create mode 100644 experiments/custom-markers/results/native-host-checks.json
create mode 100644 experiments/custom-markers/run-ios-simulator.sh
create mode 100644 experiments/custom-markers/summarize-rn-benchmark.py
diff --git a/README.md b/README.md
index 2026089..386853f 100644
--- a/README.md
+++ b/README.md
@@ -128,7 +128,7 @@ in `react-native-better-maps` and `react-native-maps` with
Not supported today:
-- Custom React Native marker child views such as ``; use bitmap marker images instead.
+- JSX children inside descriptor `` elements; use the separate [`MarkerView`](docs/custom-marker-views.md) component for live React Native content and animations.
- `openstreetmap` and `mapbox` providers; the public provider type reserves these names for future native implementations.
## Supported platforms
@@ -356,7 +356,7 @@ Platform notes:
- Recommended icon size: up to **128×128 dp**; larger bitmaps are downscaled when `width`/`height` are provided.
- Retina assets: pass `require()` and let Metro resolve `@2x`/`@3x`; optional explicit `width`/`height`/`scale` on `MarkerImage`.
- Remote URLs use a basic in-memory cache only (no disk persistence).
-- Custom React Native marker views (``) are not supported.
+- For live JSX and internal animations, use [`MarkerView`](docs/custom-marker-views.md) with explicit width/height. Descriptor `Marker` children are not rendered.
### react-native-maps migration (markers)
@@ -544,6 +544,7 @@ On Google Maps providers, marker and cluster entering animations can reduce UI-t
| ---------- | --------------------------------- |
| `MapView` | Root map container |
| `Marker` | Point annotation |
+| `MarkerView` | Live JSX at a geographic coordinate |
| `Polyline` | Line overlay |
| `Polygon` | Filled area overlay |
| `Circle` | Circular area overlay |
@@ -610,6 +611,7 @@ See [example/.env.example](example/.env.example) for the supported environment v
- [Expo setup](docs/expo-setup.md)
- [Architecture](docs/architecture.md)
- [GeoJSON overlays](docs/geojson.md)
+- [Live custom marker views](docs/custom-marker-views.md)
- [Roadmap](docs/roadmap.md)
- [Contributing](CONTRIBUTING.md)
- [ADRs](docs/adr)
diff --git a/docs/adr/0004-custom-view-markers.md b/docs/adr/0004-custom-view-markers.md
index 37deb8b..e7b9ff6 100644
--- a/docs/adr/0004-custom-view-markers.md
+++ b/docs/adr/0004-custom-view-markers.md
@@ -2,146 +2,53 @@
## Status
-Proposed
+Proposed — live-host implementation available; performance acceptance remains open.
## Context
-Today markers are **serialized descriptors**, not React Native child views. ``
-returns `null`; its props are collected in `MapView.tsx` into `MarkerDescriptor[]` and
-passed as a single prop on the `MapView` HybridView. Native code renders SDK objects
-(`MKAnnotation` / `MKAnnotationView` on Apple, bitmap-backed `GMSMarker` on Google).
-Appearance customization is limited to a **bitmap image** (`MarkerDescriptor.image`); any
-`children` passed to `` are ignored.
-
-`react-native-maps` supports `{arbitraryJSX}`, where children are real RN
-views. This is a fundamentally different rendering model from the current bulk-descriptor
-pipeline and is a common migration blocker.
-
-### Platform constraint (the crux)
-
-| Platform / SDK | Can a marker be a "live" view? |
-| --- | --- |
-| **Apple MapKit** | Yes — `MKAnnotationView` can host any `UIView` (live, interactive RN views) |
-| **Google Maps (iOS + Android)** | No — the marker icon is a **bitmap only**; a view must be snapshotted to a bitmap and re-snapshotted on change |
-
-`react-native-maps` handles this by hosting a live view on MapKit and snapshotting children
-to a bitmap on Google Maps. Any solution here must accept the same asymmetry.
-
-## Decision
-
-Add custom-view markers as a **separate, opt-in capability** alongside — not replacing —
-the existing descriptor pipeline. These are two distinct contracts:
-
-- `` — the high-throughput bulk path (hundreds/thousands of markers,
- bitmaps, clustering, viewport culling). Unchanged.
-- `{JSX}` — a new opt-in, heavier path for a
- bounded number of custom-view markers.
-
-Rendering follows **Option C (hybrid)**: live views where the SDK allows (MapKit),
-bitmap snapshot where it does not (Google Maps on both iOS and Android). The public API is
-identical across platforms; only the native implementation differs per backend.
-
-Keeping these as separate types (rather than adding `children` + nullable fields to the
-existing `Marker` descriptor) follows the API-design rule of splitting distinct workflows
-into distinct types instead of overloading one object.
-
-### Considered alternatives
-
-- **Option A — snapshot only (JS/view-shot → existing `image` pipeline).** Fastest,
- cross-platform, reuses clustering. But static: no live interactivity/animation, every
- content change requires a re-snapshot. Adopted as the **Phase 1 MVP**, not the end state.
-- **Option B — live native subviews everywhere.** Not possible on Google Maps (bitmap-only
- icons); would require manually positioned overlay views with z-order/gesture problems.
-- **Option C — hybrid (chosen).** Live on MapKit, snapshot on Google. Closest to
- `react-native-maps` behavior with the least fighting against each SDK.
-
-## Proposed API
-
-### Nitro spec (new HybridView)
-
-```typescript
-// package/src/native/specs/MarkerView.nitro.ts
-import type { HybridView, HybridViewMethods, HybridViewProps } from 'react-native-nitro-modules'
-import type { Coordinate } from '../../types/coordinate'
-import type { MarkerAnchor, MarkerPoint } from './overlays'
-
-export interface MarkerViewProps extends HybridViewProps {
- coordinate: Coordinate
- anchor?: MarkerAnchor
- centerOffset?: MarkerPoint
- draggable?: boolean
- /**
- * Rendering strategy on backends that support live views (MapKit).
- * Google Maps always snapshots (SDK limitation).
- * @default 'auto'
- */
- renderMode?: 'auto' | 'snapshot'
- zIndex?: number
-}
-
-export interface MarkerViewMethods extends HybridViewMethods {
- /** Force a re-snapshot on bitmap backends after child content changes. */
- redraw(): Promise
-}
-
-export type MarkerView = HybridView
-```
+`Marker` elements are serialized descriptors. Their native SDK objects support images, clustering, dragging, and callouts, but their JSX children are not mounted. The requested custom-marker contract includes arbitrary live React Native JSX and internal animations while preserving map smoothness.
+
+The earlier proposal used live MapKit annotation views and snapshots on Google. That does not preserve interactive animated JSX across providers. Google iOS `iconView` uses snapshots, and Android's advanced-marker view API has separate renderer and performance constraints. A native projected overlay is a distinct alternative to those SDK icon APIs. See the [SDK source investigation](../research/custom-marker-sdk-sources.md).
+
+The optimized UIKit experiment exceeded the entire 8.33 ms interval when taking 50 simple layer snapshots in a batch. This is simulator CPU evidence against capturing every animated marker on every frame, not a measured Google SDK cost or a device FPS claim.
-Add a `MarkerView` autolinking entry to `nitro.json` (separate `HybridMarkerView`
-implementation class on iOS and Android).
+## Proposed decision
-### React usage
+Add `MarkerView` as a separate live Fabric component. Keep `Marker` descriptors for SDK annotation features and large static datasets.
```tsx
-
-
- Custom!
-
+
+
+
+ Custom content
+
```
-`` is a real Nitro HybridView (`getHostComponent`) that renders its children
-natively — unlike the null-rendering ``.
-
-## Implementation plan (phased)
-
-### Phase 0 — quick win (independent)
+The native spec carries `coordinate` and optional `anchor`; standard Fabric layout receives explicit width and height. Child state and animations remain in React Native. Camera movement projects coordinates and moves the outer native host on the UI thread. It does not serialize child content, capture bitmaps, or send screen positions through JavaScript.
-Done: iOS Google applies `MarkerDescriptor` image, anchor, centerOffset, rotation, flat,
-and opacity so `` is consistent across MapKit, iOS Google, and Android Google.
+- iOS components explicitly forward Fabric mount/unmount into Swift containers. Hosts mount within the SDK surface so SDK map gestures remain ancestors; provider replacement preserves the existing Fabric hosts.
+- Android components use ViewGroup managers with separate Fabric child indexing. Native gesture dispatch gives descendants a chance to claim a gesture before forwarding unclaimed map gestures to the SDK surface.
+- The Nitrogen compatibility script validates generated patch targets and supports repeated execution without duplicate methods.
+- Fixed bounds define anchors, clipping, and touch regions. JSX order defines host order. Offscreen hosts are hidden; application-owned timers/worklet work are not automatically suspended.
-### Phase 1 — MVP custom views (Option A)
+See the [public contract](../custom-marker-views.md) for exact API and limitations.
-- Add `children` support that renders off-screen and snapshots to a bitmap (prefer a native
- snapshot; `react-native-view-shot` optional), feeding the existing
- `MarkerDescriptor.image` pipeline. Delivers working cross-platform custom markers quickly.
+## Alternatives
-### Phase 2 — full `MarkerView` (Option C)
+- **Snapshot all JSX:** reuses the descriptor/image path, but changes live animation and interaction semantics and introduces repeated capture/upload cost.
+- **SDK annotation hosts / Google icon views:** retain more SDK marker features, but have different ownership, snapshot, and interaction behavior across providers.
+- **Native projected live hosts:** preserve live Fabric content and avoid snapshot work, at the cost of explicit projection, mounting, gestures, and clipping. This is the implemented prototype.
+- **Per-frame JavaScript screen projection:** adds camera events and many JS/native updates to the frame path; excluded from this design.
-- New `MarkerView` Nitro HybridView hosting the RN child subtree natively.
-- `MapView` native code detects mounted child `MarkerView`s in its native view hierarchy.
-- **iOS Apple / MapKit:** embed the live hosted `UIView` in an `MKAnnotationView`; reuse
- existing anchor/center-offset logic.
-- **iOS Google + Android Google:** snapshot the hosted view to a bitmap
- (`UIGraphicsImageRenderer` / `Canvas`+`Bitmap`) → `GMSMarker.icon` / `BitmapDescriptor`;
- re-snapshot on `redraw()` or layout change. Reuse `MarkerIconFactory` (Android).
-- Implement `prepareForRecycle` (state reset) and `memorySize` (bitmaps) on the hosts.
-- Follow native code rules: `final` classes, one top-level type per file, converters in
- their own extension files.
+## Consequences and acceptance
-## Open items to verify before Phase 2
+Live hosts do not participate in SDK clustering, collision, depth occlusion, dragging, callouts, or ground-plane rotation. Their explicit dimensions and finite number are part of the workload. The package cannot remove the intrinsic rendering cost of arbitrary user JSX.
-- Confirm, against **current** Nitrogen docs/source, the supported model for HybridView
- `children` and for mounting child views into the parent map's native hierarchy (do not
- rely on remembered API details).
+The target is no material regression against the same provider/device baseline for an explicitly measured workload. Google iOS documents a 60 FPS maximum for its map renderer; a 120 Hz display callback does not override that limit. Provider acceptance must be separate.
-## Consequences
+The first physical iPhone experiment retained near-120 Hz callback cadence for static hosts and the 10/50-marker animation cases, but 200 animated-layout markers regressed, as did transformed markers in the hottest pass. These callback results are not presented-frame evidence. The unrestricted 120 FPS condition is therefore not accepted. Follow-up controls compare identical JSX outside geographic hosts, and presentation/thermal traces remain required.
-- The existing bulk descriptor + clustering path is untouched; custom views are additive.
-- Behavior is asymmetric by necessity: live/interactive on MapKit, static bitmap on Google
- Maps. `renderMode` and `redraw()` make the snapshot semantics explicit.
-- Custom-view markers are intended for a bounded count; large marker sets should keep using
- the descriptor/image path.
-- Enables a smoother migration path from `react-native-maps` for view-backed markers.
+[Experiments and reproduction](../../experiments/custom-markers/README.md) · [Physical device results](../research/custom-marker-device-results.md)
diff --git a/docs/custom-marker-views.md b/docs/custom-marker-views.md
index 24d00d6..da0f9c2 100644
--- a/docs/custom-marker-views.md
+++ b/docs/custom-marker-views.md
@@ -43,7 +43,7 @@ Removing snapshots eliminates one expensive class of work; it does not remove na
The target is no material regression against the same provider and device baseline for a recorded workload. Google Maps iOS documents a 60 FPS maximum for its native map; a 120 Hz JSX overlay or display callback is not evidence of 120 distinct map frames. See [SDK evidence](research/custom-marker-sdk-sources.md).
-The implementation is currently under native validation. Run the opt-in example with `EXPO_PUBLIC_MARKER_VIEW_BENCHMARK=1` in a Release build. Its A/B flow compares pins, static JSX, child transform animation, and child layout animation at 10/50/200 mounted hosts, using three passes and alternating mode order. Native callback intervals and memory are diagnostic data; Instruments/Perfetto and functional checks are also required before accepting the feature.
+The first [physical iPhone experiment](research/custom-marker-device-results.md) found near-120 Hz main-thread callback cadence for static hosts and 10/50 animated hosts, but regressions for 200 animated-layout hosts and a hot 200-transform case. This is not presented-frame proof, and unrestricted 120 FPS acceptance remains open. Run the opt-in example with `EXPO_PUBLIC_MARKER_VIEW_BENCHMARK=1` in a Release build. Its A/B flow compares pins, static JSX, child transform animation, and child layout animation at 10/50/200 mounted hosts, using three passes and alternating mode order. Native callback intervals and memory are diagnostic data; Instruments/Perfetto and functional checks are also required before accepting the feature.
The example reuses the local FrameStats module introduced in PR #66. It is example-only and does not ship in the library. Trace the application without a debugger attached; identify the actual map presentation/animation cadence rather than treating display callback intervals as GPU frames. Record device/OS/SDK, visible count, thermal and power state, route, marker dimensions, and baseline/candidate traces.
diff --git a/docs/research/custom-marker-device-results.md b/docs/research/custom-marker-device-results.md
new file mode 100644
index 0000000..0046775
--- /dev/null
+++ b/docs/research/custom-marker-device-results.md
@@ -0,0 +1,43 @@
+# Physical iPhone experiment, 2026-09-11
+
+## Build and workload
+
+- iPhone 15 Pro, iOS 26.6 (23G5043d), Release, RN 0.86 / Reanimated 4.5.0 / Nitro 0.35.10, MapKit. Library native source matches commit `3085c91`.
+- `CADisableMinimumFrameDurationOnPhone` enabled; maximum reported refresh 120 Hz. Low-power mode was off and the app active at every recorded endpoint.
+- 36 cases: 10/50/200 submitted markers, four modes, three passes, alternating mode order. Each recorded case includes four camera animations and about six seconds of display callbacks.
+- All live-host cases reported the requested number mounted and visible at both endpoints. Descriptor pins retain SDK collision/culling behavior, so submitted counts are not a guarantee of equal rendered pin counts.
+- Thermal state began at fair (1) and became serious (2), remaining serious in pass 3. Results are retained across that transition.
+- An Animation Hitches + Points of Interest recording covered early cases. It failed during finalization with a DTKTraceTapMessageHandler assertion, so it provides no usable presentation evidence. One accessibility verification overlapped the first pins case. These cases must not be described as uninstrumented.
+- Harness version 1 emitted both `transform` and `width` from its animated style (the inactive property stayed constant). The subsequent control experiment emits only the property being animated. Raw version-1 results remain separate.
+
+## Main-thread callback results
+
+These are CADisplayLink callback diagnostics, **not presented map/GPU FPS**. Ranges span all three passes; p95 is the worst per-case p95.
+
+| Content | Count | Callback Hz range | Worst p95 ms |
+| --- | ---: | ---: | ---: |
+| pins | 10 | 116.5–119.8 | 8.34 |
+| live-static | 10 | 119.6–120.0 | 8.34 |
+| live-transform | 10 | 119.6–120.0 | 8.34 |
+| live-layout | 10 | 119.0–120.0 | 8.34 |
+| pins | 50 | 119.6–120.0 | 8.34 |
+| live-static | 50 | 119.6–119.6 | 8.34 |
+| live-transform | 50 | 119.8–120.0 | 8.34 |
+| live-layout | 50 | 119.5–120.0 | 8.34 |
+| pins | 200 | 119.6–119.8 | 8.34 |
+| live-static | 200 | 119.6–120.0 | 8.34 |
+| live-transform | 200 | 86.2–120.0 | 24.59 |
+| live-layout | 200 | 36.1–68.0 | 50.01 |
+
+The unrestricted acceptance target is **not met**: 200 animated-width markers exceed the 8.33 ms main-thread interval in all passes, and 200 transformed markers regress in the hot third pass. Static live hosts and the 10/50-marker cases stayed close to the descriptor baseline. This does not establish a universal safe count for arbitrary JSX.
+
+The follow-up experiment compares the same animated JSX in ordinary screen overlays against geographic hosts to isolate intrinsic React Native animation work from marker projection/hosting. It also retries presentation capture with shorter Game Performance Overview traces.
+
+[Raw samples and per-case diagnostics](../../experiments/custom-markers/results/iphone-15-pro-run-1.json) · [Reproduction and limitations](../../experiments/custom-markers/README.md)
+
+## Functional and native checks
+
+- Physical iPhone: live JSX appeared, a marker Pressable updated its own state while the map press count stayed unchanged, and removing the map removed its live hosts. Camera motion and rotations run in the automated scenario; exact presentation synchronization still needs trace/visual acceptance.
+- Actual UIKit host sources: anchor/projection, hit testing, culling/reentry, unmount/map isolation, surface replacement, and rendered clipping checks passed.
+- Android: Kotlin compilation, C++/JNI arm64 compilation, and 16 native unit tests passed, including ScrollView gesture ownership and cancellation/replay. No Android hardware performance result is claimed.
+- Package: 32 Jest tests and 51 Bun tests passed; lint, typecheck, library build, and example TypeScript checks passed.
diff --git a/docs/research/custom-marker-performance.md b/docs/research/custom-marker-performance.md
new file mode 100644
index 0000000..59acadc
--- /dev/null
+++ b/docs/research/custom-marker-performance.md
@@ -0,0 +1,90 @@
+# Custom JSX markers without regressing map performance
+
+Investigation: 2026-09-11, package source baseline `1c38c93`. Requested scope: arbitrary JSX, including animations inside markers. This is a research recommendation, not an accepted ADR or shipped implementation.
+
+## Recommendation
+
+Use two rendering contracts. Preserve cached image descriptors for static appearances; add an explicit live JSX host for animated content, starting with MapKit. Do not make per-frame bitmap snapshots the general implementation of animated JSX.
+
+There is no demonstrated universal 120 FPS solution for arbitrary trees, arbitrary marker counts, and all current providers. The feasible objective is no material regression against the **same provider's measured baseline within a defined workload**. A finite, measured set of visible animated hosts can be supported; a blanket promise cannot be justified by Nitro or these experiments.
+
+On iOS Google Maps, the installed 10.14.0 header and current official reference both describe the maximum map frame rate as 60 FPS on high-end devices. Establish a provider-specific baseline before treating a React Native 120 FPS counter as native map FPS. [GMSFrameRate](https://developers.google.com/maps/documentation/ios-sdk/reference/objc/Enums/GMSFrameRate)
+
+## Evidence in this repository
+
+| Existing seam | Finding and consequence |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| [`Marker.tsx`](../../package/src/components/Marker.tsx), [`MapView.tsx`](../../package/src/components/MapView.tsx) | Markers are collected as descriptors, and the native map is rendered without child content. Adding JSX cannot be implemented solely by extending marker prop types. |
+| [`MapOverlayController.swift`](../../package/ios/MapOverlayController.swift), [`MarkerClusterEngine.swift`](../../package/ios/MarkerClusterEngine.swift) | The native viewport/diff pipeline retains annotations and updates visual properties when they change. Keep geographic identity independent of appearance resources. |
+| [`MapMarkerAnnotation.swift`](../../package/ios/MapMarkerAnnotation.swift) | A coordinate change is distinct from an image/visual change. Moving a marker should not invalidate a static raster. |
+| [`GoogleMarkerVisualApplier.swift`](../../package/ios/GoogleMarkerVisualApplier.swift), [`MarkerIconFactory.kt`](../../package/android/src/main/java/com/margelo/nitro/nitromaps/MarkerIconFactory.kt) | Existing image-key/generation handling avoids some repeated application and stale async updates. Preserve these guards for snapshot resources. |
+| [`MarkerImageLoader.swift`](../../package/ios/MarkerImageLoader.swift) | Native image cache is keyed by URI/size/scale. There is no configured byte limit or shared pending-load registry in this loader. A new snapshot for every frame with a new URI would grow work/cache pressure; reusing a URI with changed bytes can instead leave stale cached content. |
+| [`MarkerIconFactory.kt`](../../package/android/src/main/java/com/margelo/nitro/nitromaps/MarkerIconFactory.kt) | Icon cache holds 64 entries, not a byte budget. Many unique appearances can churn when markers are removed/re-added. Already retained markers skip identical icon application, so this is not a claim that all visible icons reload every frame. |
+| [`GoogleMapOverlayController.swift`](../../package/ios/GoogleMapOverlayController.swift) | Entering animations already have a per-diff budget. Custom content needs its own measured budget; the existing cap is not evidence that arbitrary child animation is cheap. |
+| [`HybridMapView.swift`](../../package/ios/HybridMapView.swift) | Host currently returns a plain container UIView and installs a provider adapter. Fabric child ownership, placement, recycling, and events need an explicit experiment. |
+
+The local package dependency links point into a missing root `node_modules`; generated view descriptors exist, but they do not establish arbitrary child reparenting support. No React Native host build/test was run. Local `example/ios/Podfile.lock` records GoogleMaps 10.14.0 and NitroModules 0.35.10. The installed GoogleMaps header independently confirms `iconView`, default `tracksViewChanges = YES`, and the documented 60 FPS maximum. These are local installation evidence, not a universal dependency pin for consumers.
+
+## Experiments completed
+
+Built and ran an isolated optimized UIKit app twice in the iOS 26.5 simulator. Each case used 20 timed samples after three warmups, with the second run reversing case order. A 96 × 48 point, 3× marker contained a rounded background, circular avatar placeholder, and a changing price label.
+
+| Work per batch | 50 markers, median range | 200 markers, median range |
+| ----------------------------------------------- | -----------------------: | ------------------------: |
+| Assign existing UIImage to detached UIImageView | 0.265–0.640 ms | 0.853–2.134 ms |
+| Native layer snapshot, image stays in memory | 9.641–9.960 ms | 35.788–37.301 ms |
+| Layer snapshot + PNG encoding + forced decode | 47.432–51.956 ms | 187.313–201.881 ms |
+
+These are **CPU batch timings, not map FPS**. The cached case excludes SDK application/upload; the snapshot cases exclude RN layout/reconciliation, map rendering, and GPU composition. The simulator reports a 60 Hz maximum. The results support avoiding repeated capture and image conversion; they cannot certify live-host performance or predict device FPS. Full method, hierarchy-capture results, raw samples, and commands: [experiment](../../experiments/custom-markers/README.md).
+
+## Proposed architecture
+
+### Static or infrequently changing JSX
+
+Render JSX through a native host, snapshot when the content is ready, and retain the resulting native image as an immutable appearance resource. Use an explicit revision/refresh contract; do not infer visual equality by serializing arbitrary React elements. Asset completion, size, density, theme, locale, and font-scale changes must invalidate the correct appearance.
+
+Use a native resource handle/ID, not PNG/base64 or a temporary file for each revision. The current `MarkerImage` URI descriptor is useful for a quick static proof of concept, but an in-memory resource registry is the target for frequently refreshed views. Image bytes should not traverse JS. Share resources only when the caller provides a valid shared appearance identity; two marker IDs do not imply two different images.
+
+The registry needs a measured byte budget, reference ownership for visible markers, coalesced requests for the same pending appearance, generation checks, and release on removal/recycle. A marker's coordinate/rotation/opacity must not be part of its appearance key unless that value actually changes internal pixels. Submit appearance changes directly to affected native markers rather than rebuilding the whole descriptor array for every animation tick.
+
+Capture only dirty appearances. Coalesce intermediate revisions and schedule cold work with a global budget. UIKit/Android View capture still requires main-thread work; an async method does not move arbitrary UI rendering to a background queue. Cold mount, bursts after avatar downloads, and invalidation of every marker on theme change need separate tests.
+
+### Animated JSX: first candidate is a live MapKit host
+
+Keep the actual RN subtree inside a reusable native host associated with an `MKAnnotationView`. Let native view/layer composition handle animations that can stay on the UI/compositor path. The map owns geographic placement; camera movement must not go through per-frame React state updates.
+
+First prove Fabric mount/unmount, child placement, Yoga sizing, touch routing, accessibility, and safe reuse. Do not manually steal an RN view from its Fabric parent and assume event/layout ownership survives. MapKit annotation reuse and RN subtree reuse are different lifecycles: preserve identity and reset state deliberately.
+
+Reanimated can remove React/JS work for some animations, but it does not make layout, drawing, GPU composition, or snapshotting free. Animating internal text/layout is a different workload from rotating a composited child layer. Test both. A static snapshot mode must not silently freeze an animation requested as live.
+
+Only visible, unclustered hosts should incur rendering work where semantics permit. A selected/active subset is an optional product tradeoff, **not** a fulfillment of a requirement that every visible marker animate. If every visible marker must animate, benchmark that exact count and tree and publish the supported envelope.
+
+### Google backends require separate decisions
+
+For classic Google iOS markers, compare `GMSMarker.iconView` tracking only during active animation against controlled native snapshots. `iconView` is already SDK-managed snapshot rendering and does not provide interactive nested UIKit controls. Do not use this experiment's `drawHierarchy` number as its implementation cost. Idle content should disable tracking. [Google iOS markers](https://developers.google.com/maps/documentation/ios-sdk/marker)
+
+On Android, evaluate `AdvancedMarkerOptions.iconView` only after confirming the renderer, map ID, capabilities, RN child mounting, and actual child-animation behavior. The SDK explicitly warns about performance compared with bitmaps. Existing classic-marker fallback remains necessary. [Advanced markers](https://developers.google.com/maps/documentation/android-sdk/advanced-markers/add-marker)
+
+If live interactive JSX is mandatory where the SDK only snapshots it, the alternative experiment is a native overlay host synchronized with native camera projection. It must handle tilt/bearing, clipping, anchors, z-order, collision policy, hit-testing, and accessibility. Driving hundreds of screen positions through JS every frame is not a suitable design. A 120 Hz overlay over a documented 60 FPS map is also not proof that the map itself runs at 120 FPS.
+
+Separate internal content animation from native whole-marker position/rotation/opacity animation, which can reuse a static image where supported. Repeating decorative animations may sometimes use shared pre-rendered frames (Google iOS accepts animated UIImage), but that is a memory tradeoff and cannot replace arbitrary live stateful JSX. No cross-provider scale/transform support should be assumed. [GMSMarkerLayer](https://developers.google.com/maps/documentation/ios-sdk/reference/objc/Classes/GMSMarkerLayer)
+
+## Next implementation experiment and acceptance
+
+1. Establish Release-build native baselines for MapKit, Google iOS, and Google Android separately on real devices. Record device/OS/SDK and refresh behavior, tile warmup, thermal state, and power mode.
+2. Implement a minimal MapKit JSX host with one animated child. Prove Fabric lifecycle/recycle correctness, then compare live host and cached image at 1, 10, 50, and 200 visible markers. These are test points, not proposed supported limits.
+3. Exercise two content classes: a compositor-friendly child transform and a counter/layout change. Test idle map and identical pan/zoom/rotate routes. Measure JS, UI, render/GPU, actual map presentation, and marker-animation cadence separately.
+4. Exercise 20 versus all-unique appearances, 48 versus 96 point content, cold entry, selection, rapid add/remove, image arrival, clustering, theme/font changes, and offscreen/reentry. Benchmark after 5–10 minutes as well as immediately after launch.
+5. Independently compare Google `iconView`/Advanced Marker candidates. Do not carry a successful MapKit result over to Google or label a 60 FPS renderer as a 120 FPS result.
+
+Use Instruments Animation Hitches/Core Animation and Android system traces/FrameTimeline with the map surface identified. A CADisplayLink, RN FPS overlay, or host-window frame counter alone is insufficient evidence. [Apple responsiveness](https://developer.apple.com/documentation/xcode/improving-app-responsiveness), [Android jank detection](https://developer.android.com/studio/profile/jank-detection)
+
+Before calling the feature performance-preserving, define a numeric tolerance against repeated baseline traces and require it for missed deadlines/hitch time, p95/p99 frame timing, memory, and sustained behavior. Also require the requested content animation to progress at its target cadence: freezing/throttling it while reporting smooth map movement is not success. A snapshot queue should expose pending revisions, capture time, age, and active animations so overload cannot be hidden.
+
+## Status
+
+- **Verified:** current architecture, documented SDK boundaries, installed Google iOS header, optimized UIKit experiment executed twice, saved raw results.
+- **Not run:** real-device 120 Hz traces, a JSX/Fabric live-host prototype, native map A/B measurements, Android runtime measurements.
+- **Decision proposed:** preserve image descriptors; start animated JSX with a MapKit live-host experiment; budget and qualify Google separately. ADR 0004 remains proposed and should be revised after those results, especially its blanket bitmap-only statement and the claim that static snapshots satisfy animated JSX.
+
+Primary-source detail: [SDK research](custom-marker-sdk-sources.md).
diff --git a/docs/research/custom-marker-sdk-sources.md b/docs/research/custom-marker-sdk-sources.md
new file mode 100644
index 0000000..1b23630
--- /dev/null
+++ b/docs/research/custom-marker-sdk-sources.md
@@ -0,0 +1,63 @@
+# Custom JSX markers: SDK evidence and performance boundaries
+
+Research date: 2026-09-11. This note distinguishes documented SDK behavior from design hypotheses. It does not demonstrate 120 FPS in this package. The requested capability includes arbitrary JSX and animations inside each marker.
+
+## Findings from primary sources
+
+### Apple MapKit
+
+`MKAnnotationView` is a `UIView`, so native view content is possible. Apple calls setting its `image` the most efficient way to provide annotation content. MapKit requests views for visible annotations and maintains a reuse queue. This supports a cached-image default and reusable live native hosts, but does not prove that moving a Fabric-owned React Native subtree into an annotation is supported or cheap. That lifecycle must be implemented and tested separately. [MKAnnotationView](https://developer.apple.com/documentation/mapkit/mkannotationview)
+
+Apple explicitly recommends dequeuing annotation views to save allocation time and memory while scrolling. View reuse must reset marker-specific state, asynchronously loaded assets, and animation state. [dequeueReusableAnnotationView]()
+
+### Google Maps iOS
+
+`GMSMarker` accepts either an image through `icon` or a `UIView` hierarchy through `iconView`. The latter is rendered as a snapshot, does not receive direct user interaction, and supports animated view properties except `frame` and `center`. Google warns that many views tracking changes simultaneously can impair map rendering and consume more power. `tracksViewChanges = false` stops automatic view refresh; it should be enabled only for the interval during which asynchronous content or animation needs refreshing. A static `UIImage` avoids repeated view rendering. Thus “Google accepts bitmap icons only” is inaccurate as an API claim, although the distinction between a snapshot and an interactive in-map view remains essential. [Markers](https://developers.google.com/maps/documentation/ios-sdk/marker)
+
+`GMSAdvancedMarker` also supports `iconView`, pin background/border colors, and glyph text/color through `GMSPinImageOptions`. Its documentation states that `iconView` and `icon` markers cannot be mixed on the same map; this needs explicit validation before migrating the existing mixed marker pipeline. It requires explicit host size/frame rather than external layout constraints on the icon view. [Advanced marker customization](https://developers.google.com/maps/documentation/ios-sdk/advanced-markers/customization)
+
+Marker-level position, rotation, and opacity can be animated through `GMSMarkerLayer`. This is different from animating JSX contents: changing the whole marker does not require defining a fresh visual appearance. The layer does not support arbitrary inherited `CALayer` properties, so do not assume a portable scale/transform API. The page's OpenGL wording may lag the active renderer; rely on the property contract, not that implementation claim. [GMSMarkerLayer](https://developers.google.com/maps/documentation/ios-sdk/reference/objc/Classes/GMSMarkerLayer)
+
+**120 FPS baseline caveat:** the currently served `GMSFrameRate.maximum` reference still describes 30 FPS on low-end devices and 60 FPS on high-end devices. This is a documented limit description, not an on-device measurement of the package's installed SDK. A React Native frame counter or a 120 Hz display cannot establish 120 distinct native Google Maps frames. Baseline evidence must identify provider, SDK version, device, and presented map frames. [GMSFrameRate](https://developers.google.com/maps/documentation/ios-sdk/reference/objc/Enums/GMSFrameRate)
+
+### Google Maps Android
+
+`AdvancedMarkerOptions.iconView()` accepts an Android `View`; Google explicitly warns its performance may fall below bitmap or default markers. `PinConfig` provides background, border, and glyph customization without requiring arbitrary React Native content. Marker motion/rotation should update `Marker`, not the host `View`. This disproves a blanket “no native view API” claim, but does not promise arbitrary child animations, nested touch handling, or equivalent performance. Those require a SDK-version-specific experiment. [Create an advanced marker](https://developers.google.com/maps/documentation/android-sdk/advanced-markers/add-marker)
+
+Advanced markers require an upgraded renderer, a map ID, runtime `isAdvancedMarkersAvailable()` checks, and a fallback when unsupported. Adopting them is therefore a capability change rather than a drop-in implementation detail. [Advanced marker setup](https://developers.google.com/maps/documentation/android-sdk/advanced-markers/start)
+
+### Nitro child hosting
+
+The current guide establishes that Hybrid Views use Fabric and C++ ShadowNodes with Nitro prop parsing, that normal React prop updates occur on the UI thread, and that `RecyclableView.prepareForRecycle()` resets reused hosts. It does **not** document a `children` mounting/reparenting contract in the View Components guide. The `getHostComponent` example alone is insufficient evidence that JSX descendants will mount inside an arbitrary SDK annotation container. [View Components](https://nitro.margelo.com/docs/guides/view-components), [Hybrid Views](https://nitro.margelo.com/docs/concepts/hybrid-views)
+
+Exact v0.35.10 generated host behavior is not established by this web research. Verify installed Nitrogen source/generated iOS and Android components before implementing a host. In particular, check whether children target the SDK view or its Fabric wrapper, how removal/recycling works, and which layer owns Yoga layout.
+
+## Architecture hypotheses to test
+
+These are engineering inferences and proposed constraints, not SDK guarantees:
+
+1. Preserve the descriptor/image path for static markers. Cache appearances by content revision, dimensions, scale, and theme; share identical resources. Freeze static JSX after an initial render and explicit content invalidation.
+2. Separate marker movement from appearance changes. Native coordinate/rotation/opacity animation can reuse the existing image. Animating an internal counter, gradient, layout, spinner, or Lottie object generally changes pixels and requires live rendering or refreshed snapshots; cached static icons do not satisfy that requirement.
+3. Add a true JSX host as a separate measured path. On MapKit, try a reusable native host containing the RN subtree. On Google iOS, compare SDK `iconView` refresh with controlled explicit snapshots. On Android, compare Advanced Marker view support against a cached bitmap and measure actual animation behavior before selecting it.
+4. An arbitrary JSX tree has unbounded layout, draw, memory, and JS work. No package architecture can guarantee 120 FPS for all JSX, all marker counts, and all animations. Define a workload envelope and measure both map gestures and content animation simultaneously. A bounded active/selected set is a feasible scaling strategy only if that meets the product requirement.
+5. A native projected overlay could host interactive JSX where SDK markers cannot. Treat it as a separate experiment: camera synchronization, tilt/bearing, depth/collision, clipping, gestures, and accessibility are additional correctness work. Do not drive projection/positions through React state for every camera frame.
+6. Snapshot refresh must have a shared budget and dirty queue, not an independent perpetual loop per marker. Off-screen/inactive views should stop updating where semantics allow. Avoid PNG/base64/file round-trips; keep native images in memory. Snapshotting UIKit/View hierarchies still has main-thread work; making an API asynchronous does not make that work free.
+
+## Native profiling and acceptance
+
+At 120 Hz, a display interval is about 8.33 ms; marker work receives only the portion left after the map and application do their own work. Apple recommends real-device Animation Hitches traces and investigating commit, render, and GPU phases. Its responsiveness guidance suggests keeping frame preparation near 5 ms for high refresh rate rendering. [Improving app responsiveness](https://developer.apple.com/documentation/xcode/improving-app-responsiveness)
+
+On Android, use system traces and actual surface frame lifetimes, including main thread, RenderThread, GPU completion, and composition. The Android jank guide explains where expected deadlines and presented frames appear. A display refresh overlay or an average JS FPS figure is not sufficient. [UI jank detection](https://developer.android.com/studio/profile/jank-detection)
+
+Android's rendering metrics can omit UI not drawn through the standard View/Canvas system, such as OpenGL content. Confirm the map renderer's surfaces are represented in the chosen measurement before accepting `gfxinfo`, JankStats, or a host-window frame metric as proof. [Slow rendering](https://developer.android.com/topic/performance/vitals/render)
+
+Compare baseline and candidates with a repeatable gesture route and the same devices, SDKs, camera, tiles, marker locations, count, pixel size, unique visual count, and animation workload. Record presented frame cadence, missed deadlines/hitch time, frame percentiles, peak main-thread bursts, snapshot duration/count, memory, and sustained thermal behavior. Separate cold mount, warm pan/zoom, content updates, and continuous animation. A simulator snapshot microbenchmark can reject expensive strategies or estimate scaling; it cannot certify device FPS, React Native mount cost, or map texture-upload/composition cost.
+
+## Corrections recommended for ADR 0004
+
+- Replace the blanket Google bitmap-only table with the provider-specific contracts above.
+- Keep snapshot-backed versus live-interactive semantics explicit; accepting a `View` does not imply live nested controls or free animation.
+- Make cached images the high-throughput path on MapKit too; live hosting is a capability, not a performance guarantee.
+- Mark automatic HybridView child mounting as unverified until the installed generator and lifecycle experiment establish it.
+- Do not describe Phase 1 snapshots as satisfying arbitrary JSX animation requirements. It satisfies static/infrequently changing JSX only.
+- Add measured provider-specific frame targets. In particular, current Google iOS documentation does not support an unconditional 120 FPS promise.
diff --git a/docs/roadmap.md b/docs/roadmap.md
index 81cae13..cb8da3d 100644
--- a/docs/roadmap.md
+++ b/docs/roadmap.md
@@ -86,14 +86,14 @@ Delivered incrementally during Phases 3–5; polished for platform consistency i
| Clustering library | Custom vs platform-native | Platform-native (MKClusterAnnotation / maps-utils) |
| Provider architecture | In-place SDK switching vs adapter remount | Provider adapter + React remount |
| Overlay animations | Reanimated core path vs native descriptors | Native descriptor animations; Reanimated optional |
-| Custom view markers | Snapshot-only vs live/hybrid native views | Hybrid: live MapKit, snapshot Google (ADR 0004) |
+| Custom view markers | Snapshot-only vs live/hybrid native views | Native projected live Fabric hosts; validation pending (ADR 0004) |
| Offline support | Tile caching strategy | Future consideration |
## Custom view markers (ADR 0004)
- [x] Phase 0: apply `MarkerDescriptor` image, anchor, centerOffset, rotation, flat, and opacity on iOS Google
-- [ ] Phase 1: `` children via snapshot into existing image pipeline
-- [ ] Phase 2: `` HybridView — live MapKit views, snapshot on Google
+- [x] Implement separate `MarkerView` with live Fabric content and native camera projection
+- [ ] Accept provider-specific performance and gesture behavior on physical devices; see [results](research/custom-marker-device-results.md)
## Future provider work
diff --git a/example/app.json b/example/app.json
index 36d27c1..a8bf074 100644
--- a/example/app.json
+++ b/example/app.json
@@ -7,7 +7,10 @@
"userInterfaceStyle": "light",
"ios": {
"supportsTablet": true,
- "bundleIdentifier": "com.nitromaps.example"
+ "bundleIdentifier": "com.nitromaps.example",
+ "infoPlist": {
+ "CADisableMinimumFrameDurationOnPhone": true
+ }
},
"android": {
"package": "com.nitromaps.example"
diff --git a/example/index.js b/example/index.js
index 1420b2f..f5cd683 100644
--- a/example/index.js
+++ b/example/index.js
@@ -2,11 +2,17 @@ import 'react-native-reanimated';
import { registerRootComponent } from 'expo';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import App from './App';
+import MarkerViewBenchmark from './marker-view-benchmark/MarkerViewBenchmark';
+
+const RootApp =
+ process.env.EXPO_PUBLIC_MARKER_VIEW_BENCHMARK === '1'
+ ? MarkerViewBenchmark
+ : App;
registerRootComponent(function Root() {
return (
-
+
);
});
diff --git a/example/marker-view-benchmark/MarkerViewBenchmark.tsx b/example/marker-view-benchmark/MarkerViewBenchmark.tsx
new file mode 100644
index 0000000..0af3a73
--- /dev/null
+++ b/example/marker-view-benchmark/MarkerViewBenchmark.tsx
@@ -0,0 +1,366 @@
+import { useEffect, useMemo, useRef, useState } from 'react';
+import {
+ Platform,
+ Pressable,
+ StyleSheet,
+ Text,
+ View,
+ useWindowDimensions,
+} from 'react-native';
+import Animated, {
+ cancelAnimation,
+ useAnimatedStyle,
+ useSharedValue,
+ withRepeat,
+ withTiming,
+} from 'react-native-reanimated';
+import type { SharedValue } from 'react-native-reanimated';
+import { MapView, MarkerView } from 'react-native-better-maps';
+import type { MapViewRef } from 'react-native-better-maps';
+import {
+ logBenchmarkLine,
+ memoryFootprintBytes,
+ setBenchmarkKeepAwake,
+ startFrameRecording,
+ stopFrameRecording,
+} from '../modules/frame-stats';
+
+const CENTER = { latitude: 52.2297, longitude: 21.0122 };
+const CAMERA = { center: CENTER, zoom: 14, pitch: 0, heading: 0 };
+type Mode =
+ | 'pins'
+ | 'live-static'
+ | 'live-transform'
+ | 'live-layout'
+ | 'overlay-transform'
+ | 'overlay-layout';
+const MODES: Mode[] = [
+ 'pins',
+ 'live-static',
+ 'live-transform',
+ 'live-layout',
+ 'overlay-transform',
+ 'overlay-layout',
+];
+const PRIMARY_MODES: Mode[] = [
+ 'pins',
+ 'live-static',
+ 'live-transform',
+ 'live-layout',
+];
+const CONTROL_MODES: Mode[] = [
+ 'overlay-transform',
+ 'live-transform',
+ 'overlay-layout',
+ 'live-layout',
+];
+const sleep = (ms: number) =>
+ new Promise((resolve) => setTimeout(resolve, ms));
+
+function Badge({
+ progress,
+ mode,
+ index,
+}: {
+ progress: SharedValue;
+ mode: Mode;
+ index: number;
+}) {
+ const [presses, setPresses] = useState(0);
+ const animation = useAnimatedStyle(() => {
+ if (mode.endsWith('transform')) {
+ return { transform: [{ rotate: `${progress.value * 360}deg` }] };
+ }
+ if (mode.endsWith('layout')) return { width: 12 + progress.value * 16 };
+ return {};
+ });
+ return (
+ setPresses((value) => value + 1)}
+ style={styles.badge}
+ >
+
+
+ {presses > 0 ? `Tap ${presses}` : `$${100 + index}`}
+
+
+ );
+}
+
+export default function MarkerViewBenchmark() {
+ const map = useRef(null);
+ const { width: screenWidth, height: screenHeight } = useWindowDimensions();
+ const [mode, setMode] = useState('live-transform');
+ const [count, setCount] = useState(10);
+ const [mapGeneration, setMapGeneration] = useState(0);
+ const [running, setRunning] = useState(false);
+ const [status, setStatus] = useState('Ready');
+ const [mapPresses, setMapPresses] = useState(0);
+ const [mounted, setMounted] = useState(true);
+ const progress = useSharedValue(0);
+ const active = useRef(true);
+ const provider = Platform.OS === 'ios' ? 'apple' : 'google';
+
+ useEffect(() => {
+ active.current = true;
+ void setBenchmarkKeepAwake(true);
+ return () => {
+ active.current = false;
+ void setBenchmarkKeepAwake(false);
+ };
+ }, []);
+ useEffect(() => {
+ if (mode.endsWith('transform') || mode.endsWith('layout')) {
+ progress.value = withRepeat(withTiming(1, { duration: 1200 }), -1, true);
+ } else {
+ cancelAnimation(progress);
+ progress.value = 0;
+ }
+ return () => cancelAnimation(progress);
+ }, [mode, progress]);
+
+ const markers = useMemo(
+ () =>
+ Array.from({ length: count }, (_, i) => ({
+ id: `benchmark-${i}`,
+ coordinate: {
+ latitude: CENTER.latitude + ((i % 10) - 4.5) * 0.0005,
+ longitude:
+ CENTER.longitude +
+ (Math.floor(i / 10) - Math.floor(count / 20)) * 0.00065,
+ },
+ enteringAnimation: false as const,
+ })),
+ [count],
+ );
+ const children = useMemo(
+ () =>
+ !mode.startsWith('live-')
+ ? null
+ : markers.map((marker, index) => (
+
+
+
+ )),
+ [markers, mode, progress],
+ );
+
+ async function run(kind: 'primary' | 'control' | 'selected' = 'primary') {
+ if (running) return;
+ setRunning(true);
+ setMounted(true);
+ try {
+ // Alternating candidate order on repeated passes limits warmup/order bias.
+ const cases =
+ kind === 'control'
+ ? CONTROL_MODES
+ : kind === 'selected'
+ ? [mode]
+ : PRIMARY_MODES;
+ const sizes =
+ kind === 'control'
+ ? [200]
+ : kind === 'selected'
+ ? [count]
+ : [10, 50, 200];
+ for (let pass = 0; pass < 3 && active.current; pass++) {
+ for (const size of sizes) {
+ for (const candidate of pass % 2 ? [...cases].reverse() : cases) {
+ if (!active.current) return;
+ const name = `${pass + 1}/3 ${size} ${candidate}`;
+ setStatus(`Warmup ${name}`);
+ setCount(size);
+ setMode(candidate);
+ setMapGeneration((value) => value + 1);
+ await sleep(2500);
+ if (!active.current || !map.current) return;
+ await map.current.setCamera(CAMERA);
+ await sleep(1000);
+ const beforeBytes = await memoryFootprintBytes();
+ setStatus(`Recording ${name}`);
+ await sleep(100);
+ await startFrameRecording(`${candidate}-${size}-pass${pass + 1}`);
+ for (let leg = 0; leg < 4; leg++) {
+ await map.current?.animateCamera(
+ {
+ ...CAMERA,
+ center: {
+ latitude: CENTER.latitude + (leg % 2 ? -0.001 : 0.001),
+ longitude: CENTER.longitude,
+ },
+ heading: leg * 12,
+ },
+ 1200,
+ );
+ await sleep(1500);
+ }
+ const recording = await stopFrameRecording();
+ const afterBytes = await memoryFootprintBytes();
+ const row = {
+ kind: 'marker-view-benchmark',
+ suite: kind,
+ provider,
+ mode: candidate,
+ count: size,
+ pass,
+ beforeBytes,
+ afterBytes,
+ ...recording,
+ };
+ await logBenchmarkLine(
+ `[marker-view-benchmark] ${JSON.stringify(row)}`,
+ );
+ }
+ }
+ }
+ setStatus('Complete — raw samples in device log');
+ await logBenchmarkLine('[marker-view-benchmark] COMPLETE');
+ } catch (error) {
+ setStatus(`Failed: ${String(error)}`);
+ await logBenchmarkLine(`[marker-view-benchmark] ERROR ${String(error)}`);
+ } finally {
+ await stopFrameRecording();
+ if (active.current) setRunning(false);
+ }
+ }
+
+ return (
+
+ {mounted && (
+ setMapPresses((value) => value + 1)}
+ >
+ {children}
+
+ )}
+ {mounted && mode.startsWith('overlay-') && (
+
+ {markers.map((marker, index) => (
+
+
+
+ ))}
+
+ )}
+
+ {status}
+
+ {mode}, {count} hosts, map presses {mapPresses}
+
+
+ {
+ void run();
+ }}
+ style={styles.button}
+ >
+ Run A/B
+
+
+ setCount((value) => (value === 10 ? 50 : value === 50 ? 200 : 10))
+ }
+ style={styles.button}
+ >
+ Count
+
+
+ setMode(MODES[(MODES.indexOf(mode) + 1) % MODES.length])
+ }
+ style={styles.button}
+ >
+ Mode
+
+ setMounted((value) => !value)}
+ style={styles.button}
+ >
+ Mount
+
+
+
+ {
+ void run('control');
+ }}
+ style={styles.button}
+ >
+ JSX control A/B
+
+ {
+ void run('selected');
+ }}
+ style={styles.button}
+ >
+ Run selected
+
+
+
+
+ );
+}
+
+const styles = StyleSheet.create({
+ root: { flex: 1 },
+ map: { flex: 1 },
+ panel: {
+ position: 'absolute',
+ left: 12,
+ right: 12,
+ bottom: 36,
+ padding: 12,
+ borderRadius: 12,
+ backgroundColor: 'white',
+ },
+ buttons: { flexDirection: 'row', gap: 8, marginTop: 10 },
+ button: { padding: 10, backgroundColor: '#e0e7ff', borderRadius: 8 },
+ badge: {
+ width: 96,
+ height: 48,
+ borderRadius: 16,
+ backgroundColor: 'white',
+ flexDirection: 'row',
+ alignItems: 'center',
+ padding: 6,
+ gap: 4,
+ borderWidth: 1,
+ borderColor: '#4f46e5',
+ },
+ glyph: { width: 28, height: 28, borderRadius: 6, backgroundColor: '#4f46e5' },
+ price: { fontSize: 14, fontWeight: '600', color: '#111827' },
+});
diff --git a/example/modules/frame-stats/android/build.gradle b/example/modules/frame-stats/android/build.gradle
new file mode 100644
index 0000000..2bff6e3
--- /dev/null
+++ b/example/modules/frame-stats/android/build.gradle
@@ -0,0 +1,15 @@
+plugins {
+ id 'com.android.library'
+ id 'expo-module-gradle-plugin'
+}
+
+group = 'expo.modules.framestats'
+version = '0.1.0'
+
+android {
+ namespace "expo.modules.framestats"
+ defaultConfig {
+ versionCode 1
+ versionName "0.1.0"
+ }
+}
diff --git a/example/modules/frame-stats/android/src/main/AndroidManifest.xml b/example/modules/frame-stats/android/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..94cbbcf
--- /dev/null
+++ b/example/modules/frame-stats/android/src/main/AndroidManifest.xml
@@ -0,0 +1 @@
+
diff --git a/example/modules/frame-stats/android/src/main/java/expo/modules/framestats/FrameRecorder.kt b/example/modules/frame-stats/android/src/main/java/expo/modules/framestats/FrameRecorder.kt
new file mode 100644
index 0000000..d3a356b
--- /dev/null
+++ b/example/modules/frame-stats/android/src/main/java/expo/modules/framestats/FrameRecorder.kt
@@ -0,0 +1,61 @@
+package expo.modules.framestats
+
+import android.view.Choreographer
+import android.view.Display
+
+/**
+ * Records main-thread frame intervals with a [Choreographer] callback.
+ *
+ * The callback runs once per vsync while the main thread is free, so the gap
+ * between two callbacks is the frame interval the user experienced: a blocked
+ * main thread shows up as one long interval. The display's refresh interval
+ * is captured per frame because adaptive displays change rate on their own.
+ */
+internal class FrameRecorder(
+ private val displayProvider: () -> Display?,
+) : Choreographer.FrameCallback {
+ private val intervalsMs = ArrayList(4096)
+ private val expectedMs = ArrayList(4096)
+ private var lastFrameNanos = 0L
+ private var startedAtNanos = 0L
+ private var running = false
+
+ fun start() {
+ running = true
+ startedAtNanos = System.nanoTime()
+ lastFrameNanos = 0L
+ Choreographer.getInstance().postFrameCallback(this)
+ }
+
+ override fun doFrame(frameTimeNanos: Long) {
+ if (!running) {
+ return
+ }
+ if (lastFrameNanos != 0L) {
+ intervalsMs.add((frameTimeNanos - lastFrameNanos) / 1_000_000.0)
+ expectedMs.add(1000.0 / (displayProvider()?.refreshRate ?: 60f))
+ }
+ lastFrameNanos = frameTimeNanos
+ Choreographer.getInstance().postFrameCallback(this)
+ }
+
+ fun stop(): Map {
+ running = false
+ Choreographer.getInstance().removeFrameCallback(this)
+ return mapOf(
+ "intervalsMs" to intervalsMs.toDoubleArray(),
+ "expectedMs" to expectedMs.toDoubleArray(),
+ "durationMs" to (System.nanoTime() - startedAtNanos) / 1_000_000.0,
+ "refreshRateHz" to (displayProvider()?.refreshRate ?: 60f).toDouble(),
+ )
+ }
+
+ companion object {
+ fun emptyRecording(display: Display?): Map = mapOf(
+ "intervalsMs" to DoubleArray(0),
+ "expectedMs" to DoubleArray(0),
+ "durationMs" to 0.0,
+ "refreshRateHz" to (display?.refreshRate ?: 60f).toDouble(),
+ )
+ }
+}
diff --git a/example/modules/frame-stats/android/src/main/java/expo/modules/framestats/FrameStatsModule.kt b/example/modules/frame-stats/android/src/main/java/expo/modules/framestats/FrameStatsModule.kt
new file mode 100644
index 0000000..b2b359f
--- /dev/null
+++ b/example/modules/frame-stats/android/src/main/java/expo/modules/framestats/FrameStatsModule.kt
@@ -0,0 +1,66 @@
+package expo.modules.framestats
+
+import android.os.Build
+import android.os.Debug
+import android.util.Log
+import android.view.Display
+import android.view.WindowManager
+import expo.modules.kotlin.functions.Queues
+import expo.modules.kotlin.modules.Module
+import expo.modules.kotlin.modules.ModuleDefinition
+import java.io.File
+
+/**
+ * Exposes [FrameRecorder] to JS. Recording starts and stops on the main thread
+ * because that is the thread whose frame intervals are measured.
+ */
+class FrameStatsModule : Module() {
+ private var recorder: FrameRecorder? = null
+
+ override fun definition() = ModuleDefinition {
+ Name("FrameStats")
+
+ AsyncFunction("setKeepAwake") { enabled: Boolean ->
+ val window = appContext.currentActivity?.window
+ if (enabled) window?.addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON)
+ else window?.clearFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON)
+ }.runOnQueue(Queues.MAIN)
+
+ AsyncFunction("start") { _: String ->
+ recorder?.stop()
+ recorder = FrameRecorder(::currentDisplay).also { it.start() }
+ }.runOnQueue(Queues.MAIN)
+
+ AsyncFunction("stop") {
+ val active = recorder
+ recorder = null
+ active?.stop() ?: FrameRecorder.emptyRecording(currentDisplay())
+ }.runOnQueue(Queues.MAIN)
+
+ AsyncFunction("memoryFootprint") {
+ // Proportional set size in bytes: the closest Android equivalent of
+ // iOS `phys_footprint`.
+ Debug.getPss().toDouble() * 1024.0
+ }
+
+ AsyncFunction("displayRefreshRate") {
+ (currentDisplay()?.refreshRate ?: 60f).toDouble()
+ }.runOnQueue(Queues.MAIN)
+
+ AsyncFunction("logLine") { line: String ->
+ val context = requireNotNull(appContext.reactContext)
+ File(context.filesDir, "marker-view-benchmark.jsonl").appendText(line + "\n")
+ Log.i("NitroMapsBenchmark", line)
+ }
+ }
+
+ private fun currentDisplay(): Display? {
+ val activity = appContext.currentActivity ?: return null
+ return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
+ activity.display
+ } else {
+ @Suppress("DEPRECATION")
+ activity.windowManager.defaultDisplay
+ }
+ }
+}
diff --git a/example/modules/frame-stats/expo-module.config.json b/example/modules/frame-stats/expo-module.config.json
new file mode 100644
index 0000000..af0ea1a
--- /dev/null
+++ b/example/modules/frame-stats/expo-module.config.json
@@ -0,0 +1,9 @@
+{
+ "platforms": ["apple", "android"],
+ "apple": {
+ "modules": ["FrameStatsModule"]
+ },
+ "android": {
+ "modules": ["expo.modules.framestats.FrameStatsModule"]
+ }
+}
diff --git a/example/modules/frame-stats/index.ts b/example/modules/frame-stats/index.ts
new file mode 100644
index 0000000..0f049eb
--- /dev/null
+++ b/example/modules/frame-stats/index.ts
@@ -0,0 +1 @@
+export * from './src/FrameStats';
diff --git a/example/modules/frame-stats/ios/FrameRecorder.swift b/example/modules/frame-stats/ios/FrameRecorder.swift
new file mode 100644
index 0000000..e536372
--- /dev/null
+++ b/example/modules/frame-stats/ios/FrameRecorder.swift
@@ -0,0 +1,88 @@
+import QuartzCore
+import UIKit
+import os.signpost
+
+/// Records main-thread frame intervals with a `CADisplayLink`.
+///
+/// Callback cadence detects main-thread delays. It does not measure presented
+/// map/GPU frames; pair it with an Instruments presentation/hitch trace.
+final class FrameRecorder {
+ private var displayLink: CADisplayLink?
+ private var lastTimestamp: CFTimeInterval = 0
+ private var lastExpectedInterval: CFTimeInterval = 0
+ private var startedAt: CFTimeInterval = 0
+ private var intervalsMs: [Double] = []
+ private var expectedMs: [Double] = []
+ private let signpostLog = OSLog(subsystem: "software.gmi.markerbench", category: .pointsOfInterest)
+ private var signpostID: OSSignpostID?
+
+ func start(label: String) {
+ intervalsMs.reserveCapacity(4096)
+ expectedMs.reserveCapacity(4096)
+
+ let link = CADisplayLink(target: self, selector: #selector(step(_:)))
+ let maximum = Float(UIScreen.main.maximumFramesPerSecond)
+ // Ask for the display's full rate so a 120 Hz device is measured at 120 Hz.
+ // On iPhone this also needs `CADisableMinimumFrameDurationOnPhone` in
+ // Info.plist, which the example app sets.
+ link.preferredFrameRateRange = CAFrameRateRange(
+ minimum: 30,
+ maximum: maximum,
+ preferred: maximum
+ )
+ link.add(to: .main, forMode: .common)
+ displayLink = link
+ startedAt = CACurrentMediaTime()
+ lastTimestamp = 0
+ let id = OSSignpostID(log: signpostLog)
+ signpostID = id
+ os_signpost(.begin, log: signpostLog, name: "MarkerBenchmark", signpostID: id, "%{public}@", label)
+ }
+
+ @objc private func step(_ link: CADisplayLink) {
+ if lastTimestamp > 0 {
+ intervalsMs.append((link.timestamp - lastTimestamp) * 1000)
+ expectedMs.append(lastExpectedInterval * 1000)
+ }
+ lastTimestamp = link.timestamp
+ lastExpectedInterval = link.targetTimestamp - link.timestamp
+ }
+
+ func stop() -> [String: Any] {
+ displayLink?.invalidate()
+ displayLink = nil
+ if let id = signpostID {
+ os_signpost(.end, log: signpostLog, name: "MarkerBenchmark", signpostID: id)
+ signpostID = nil
+ }
+ return [
+ "intervalsMs": intervalsMs,
+ "expectedMs": expectedMs,
+ "durationMs": (CACurrentMediaTime() - startedAt) * 1000,
+ "refreshRateHz": Double(UIScreen.main.maximumFramesPerSecond),
+ ]
+ }
+
+ static func emptyRecording() -> [String: Any] {
+ [
+ "intervalsMs": [Double](),
+ "expectedMs": [Double](),
+ "durationMs": 0.0,
+ "refreshRateHz": Double(UIScreen.main.maximumFramesPerSecond),
+ ]
+ }
+
+ /// `phys_footprint`: the number Xcode's memory gauge and jetsam use.
+ static func memoryFootprintBytes() -> UInt64 {
+ var info = task_vm_info_data_t()
+ var count = mach_msg_type_number_t(
+ MemoryLayout.size / MemoryLayout.size
+ )
+ let result = withUnsafeMutablePointer(to: &info) { pointer in
+ pointer.withMemoryRebound(to: integer_t.self, capacity: Int(count)) {
+ task_info(mach_task_self_, task_flavor_t(TASK_VM_INFO), $0, &count)
+ }
+ }
+ return result == KERN_SUCCESS ? info.phys_footprint : 0
+ }
+}
diff --git a/example/modules/frame-stats/ios/FrameStats.podspec b/example/modules/frame-stats/ios/FrameStats.podspec
new file mode 100644
index 0000000..e3d85f3
--- /dev/null
+++ b/example/modules/frame-stats/ios/FrameStats.podspec
@@ -0,0 +1,25 @@
+require 'json'
+
+package = JSON.parse(File.read(File.join(__dir__, '..', 'package.json')))
+
+Pod::Spec.new do |s|
+ s.name = 'FrameStats'
+ s.version = package['version']
+ s.summary = package['description']
+ s.description = package['description']
+ s.license = package['license']
+ s.author = package['author']
+ s.homepage = package['homepage']
+ s.platforms = { :ios => '16.0' }
+ s.swift_version = '5.9'
+ s.source = { git: package['homepage'] }
+ s.static_framework = true
+
+ s.dependency 'ExpoModulesCore'
+
+ s.source_files = "**/*.{h,m,swift}"
+ s.pod_target_xcconfig = {
+ 'DEFINES_MODULE' => 'YES',
+ 'SWIFT_COMPILATION_MODE' => 'wholemodule'
+ }
+end
diff --git a/example/modules/frame-stats/ios/FrameStatsModule.swift b/example/modules/frame-stats/ios/FrameStatsModule.swift
new file mode 100644
index 0000000..9e42b9e
--- /dev/null
+++ b/example/modules/frame-stats/ios/FrameStatsModule.swift
@@ -0,0 +1,81 @@
+import ExpoModulesCore
+import UIKit
+
+/// Exposes `FrameRecorder` to JS. Recording starts and stops on the main
+/// thread because that is the thread whose frame intervals are measured.
+public final class FrameStatsModule: Module {
+ private var recorder: FrameRecorder?
+ private var initialEnvironment: [String: Any] = [:]
+
+ private func environment() -> [String: Any] {
+ var mounted = 0
+ var visible = 0
+ func visit(_ view: UIView, hidden: Bool) {
+ let hidden = hidden || view.isHidden || view.alpha == 0
+ if NSStringFromClass(type(of: view)).hasSuffix(".NitroMarkerContentView") {
+ mounted += 1
+ if !hidden { visible += 1 }
+ }
+ for child in view.subviews { visit(child, hidden: hidden) }
+ }
+ for scene in UIApplication.shared.connectedScenes.compactMap({ $0 as? UIWindowScene }) {
+ for window in scene.windows { visit(window, hidden: false) }
+ }
+ return [
+ "os": UIDevice.current.systemVersion,
+ "thermalState": ProcessInfo.processInfo.thermalState.rawValue,
+ "lowPowerMode": ProcessInfo.processInfo.isLowPowerModeEnabled,
+ "mountedMarkerViews": mounted,
+ "visibleMarkerViews": visible,
+ "applicationActive": UIApplication.shared.applicationState == .active,
+ ]
+ }
+
+ public func definition() -> ModuleDefinition {
+ Name("FrameStats")
+
+ AsyncFunction("setKeepAwake") { (enabled: Bool) -> Void in
+ UIApplication.shared.isIdleTimerDisabled = enabled
+ }.runOnQueue(.main)
+
+ AsyncFunction("start") { (label: String) -> Void in
+ self.recorder?.stop()
+ self.initialEnvironment = self.environment()
+ let recorder = FrameRecorder()
+ recorder.start(label: label)
+ self.recorder = recorder
+ }.runOnQueue(.main)
+
+ AsyncFunction("stop") { () -> [String: Any] in
+ guard let recorder = self.recorder else {
+ return FrameRecorder.emptyRecording()
+ }
+ self.recorder = nil
+ var result = recorder.stop()
+ result["environmentBefore"] = self.initialEnvironment
+ result["environmentAfter"] = self.environment()
+ return result
+ }.runOnQueue(.main)
+
+ AsyncFunction("memoryFootprint") { () -> Double in
+ Double(FrameRecorder.memoryFootprintBytes())
+ }
+
+ AsyncFunction("displayRefreshRate") { () -> Double in
+ Double(UIScreen.main.maximumFramesPerSecond)
+ }.runOnQueue(.main)
+
+ AsyncFunction("logLine") { (line: String) throws -> Void in
+ let documents = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0]
+ let url = documents.appendingPathComponent("marker-view-benchmark.jsonl")
+ if !FileManager.default.fileExists(atPath: url.path) {
+ FileManager.default.createFile(atPath: url.path, contents: nil)
+ }
+ let file = try FileHandle(forWritingTo: url)
+ defer { try? file.close() }
+ try file.seekToEnd()
+ try file.write(contentsOf: Data((line + "\n").utf8))
+ NSLog("%@", line)
+ }
+ }
+}
diff --git a/example/modules/frame-stats/package.json b/example/modules/frame-stats/package.json
new file mode 100644
index 0000000..eadbdd5
--- /dev/null
+++ b/example/modules/frame-stats/package.json
@@ -0,0 +1,10 @@
+{
+ "name": "frame-stats",
+ "version": "0.1.0",
+ "private": true,
+ "description": "Frame-interval recorder for the react-native-better-maps benchmark harness",
+ "main": "index.ts",
+ "license": "MIT",
+ "author": "gmi.software",
+ "homepage": "https://github.com/gmi-software/react-native-better-maps"
+}
diff --git a/example/modules/frame-stats/src/FrameStats.ts b/example/modules/frame-stats/src/FrameStats.ts
new file mode 100644
index 0000000..69e2733
--- /dev/null
+++ b/example/modules/frame-stats/src/FrameStats.ts
@@ -0,0 +1,61 @@
+import { requireNativeModule } from 'expo';
+
+/**
+ * Raw output of one recording session.
+ *
+ * `intervalsMs[i]` is the time between display refresh callbacks i and i+1 on
+ * the main thread; `expectedMs[i]` is the refresh interval the display was
+ * running at for that frame. Both are needed: ProMotion and adaptive Android
+ * displays change rate on their own, so jank is "longer than the interval the
+ * display asked for", not "longer than 16.67 ms".
+ */
+export interface FrameRecording {
+ intervalsMs: number[];
+ expectedMs: number[];
+ durationMs: number;
+ refreshRateHz: number;
+}
+
+interface NativeFrameStats {
+ start(label: string): Promise;
+ stop(): Promise;
+ memoryFootprint(): Promise;
+ displayRefreshRate(): Promise;
+ logLine(line: string): Promise;
+ setKeepAwake(enabled: boolean): Promise;
+}
+
+const native = requireNativeModule('FrameStats');
+
+export function setBenchmarkKeepAwake(enabled: boolean): Promise {
+ return native.setKeepAwake(enabled);
+}
+
+/** Starts recording main-thread frame intervals. Stops any recording in progress. */
+export function startFrameRecording(label = 'benchmark'): Promise {
+ return native.start(label);
+}
+
+/** Stops recording and returns every frame interval seen since `start`. */
+export function stopFrameRecording(): Promise {
+ return native.stop();
+}
+
+/** Resident memory of the process in bytes (`phys_footprint` on iOS, PSS on Android). */
+export function memoryFootprintBytes(): Promise {
+ return native.memoryFootprint();
+}
+
+/** Maximum refresh rate of the main display, in Hz. */
+export function displayRefreshRateHz(): Promise {
+ return native.displayRefreshRate();
+}
+
+/**
+ * Writes a line to the system log (`NSLog` on iOS, `Log.i` tag
+ * `NitroMapsBenchmark` on Android), which release builds keep while
+ * `console.log` output is dropped.
+ */
+export function logBenchmarkLine(line: string): Promise {
+ return native.logLine(line);
+}
diff --git a/experiments/custom-markers/.gitignore b/experiments/custom-markers/.gitignore
new file mode 100644
index 0000000..7a60b85
--- /dev/null
+++ b/experiments/custom-markers/.gitignore
@@ -0,0 +1,2 @@
+__pycache__/
+*.pyc
diff --git a/experiments/custom-markers/HostChecks.swift b/experiments/custom-markers/HostChecks.swift
new file mode 100644
index 0000000..5e32273
--- /dev/null
+++ b/experiments/custom-markers/HostChecks.swift
@@ -0,0 +1,79 @@
+import UIKit
+
+// Match the generated data fields without linking Nitro in this isolated test app.
+struct Coordinate { var latitude: Double; var longitude: Double }
+struct MarkerAnchor { var x: Double; var y: Double }
+
+func runNativeHostChecks() {
+ let map = NitroMapContainerView(frame: CGRect(x: 0, y: 0, width: 400, height: 400))
+ let secondMap = NitroMapContainerView(frame: map.frame)
+ let surface = UIView(frame: map.bounds)
+ map.addSubview(surface)
+ map.mapSurface = surface
+ var projection = CGPoint(x: 200, y: 150)
+ map.projectCoordinate = { _ in projection }
+ secondMap.projectCoordinate = { _ in CGPoint(x: 40, y: 40) }
+ let wrapper = UIView(frame: CGRect(x: 0, y: 0, width: 96, height: 48))
+ let content = NitroMarkerContentView(frame: wrapper.bounds)
+ precondition(content.clipsToBounds, "Animated descendants stay inside marker bounds")
+ let button = UIButton(frame: content.bounds)
+ content.addSubview(button)
+ content.coordinate = Coordinate(latitude: 52, longitude: 21)
+ wrapper.addSubview(content)
+ map.mountFabricChild(wrapper, at: 0)
+ precondition(wrapper.superview === surface, "Fabric host inherits SDK gesture ancestors")
+ precondition(wrapper.frame.origin == CGPoint(x: 152, y: 102), "Bottom-center anchor")
+ precondition(map.hitTest(CGPoint(x: 200, y: 126), with: nil) === button, "Translated child hit testing")
+ content.anchor = MarkerAnchor(x: 0, y: 0)
+ content.updatePosition()
+ precondition(wrapper.frame.origin == projection, "Anchor update")
+ projection = CGPoint(x: -200, y: 150)
+ map.updateMarkerPositions()
+ precondition(wrapper.isHidden, "Offscreen host is culled")
+ projection = CGPoint(x: 100, y: 100)
+ map.updateMarkerPositions()
+ precondition(!wrapper.isHidden && wrapper.frame.origin == projection, "Reentry restores position")
+ let replacementSurface = UIView(frame: map.bounds)
+ map.addSubview(replacementSurface)
+ map.mapSurface = replacementSurface
+ surface.removeFromSuperview()
+ precondition(wrapper.superview === replacementSurface, "Provider replacement preserves live Fabric hosts")
+ projection = CGPoint(x: CGFloat.nan, y: 0)
+ map.updateMarkerPositions()
+ precondition(wrapper.isHidden, "Non-finite projection is hidden")
+ map.unmountFabricChild(wrapper)
+ precondition(content.mapContainer == nil && content.fabricHost == nil, "Unmount releases association")
+ precondition(wrapper.transform == .identity && !wrapper.isHidden, "Unmount resets host state")
+ secondMap.mountFabricChild(wrapper, at: 0)
+ precondition(wrapper.frame.origin == CGPoint(x: 40, y: 40), "Mount in another map")
+ projection = CGPoint(x: 300, y: 300)
+ map.updateMarkerPositions()
+ precondition(wrapper.frame.origin == CGPoint(x: 40, y: 40), "Former map cannot move host")
+ secondMap.projectCoordinate = nil
+ secondMap.updateMarkerPositions()
+ precondition(wrapper.isHidden, "Released projector hides retained host")
+
+ let clippingHost = UIView(frame: CGRect(x: 0, y: 0, width: 120, height: 80))
+ clippingHost.backgroundColor = .white
+ let clippingContent = NitroMarkerContentView(frame: CGRect(x: 10, y: 10, width: 96, height: 48))
+ clippingHost.addSubview(clippingContent)
+ let overflowing = UIView(frame: clippingContent.bounds)
+ overflowing.backgroundColor = .red
+ overflowing.transform = CGAffineTransform(scaleX: 2, y: 2)
+ clippingContent.mountFabricChild(overflowing, at: 0)
+ let format = UIGraphicsImageRendererFormat()
+ format.scale = 1
+ let image = UIGraphicsImageRenderer(size: clippingHost.bounds.size, format: format).image {
+ clippingHost.layer.render(in: $0.cgContext)
+ }.cgImage!
+ var pixels = [UInt8](repeating: 0, count: 120 * 80 * 4)
+ let context = CGContext(data: &pixels, width: 120, height: 80, bitsPerComponent: 8,
+ bytesPerRow: 120 * 4, space: CGColorSpaceCreateDeviceRGB(),
+ bitmapInfo: CGImageAlphaInfo.premultipliedLast.rawValue)!
+ context.draw(image, in: clippingHost.bounds)
+ // Check the green channel across the entire raster: red is confined to the
+ // expected rectangle even though the child has a 2x animation transform.
+ let redPixels = stride(from: 1, to: pixels.count, by: 4).filter { pixels[$0] < 128 }.count
+ precondition(redPixels == 96 * 48, "Scaled JSX content is clipped in the rendered output")
+ print("NATIVE_HOST_CHECKS_PASSED: anchor, hit testing, culling, reentry, invalid projection, unmount, map isolation, SDK mount, raster clipping")
+}
diff --git a/experiments/custom-markers/README.md b/experiments/custom-markers/README.md
new file mode 100644
index 0000000..a0514f6
--- /dev/null
+++ b/experiments/custom-markers/README.md
@@ -0,0 +1,94 @@
+# Custom marker experiments
+
+This is an isolated, optimized UIKit CPU microbenchmark. It does **not** run React Native, Nitro, MapKit, or Google Maps, and does **not** measure presented FPS. The snapshot comparison is separate from the live Fabric implementation now included in the package.
+
+## Reproduce
+
+Requires Xcode and an already booted iOS Simulator. No JS dependencies, API keys, signing team, or package/example rebuild are required.
+
+```sh
+bash experiments/custom-markers/run-ios-simulator.sh booted experiments/custom-markers/results/local-run-1.json
+bash experiments/custom-markers/run-ios-simulator.sh booted experiments/custom-markers/results/local-run-2.json --reverse
+```
+
+The runner builds a separate `software.gmi.nitromaps.snapshotbench` app in a temporary directory, installs it, launches it, copies its JSON result, and terminates it. It leaves that experiment app installed. The temporary build is removed. Each run has a 180-second result timeout after launch. The simulator must stay available and the experiment app foregrounded during measurement.
+
+## Workload
+
+- A mounted 96 × 48 point rounded white UIView, circular colored avatar placeholder, and price UILabel.
+- Explicit 3×, standard-range raster: 288 × 144 pixels, 165,888 bytes (162 KiB) per image.
+- Fixed frames, no shadows, downloaded assets, React reconciliation, or Yoga layout.
+- Reuses one already mounted template and renderer, changing price on each capture.
+- 1, 10, 50, or 200 operations per synchronous main-thread batch.
+- Three unreported warmup batches and 20 recorded batches per scenario; 10 ms run-loop gaps between batches.
+- Run 2 reverses job order to expose order/warmup sensitivity. This is a small sample, not a confidence interval.
+- Raw samples, median, nearest-rank p95, maximum, dimensions, checksum, and environment metadata are saved to JSON.
+
+Variants:
+
+1. `cached-image-assignment`: assigns already prepared images to detached UIImageViews, rotating image identity between batches. Measures CPU setter/reference work only, **not** SDK `setIcon`, texture upload, view composition, or GPU cost.
+2. `layer`: updates text and snapshots using `CALayer.render(in:)`, returning a UIImage in memory.
+3. `hierarchy`: updates text and calls `drawHierarchy(afterScreenUpdates: true)` inside a renderer. This includes that API's synchronization behavior. It does **not** measure the internal Google `iconView` implementation.
+4. `layer-png-decode`: layer snapshot, PNG encode, UIImage decode, and forced preparation for display. No file I/O or bridge/base64 transport is included. Illustrates avoidable image conversion cost, not an exact measurement of `react-native-view-shot`.
+
+Captures intentionally happen sequentially within a batch. This models a burst of appearance work on one main thread, **not** a frame scheduler or 200 simultaneously mounted RN trees. The last checksum consumes all results. Successful hierarchy captures and decoded images are asserted.
+
+## Recorded results, 2026-09-11
+
+Xcode 26.6 (17F113), optimized Swift, iOS Simulator 26.5, iPhone 17 Pro Max simulator (`iPhone18,2`). The simulator reports a **60 Hz** maximum; it cannot validate 120 FPS. No physical device was available during these two initial snapshot runs. Subsequent live-host device validation is recorded separately.
+
+Median milliseconds per batch, shown as **run 1 / run 2**:
+
+| Operations | Cached image assignment | Layer snapshot | Hierarchy snapshot | Layer + PNG + decode |
+| ---------: | ----------------------: | --------------: | -----------------: | -------------------: |
+| 1 | 0.061 / 0.080 | 0.470 / 0.872 | 6.830 / 9.841 | 1.456 / 2.738 |
+| 10 | 0.103 / 0.202 | 2.331 / 3.456 | 39.656 / 47.318 | 10.102 / 10.253 |
+| 50 | 0.640 / 0.265 | 9.960 / 9.641 | 187.526 / 211.161 | 51.956 / 47.432 |
+| 200 | 0.853 / 2.134 | 37.301 / 35.788 | 722.918 / 797.074 | 201.881 / 187.313 |
+
+The layer-snapshot p95 for 50 operations was 11.108 / 10.052 ms; for 200 it was 38.944 / 37.126 ms. See [run 1](results/ios-simulator-run-1.json) and [run 2](results/ios-simulator-run-2.json) for all samples.
+
+## Interpretation and limits
+
+An 8.33 ms interval is the entire 120 Hz display budget, not a marker-only allowance. In both runs, batching 50 simple layer captures exceeded that interval before any map, RN, upload, or GPU work. This makes “snapshot every animated marker every frame” a poor default architecture. It does **not** establish a universal safe marker count, a device speed ratio, or the cost of Google SDK-managed snapshots.
+
+The cheaper layer API also has different rendering semantics: it is not a universal capture of presentation-layer animations or every RN/Skia/Metal/video/blur subtree. Faster capture is useful only if it reproduces the requested content. This experiment checks execution and dimensions, not pixel-perfect fidelity across those view types.
+
+Cached appearances eliminate repeated capture work; they do not animate arbitrary internal JSX. The live Fabric prototype and device harness now provide a separate experiment. A UIKit-only snapshot experiment cannot measure its performance.
+
+At this raster size, 200 unique CPU images represent about 31.6 MiB; 1,000 represent about 158.2 MiB before SDK/GPU copies, host views, caches, or allocator overhead. A cache must have a byte budget and shared resource identity. Pre-rendering every animation frame can trade CPU for excessive memory.
+
+See [architecture recommendation](../../docs/research/custom-marker-performance.md) and [SDK sources](../../docs/research/custom-marker-sdk-sources.md).
+
+
+## Live Fabric host checks
+
+```sh
+bash experiments/custom-markers/run-ios-simulator.sh booted experiments/custom-markers/results/native-host-checks.json --host-checks-only
+```
+
+This compiles the actual `NitroMapContainerView` and `NitroMarkerContentView` implementations with lightweight coordinate types. It checks projection/anchor updates, transformed child hit testing, culling/reentry, invalid projection, unmount, map isolation, SDK surface replacement, and raster clipping of a scaled child. It does not replace React Native runtime testing.
+
+Android gesture regression tests use Robolectric with the actual container, a native `ScrollView`, and a recording map surface. They exercise the first move beyond touch slop, cancellation/replay to the SDK, and disabled map scrolling:
+
+```sh
+cd example/android
+./gradlew :react-native-better-maps:testDebugUnitTest --max-workers=2
+```
+
+## Release device A/B harness
+
+Build the example with `EXPO_PUBLIC_MARKER_VIEW_BENCHMARK=1`, then use **Run A/B**. The benchmark keeps the display awake while this screen is mounted. It compares existing descriptor pins with live static JSX, Reanimated child transforms, and Reanimated child width changes. Each marker has fixed 96 x 48 point bounds, a colored glyph, text, and a stateful Pressable. The same coordinate set and four native camera animations are used for each case. Three passes alternate case order at 10/50/200 mounted markers.
+
+Counts describe submitted markers; provider pin collision/culling differs from live views. iOS recordings include the mounted/visible live-host census at the start and end, active-app state, low-power mode, and thermal state (0 nominal, 1 fair, 2 serious, 3 critical). These are endpoint checks, not a per-frame visibility census. Warmup and JS serialization/logging occur outside the recorded interval.
+
+The example-only FrameStats module was adapted from [PR #66](https://github.com/gmi-software/react-native-better-maps/pull/66). On iOS it pairs each elapsed callback interval with the preceding requested deadline and records signposted intervals named `MarkerBenchmark`. This diagnoses main-thread callback cadence; it cannot prove presented map/GPU FPS. Use the Animation Hitches template plus Points of Interest, without a debugger attached. Trace and untraced runs must be distinguished when interpreting overhead.
+
+Raw iOS rows are appended to `Documents/marker-view-benchmark.jsonl` in the example app container. Extract and summarize them with:
+
+```sh
+xcrun devicectl device copy from --device YOUR_DEVICE --domain-type appDataContainer --domain-identifier com.nitromaps.example --source Documents/marker-view-benchmark.jsonl --destination /tmp/marker-view-benchmark.jsonl
+python3 experiments/custom-markers/summarize-rn-benchmark.py /tmp/marker-view-benchmark.jsonl --output /tmp/marker-view-summary.json
+```
+
+A fresh installation or a separate copied log should be used for each investigation; the raw file intentionally appends across runs. Preserve raw samples, workload parameters, device/OS/build identity, and Instruments evidence before drawing a performance conclusion.
diff --git a/experiments/custom-markers/SnapshotBench.swift b/experiments/custom-markers/SnapshotBench.swift
new file mode 100644
index 0000000..1bfa5d0
--- /dev/null
+++ b/experiments/custom-markers/SnapshotBench.swift
@@ -0,0 +1,177 @@
+import UIKit
+import QuartzCore
+
+// Intentionally standalone: isolates UIKit snapshot CPU cost, not map/RN FPS.
+// Fixed frames avoid Yoga/layout-engine cost, so this is an optimistic workload.
+final class MarkerContent: UIView {
+ private let label = UILabel(frame: CGRect(x: 35, y: 8, width: 57, height: 30))
+
+ init() {
+ super.init(frame: CGRect(x: 0, y: 0, width: 96, height: 48))
+ backgroundColor = .white
+ layer.cornerRadius = 16
+ let avatar = UIView(frame: CGRect(x: 6, y: 10, width: 28, height: 28))
+ avatar.backgroundColor = .systemIndigo
+ avatar.layer.cornerRadius = 14
+ addSubview(avatar)
+ label.font = .systemFont(ofSize: 14, weight: .semibold)
+ label.textColor = .black
+ addSubview(label)
+ setValue(0)
+ }
+
+ required init?(coder: NSCoder) { fatalError("init(coder:) is unsupported") }
+
+ func setValue(_ value: Int) {
+ label.text = "$\(100 + value % 800)"
+ label.setNeedsDisplay()
+ layoutIfNeeded()
+ }
+}
+
+@main
+final class AppDelegate: UIResponder, UIApplicationDelegate {
+ var window: UIWindow?
+ private let marker = MarkerContent()
+ private var rows: [[String: Any]] = []
+ private var jobs: [(String, Int)] = []
+ private var checksum = 0
+ private let sampleCount = 20
+ private let warmupCount = 3
+ private var cachedImages: [UIImage] = []
+ private var cachedTargets: [UIImageView] = []
+ private var renderer: UIGraphicsImageRenderer!
+
+ func application(
+ _ application: UIApplication,
+ didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil
+ ) -> Bool {
+ runNativeHostChecks()
+ if ProcessInfo.processInfo.arguments.contains("--host-checks-only") {
+ let output = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0]
+ .appendingPathComponent("results.json")
+ try! Data("{\"nativeHostChecksPassed\":true}".utf8).write(to: output, options: .atomic)
+ }
+ let controller = UIViewController()
+ controller.view.backgroundColor = .systemGray5
+ marker.frame.origin = CGPoint(x: 30, y: 100)
+ controller.view.addSubview(marker)
+ let window = UIWindow(frame: UIScreen.main.bounds)
+ window.rootViewController = controller
+ self.window = window
+ window.makeKeyAndVisible()
+ let format = UIGraphicsImageRendererFormat()
+ format.scale = 3
+ format.preferredRange = .standard
+ renderer = UIGraphicsImageRenderer(size: marker.bounds.size, format: format)
+ if !ProcessInfo.processInfo.arguments.contains("--host-checks-only") {
+ DispatchQueue.main.asyncAfter(deadline: .now() + 1) { self.prepare() }
+ }
+ return true
+ }
+
+ private func snapshot(_ mode: String) -> UIImage {
+ renderer.image { context in
+ if mode == "hierarchy" {
+ precondition(marker.drawHierarchy(in: marker.bounds, afterScreenUpdates: true))
+ } else {
+ marker.layer.render(in: context.cgContext)
+ }
+ }
+ }
+
+ private func prepare() {
+ // All source images exist before timings; no network or disk in this case.
+ for i in 0..<200 {
+ marker.setValue(i)
+ cachedImages.append(snapshot("layer"))
+ cachedTargets.append(UIImageView())
+ }
+ for count in [1, 10, 50, 200] {
+ for mode in ["cached-image-assignment", "layer", "hierarchy", "layer-png-decode"] {
+ jobs.append((mode, count))
+ }
+ }
+ if ProcessInfo.processInfo.arguments.contains("--reverse") { jobs.reverse() }
+ runNext()
+ }
+
+ private func runBatch(mode: String, count: Int, sample: Int) -> Double {
+ let start = CACurrentMediaTime()
+ autoreleasepool {
+ for i in 0..= self.warmupCount { samples.append(elapsed) }
+ if sample + 1 < self.warmupCount + self.sampleCount {
+ // Allow the run loop to service UIKit work between measured batches.
+ DispatchQueue.main.asyncAfter(deadline: .now() + 0.01) { nextSample(sample + 1) }
+ } else {
+ let sorted = samples.sorted()
+ let median = (sorted[9] + sorted[10]) / 2
+ let row: [String: Any] = [
+ "mode": mode, "markersPerBatch": count,
+ "medianMs": median, "p95Ms": sorted[18], "maxMs": sorted.last!,
+ "medianFractionOf8_33ms": median / (1000.0 / 120),
+ "samplesMs": samples,
+ ]
+ self.rows.append(row)
+ print("BENCH \(mode) n=\(count) median=\(median) ms")
+ DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) { self.runNext() }
+ }
+ }
+ nextSample(0)
+ }
+
+ private func finish() {
+ let image = cachedImages[0].cgImage!
+ let result: [String: Any] = [
+ "kind": "UIKit CPU microbenchmark; NOT map FPS or React Native benchmark",
+ "timestamp": ISO8601DateFormatter().string(from: Date()),
+ "os": UIDevice.current.systemVersion,
+ "simulatorModel": ProcessInfo.processInfo.environment["SIMULATOR_MODEL_IDENTIFIER"] ?? "unknown",
+ "reportedMaximumFramesPerSecond": window!.screen.maximumFramesPerSecond,
+ "sizePoints": [96, 48], "scale": 3,
+ "pixelSize": [image.width, image.height],
+ "bytesPerRaster": image.bytesPerRow * image.height,
+ "sampleCount": sampleCount, "warmupCount": warmupCount,
+ "reversedJobOrder": ProcessInfo.processInfo.arguments.contains("--reverse"),
+ "nativeHostChecksPassed": true,
+ "checksum": checksum, "results": rows,
+ ]
+ let url = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0]
+ .appendingPathComponent("results.json")
+ do {
+ try JSONSerialization.data(withJSONObject: result, options: [.prettyPrinted, .sortedKeys])
+ .write(to: url, options: .atomic)
+ print("BENCH_DONE")
+ } catch { fatalError("Unable to save benchmark: \(error)") }
+ }
+}
diff --git a/experiments/custom-markers/results/ios-simulator-run-1.json b/experiments/custom-markers/results/ios-simulator-run-1.json
new file mode 100644
index 0000000..478f7ec
--- /dev/null
+++ b/experiments/custom-markers/results/ios-simulator-run-1.json
@@ -0,0 +1,502 @@
+{
+ "bytesPerRaster" : 165888,
+ "checksum" : 6915456,
+ "kind" : "UIKit CPU microbenchmark; NOT map FPS or React Native benchmark",
+ "os" : "26.5",
+ "pixelSize" : [
+ 288,
+ 144
+ ],
+ "reportedMaximumFramesPerSecond" : 60,
+ "results" : [
+ {
+ "markersPerBatch" : 1,
+ "maxMs" : 0.071916641900315881,
+ "medianFractionOf8_33ms" : 0.0073124998016282907,
+ "medianMs" : 0.06093749834690243,
+ "mode" : "cached-image-assignment",
+ "p95Ms" : 0.070499983849003911,
+ "samplesMs" : [
+ 0.05233331467024982,
+ 0.058500008890405297,
+ 0.070499983849003911,
+ 0.060791673604398966,
+ 0.05233331467024982,
+ 0.054166681366041303,
+ 0.04191667539998889,
+ 0.055500015150755644,
+ 0.069000001531094313,
+ 0.05875001079402864,
+ 0.060124992160126567,
+ 0.059583311667665839,
+ 0.061083323089405894,
+ 0.063500017859041691,
+ 0.061833328800275922,
+ 0.071916641900315881,
+ 0.069666653871536255,
+ 0.067249988205730915,
+ 0.063916668295860291,
+ 0.066000007791444659
+ ]
+ },
+ {
+ "markersPerBatch" : 1,
+ "maxMs" : 1.0325416515115649,
+ "medianFractionOf8_33ms" : 0.056344998884014778,
+ "medianMs" : 0.46954165736678988,
+ "mode" : "layer",
+ "p95Ms" : 0.54945831652730703,
+ "samplesMs" : [
+ 0.41300000157207251,
+ 0.40483332122676075,
+ 0.46166667016223073,
+ 1.0325416515115649,
+ 0.48849999438971281,
+ 0.47179165994748473,
+ 0.48383334069512784,
+ 0.47837500460445881,
+ 0.46729165478609502,
+ 0.35495831980369985,
+ 0.50554168410599232,
+ 0.41316665010526776,
+ 0.37866667844355106,
+ 0.47700002323836088,
+ 0.43812498915940523,
+ 0.44008332770317793,
+ 0.51020833780057728,
+ 0.44825000804848969,
+ 0.54945831652730703,
+ 0.51733333384618163
+ ]
+ },
+ {
+ "markersPerBatch" : 1,
+ "maxMs" : 21.772374981082976,
+ "medianFractionOf8_33ms" : 0.8196424995549022,
+ "medianMs" : 6.8303541629575193,
+ "mode" : "hierarchy",
+ "p95Ms" : 7.8694166732020676,
+ "samplesMs" : [
+ 5.9933333250228316,
+ 5.9700416750274599,
+ 5.9732083464041352,
+ 5.8175000012852252,
+ 5.7674999989103526,
+ 5.8260416553821415,
+ 21.772374981082976,
+ 7.647500024177134,
+ 6.8251666671130806,
+ 7.0779583184048533,
+ 7.6727500127162784,
+ 6.441791687393561,
+ 7.8694166732020676,
+ 7.142166665289551,
+ 6.7240416829008609,
+ 6.3834166503511369,
+ 7.0867083559278399,
+ 6.9074999773874879,
+ 6.835541658801958,
+ 7.2310416726395488
+ ]
+ },
+ {
+ "markersPerBatch" : 1,
+ "maxMs" : 1.5707083512097597,
+ "medianFractionOf8_33ms" : 0.17472500097937882,
+ "medianMs" : 1.4560416748281568,
+ "mode" : "layer-png-decode",
+ "p95Ms" : 1.5609166584908962,
+ "samplesMs" : [
+ 1.3831666728947312,
+ 1.2877083499915898,
+ 1.5352499904111028,
+ 1.4291249972302467,
+ 1.5707083512097597,
+ 1.4711666735820472,
+ 1.5256250044330955,
+ 1.4121249841991812,
+ 1.3473333383444697,
+ 1.3295416720211506,
+ 1.5007499896455556,
+ 1.3706666650250554,
+ 1.2128333328291774,
+ 1.4990416821092367,
+ 1.5151666884776205,
+ 1.4409166760742664,
+ 1.4899583184160292,
+ 1.5609166584908962,
+ 1.503916661022231,
+ 1.357375003863126
+ ]
+ },
+ {
+ "markersPerBatch" : 10,
+ "maxMs" : 0.23916666395962238,
+ "medianFractionOf8_33ms" : 0.012412498472258447,
+ "medianMs" : 0.10343748726882041,
+ "mode" : "cached-image-assignment",
+ "p95Ms" : 0.22691665799356997,
+ "samplesMs" : [
+ 0.077416654676198959,
+ 0.079666671808809042,
+ 0.089708337327465415,
+ 0.10791665408760309,
+ 0.1003333309199661,
+ 0.23916666395962238,
+ 0.10312499944120646,
+ 0.11320831254124641,
+ 0.10937501792795956,
+ 0.15887498739175498,
+ 0.22691665799356997,
+ 0.20049998420290649,
+ 0.1120000088121742,
+ 0.11395831825211644,
+ 0.099083321401849389,
+ 0.10262499563395977,
+ 0.10254167136736214,
+ 0.10374997509643435,
+ 0.10037500760518014,
+ 0.10254167136736214
+ ]
+ },
+ {
+ "markersPerBatch" : 10,
+ "maxMs" : 2.8937500028405339,
+ "medianFractionOf8_33ms" : 0.27977000107057393,
+ "medianMs" : 2.331416675588116,
+ "mode" : "layer",
+ "p95Ms" : 2.8188333380967379,
+ "samplesMs" : [
+ 2.8937500028405339,
+ 2.8188333380967379,
+ 2.3459999938495457,
+ 2.4766666465438902,
+ 2.2727083414793015,
+ 2.5705416628625244,
+ 2.4748333089519292,
+ 2.1217500034254044,
+ 2.4816249788273126,
+ 2.3753750137984753,
+ 2.5012083351612091,
+ 2.1147083316463977,
+ 2.3168333573266864,
+ 2.557583327870816,
+ 2.2226666624192148,
+ 2.1728749852627516,
+ 2.2477083257399499,
+ 2.1783333213534206,
+ 2.1223750081844628,
+ 2.2507499961648136
+ ]
+ },
+ {
+ "markersPerBatch" : 10,
+ "maxMs" : 46.492666675476357,
+ "medianFractionOf8_33ms" : 4.7586900007445365,
+ "medianMs" : 39.655750006204471,
+ "mode" : "hierarchy",
+ "p95Ms" : 43.44766668509692,
+ "samplesMs" : [
+ 39.783874992281199,
+ 38.50379167124629,
+ 35.34316667355597,
+ 38.256041676504537,
+ 39.552500005811453,
+ 39.759000006597489,
+ 40.450458327541128,
+ 46.492666675476357,
+ 37.356416665716097,
+ 38.616166653810069,
+ 36.467208323301747,
+ 41.818458354100585,
+ 42.011666664620861,
+ 39.99750001821667,
+ 40.671583323273808,
+ 43.44766668509692,
+ 38.577416678890586,
+ 38.122583355288953,
+ 37.830249988473952,
+ 42.065208312124014
+ ]
+ },
+ {
+ "markersPerBatch" : 10,
+ "maxMs" : 10.752583330031484,
+ "medianFractionOf8_33ms" : 1.2121824984205887,
+ "medianMs" : 10.101520820171572,
+ "mode" : "layer-png-decode",
+ "p95Ms" : 10.752375004813075,
+ "samplesMs" : [
+ 10.338124993722886,
+ 9.8572916758712381,
+ 10.139583318959922,
+ 10.054166661575437,
+ 9.8647916747722775,
+ 10.063458321383223,
+ 9.6546249988023192,
+ 9.7468333260621876,
+ 10.018208326073363,
+ 9.5432916714344174,
+ 10.346291674068198,
+ 9.7114583477377892,
+ 10.208916675765067,
+ 10.752583330031484,
+ 10.275875014485791,
+ 9.9378750019241124,
+ 10.323124995920807,
+ 10.752375004813075,
+ 10.472875001141801,
+ 10.735041665611789
+ ]
+ },
+ {
+ "markersPerBatch" : 50,
+ "maxMs" : 0.7824583153706044,
+ "medianFractionOf8_33ms" : 0.07681750226765871,
+ "medianMs" : 0.64014585223048925,
+ "mode" : "cached-image-assignment",
+ "p95Ms" : 0.72774998261593282,
+ "samplesMs" : [
+ 0.27716666227206588,
+ 0.34837500425055623,
+ 0.7824583153706044,
+ 0.64204167574644089,
+ 0.63774999580346048,
+ 0.68149997969157994,
+ 0.66799999331124127,
+ 0.63445832347497344,
+ 0.63708334346301854,
+ 0.67979167215526104,
+ 0.63916668295860291,
+ 0.6411250215023756,
+ 0.26016664924100041,
+ 0.23341664928011596,
+ 0.24045832105912268,
+ 0.605916662607342,
+ 0.72774998261593282,
+ 0.67425001179799438,
+ 0.71716666570864618,
+ 0.64279168145731091
+ ]
+ },
+ {
+ "markersPerBatch" : 50,
+ "maxMs" : 11.245583329582587,
+ "medianFractionOf8_33ms" : 1.1951850011246279,
+ "medianMs" : 9.9598750093718991,
+ "mode" : "layer",
+ "p95Ms" : 11.107541678939015,
+ "samplesMs" : [
+ 11.107541678939015,
+ 9.2486249923240393,
+ 9.8966250079683959,
+ 11.245583329582587,
+ 9.9580000096466392,
+ 10.261583345709369,
+ 9.8765833245124668,
+ 9.4284999941010028,
+ 10.17087500076741,
+ 10.367666662205011,
+ 9.7244583303108811,
+ 9.3581666587851942,
+ 9.9617500090971589,
+ 9.9040416826028377,
+ 10.178124997764826,
+ 9.4047916645649821,
+ 9.8019166616722941,
+ 10.315708321286365,
+ 11.059499986004084,
+ 10.750375018687919
+ ]
+ },
+ {
+ "markersPerBatch" : 50,
+ "maxMs" : 203.36766666150652,
+ "medianFractionOf8_33ms" : 22.503107499796897,
+ "medianMs" : 187.52589583164081,
+ "mode" : "hierarchy",
+ "p95Ms" : 201.9257916836068,
+ "samplesMs" : [
+ 188.97804166772403,
+ 194.77962501696311,
+ 187.17033331631683,
+ 201.9257916836068,
+ 188.99900000542402,
+ 129.98570833588019,
+ 203.36766666150652,
+ 181.04158333153464,
+ 177.25824998342432,
+ 188.13762502395548,
+ 172.64825000893325,
+ 118.24908331618644,
+ 190.04391666385345,
+ 199.60054167313501,
+ 184.95070832432248,
+ 190.60233334312215,
+ 180.77550001908094,
+ 184.46966668125242,
+ 182.62187499203719,
+ 187.88145834696479
+ ]
+ },
+ {
+ "markersPerBatch" : 50,
+ "maxMs" : 60.160000022733584,
+ "medianFractionOf8_33ms" : 6.2346724985400215,
+ "medianMs" : 51.955604154500179,
+ "mode" : "layer-png-decode",
+ "p95Ms" : 59.944083332084119,
+ "samplesMs" : [
+ 53.165374993113801,
+ 53.304291650420055,
+ 59.944083332084119,
+ 60.160000022733584,
+ 56.682374997762963,
+ 56.723791669355705,
+ 58.323541685240343,
+ 54.45854167919606,
+ 50.458625017199665,
+ 46.933625009842217,
+ 52.177416655467823,
+ 49.522791669005528,
+ 52.327458339277655,
+ 48.987874994054437,
+ 51.52666664798744,
+ 46.732291666558012,
+ 51.733791653532535,
+ 49.403291690396145,
+ 48.846958321519196,
+ 48.973833327181637
+ ]
+ },
+ {
+ "markersPerBatch" : 200,
+ "maxMs" : 2.4462500005029142,
+ "medianFractionOf8_33ms" : 0.10238749848213045,
+ "medianMs" : 0.8532291540177539,
+ "mode" : "cached-image-assignment",
+ "p95Ms" : 2.4413749924860895,
+ "samplesMs" : [
+ 0.80420833546668291,
+ 0.7943333184812218,
+ 0.86054165149107575,
+ 0.80350000644102693,
+ 0.79120835289359093,
+ 0.81399999908171594,
+ 2.1493750100489706,
+ 2.4462500005029142,
+ 2.0931249891873449,
+ 2.4317083298228681,
+ 2.3988333414308727,
+ 2.4413749924860895,
+ 2.3030833399388939,
+ 2.120666642440483,
+ 0.84591665654443204,
+ 0.87645833264105022,
+ 0.82995832781307399,
+ 0.80854166299104691,
+ 0.80112498835660517,
+ 0.79329166328534484
+ ]
+ },
+ {
+ "markersPerBatch" : 200,
+ "maxMs" : 39.490416675107554,
+ "medianFractionOf8_33ms" : 4.4760774989845231,
+ "medianMs" : 37.300645824871026,
+ "mode" : "layer",
+ "p95Ms" : 38.944375002756715,
+ "samplesMs" : [
+ 35.578916664235294,
+ 36.418750009033829,
+ 38.188875012565404,
+ 38.944375002756715,
+ 36.874583340249956,
+ 39.490416675107554,
+ 37.640875001670793,
+ 36.332874995423481,
+ 36.857791652437299,
+ 36.17029165616259,
+ 36.857333354419097,
+ 36.91162500763312,
+ 36.961000005248934,
+ 38.324374996591359,
+ 37.100749992532656,
+ 37.860749987885356,
+ 37.586166668916121,
+ 37.960541667416692,
+ 37.500541657209396,
+ 38.076166645623744
+ ]
+ },
+ {
+ "markersPerBatch" : 200,
+ "maxMs" : 809.61600001319312,
+ "medianFractionOf8_33ms" : 86.750130001455545,
+ "medianMs" : 722.91775001212955,
+ "mode" : "hierarchy",
+ "p95Ms" : 768.39312500669621,
+ "samplesMs" : [
+ 722.89962501963601,
+ 416.71383331413381,
+ 733.80383334006183,
+ 731.63283333997242,
+ 427.02224999084137,
+ 712.70870833541267,
+ 746.49808331741951,
+ 447.13129167212173,
+ 728.7332083506044,
+ 450.63074998324737,
+ 705.71179167018272,
+ 720.64508334733546,
+ 727.52445834339596,
+ 722.93587500462309,
+ 768.39312500669621,
+ 809.61600001319312,
+ 523.27125001465902,
+ 766.92516668117605,
+ 750.35704165929928,
+ 440.91100001242012
+ ]
+ },
+ {
+ "markersPerBatch" : 200,
+ "maxMs" : 223.99320834665559,
+ "medianFractionOf8_33ms" : 24.225737500819378,
+ "medianMs" : 201.88114584016148,
+ "mode" : "layer-png-decode",
+ "p95Ms" : 221.11554167349823,
+ "samplesMs" : [
+ 188.98758332943544,
+ 187.20087499241345,
+ 184.24504165886901,
+ 190.72129167034291,
+ 182.78045832994394,
+ 194.39154167775996,
+ 207.29516664869152,
+ 209.95070834760554,
+ 203.51091667544097,
+ 193.78829168272205,
+ 221.11554167349823,
+ 219.47554164216854,
+ 205.43250002083369,
+ 200.61941666062921,
+ 202.16687500942498,
+ 223.99320834665559,
+ 212.75583331589587,
+ 213.61287499894388,
+ 201.29920833278447,
+ 201.59541667089798
+ ]
+ }
+ ],
+ "sampleCount" : 20,
+ "scale" : 3,
+ "simulatorModel" : "iPhone18,2",
+ "sizePoints" : [
+ 96,
+ 48
+ ],
+ "timestamp" : "2026-09-11T10:04:26Z",
+ "warmupCount" : 3
+}
\ No newline at end of file
diff --git a/experiments/custom-markers/results/ios-simulator-run-2.json b/experiments/custom-markers/results/ios-simulator-run-2.json
new file mode 100644
index 0000000..f4d39af
--- /dev/null
+++ b/experiments/custom-markers/results/ios-simulator-run-2.json
@@ -0,0 +1,503 @@
+{
+ "bytesPerRaster" : 165888,
+ "checksum" : 6915456,
+ "kind" : "UIKit CPU microbenchmark; NOT map FPS or React Native benchmark",
+ "os" : "26.5",
+ "pixelSize" : [
+ 288,
+ 144
+ ],
+ "reportedMaximumFramesPerSecond" : 60,
+ "results" : [
+ {
+ "markersPerBatch" : 200,
+ "maxMs" : 191.25050000729971,
+ "medianFractionOf8_33ms" : 22.477572501520626,
+ "medianMs" : 187.31310417933855,
+ "mode" : "layer-png-decode",
+ "p95Ms" : 190.32799999695271,
+ "samplesMs" : [
+ 186.03908334625885,
+ 187.86358332727104,
+ 187.03616666607559,
+ 189.24175002030097,
+ 185.27166667627171,
+ 186.21674997848459,
+ 186.45062498399056,
+ 187.64820834621787,
+ 187.59895832045004,
+ 184.91937499493361,
+ 185.23862501024269,
+ 189.11766668315977,
+ 190.32799999695271,
+ 187.59004169260152,
+ 189.07441667397507,
+ 191.25050000729971,
+ 189.14854168542661,
+ 186.25441667973064,
+ 186.71170831657946,
+ 186.28395831910893
+ ]
+ },
+ {
+ "markersPerBatch" : 200,
+ "maxMs" : 851.40745833632536,
+ "medianFractionOf8_33ms" : 95.648895000340417,
+ "medianMs" : 797.07412500283681,
+ "mode" : "hierarchy",
+ "p95Ms" : 826.42187501187436,
+ "samplesMs" : [
+ 805.60600000899285,
+ 819.45162499323487,
+ 499.03187499148771,
+ 808.8758333469741,
+ 824.86254165996797,
+ 544.20166666386649,
+ 802.2484999964945,
+ 551.06566665926948,
+ 771.41570832463913,
+ 795.02370834234171,
+ 513.15408330992796,
+ 818.91183331026696,
+ 851.40745833632536,
+ 511.71487499959767,
+ 799.12454166333191,
+ 534.19520833995193,
+ 812.19037499977276,
+ 519.12183334934525,
+ 826.42187501187436,
+ 541.94095835555345
+ ]
+ },
+ {
+ "markersPerBatch" : 200,
+ "maxMs" : 37.868416664423421,
+ "medianFractionOf8_33ms" : 4.29451750125736,
+ "medianMs" : 35.787645843811333,
+ "mode" : "layer",
+ "p95Ms" : 37.125874980119988,
+ "samplesMs" : [
+ 36.5508749964647,
+ 36.097541684284806,
+ 34.531291661551222,
+ 35.131583310430869,
+ 35.47775000333786,
+ 35.442124994006008,
+ 34.475416672648862,
+ 35.062833339907229,
+ 37.060000002384186,
+ 36.253541649784893,
+ 34.775625012116507,
+ 34.551874996395782,
+ 36.105250008404255,
+ 37.868416664423421,
+ 35.329541657119989,
+ 37.125874980119988,
+ 36.168416670989245,
+ 36.384291655849665,
+ 34.068333334289491,
+ 36.707083316287026
+ ]
+ },
+ {
+ "markersPerBatch" : 200,
+ "maxMs" : 3.070458333240822,
+ "medianFractionOf8_33ms" : 0.25602499837987125,
+ "medianMs" : 2.1335416531655937,
+ "mode" : "cached-image-assignment",
+ "p95Ms" : 2.3782500065863132,
+ "samplesMs" : [
+ 0.83779168198816478,
+ 0.82741666119545698,
+ 0.88729168055579066,
+ 0.88358332868665457,
+ 0.87616665405221283,
+ 0.84008331759832799,
+ 2.0896666683256626,
+ 2.3782500065863132,
+ 2.1694166644010693,
+ 2.2943333315197378,
+ 2.1113750117365271,
+ 2.1296666527632624,
+ 2.1374166535679251,
+ 2.2043749922886491,
+ 2.1514999971259385,
+ 2.258291671751067,
+ 2.1906250040046871,
+ 3.070458333240822,
+ 2.1477500267792493,
+ 2.1265416871756315
+ ]
+ },
+ {
+ "markersPerBatch" : 50,
+ "maxMs" : 51.164874981623143,
+ "medianFractionOf8_33ms" : 5.6917800003429875,
+ "medianMs" : 47.431500002858229,
+ "mode" : "layer-png-decode",
+ "p95Ms" : 50.021541654132307,
+ "samplesMs" : [
+ 48.404416680568829,
+ 50.021541654132307,
+ 51.164874981623143,
+ 49.474250001367182,
+ 48.967541661113501,
+ 49.66104164486751,
+ 47.320874989964068,
+ 48.381916683865711,
+ 47.54212501575239,
+ 46.836541674565524,
+ 46.396083344006911,
+ 46.350791672011837,
+ 46.388833317905664,
+ 44.855083338916302,
+ 45.584125007735565,
+ 45.83929167711176,
+ 45.782916655298322,
+ 46.694166667293757,
+ 48.166124994168058,
+ 47.713833337184042
+ ]
+ },
+ {
+ "markersPerBatch" : 50,
+ "maxMs" : 239.08816667972133,
+ "medianFractionOf8_33ms" : 25.339329998823811,
+ "medianMs" : 211.16108332353178,
+ "mode" : "hierarchy",
+ "p95Ms" : 231.7851249827072,
+ "samplesMs" : [
+ 239.08816667972133,
+ 199.13166668266058,
+ 231.7851249827072,
+ 205.78150000073947,
+ 217.26816665614024,
+ 191.00370834348723,
+ 221.42250000615604,
+ 187.26599999354221,
+ 220.09970832732506,
+ 223.48524999688379,
+ 126.32958331960253,
+ 206.00970834493637,
+ 213.32599999732338,
+ 208.03295832592994,
+ 209.46658332832158,
+ 198.47908333758824,
+ 194.94354166090488,
+ 228.46458334242925,
+ 226.32766666356474,
+ 212.85558331874199
+ ]
+ },
+ {
+ "markersPerBatch" : 50,
+ "maxMs" : 12.369374977424741,
+ "medianFractionOf8_33ms" : 1.1568950006039813,
+ "medianMs" : 9.6407916716998443,
+ "mode" : "layer",
+ "p95Ms" : 10.052041674498469,
+ "samplesMs" : [
+ 12.369374977424741,
+ 10.052041674498469,
+ 9.7516250098124146,
+ 9.9310000077821314,
+ 9.7759999916888773,
+ 9.856083313934505,
+ 9.6570416644681245,
+ 9.6815416764002293,
+ 9.7864999843295664,
+ 9.6245416789315641,
+ 9.2752083437517285,
+ 9.2114166764076799,
+ 9.4882916891947389,
+ 9.7860416863113642,
+ 9.2537083255592734,
+ 8.9335833326913416,
+ 9.1245416551828384,
+ 9.1412083420436829,
+ 9.3599166721105576,
+ 9.0492083400022238
+ ]
+ },
+ {
+ "markersPerBatch" : 50,
+ "maxMs" : 0.37379167042672634,
+ "medianFractionOf8_33ms" : 0.031797500560060143,
+ "medianMs" : 0.26497917133383453,
+ "mode" : "cached-image-assignment",
+ "p95Ms" : 0.32895835465751588,
+ "samplesMs" : [
+ 0.28437498258426785,
+ 0.26604166487231851,
+ 0.25112499133683741,
+ 0.24933333043009043,
+ 0.23437500931322575,
+ 0.26287499349564314,
+ 0.32895835465751588,
+ 0.28241664404049516,
+ 0.26558333775028586,
+ 0.26437500491738319,
+ 0.23966666776686907,
+ 0.24120835587382317,
+ 0.28570834547281265,
+ 0.32745834323577583,
+ 0.24891667999327183,
+ 0.29950001044198871,
+ 0.25487501989118755,
+ 0.2360833459533751,
+ 0.37379167042672634,
+ 0.32637498225085437
+ ]
+ },
+ {
+ "markersPerBatch" : 10,
+ "maxMs" : 12.572958337841555,
+ "medianFractionOf8_33ms" : 1.2303224980132654,
+ "medianMs" : 10.252687483443879,
+ "mode" : "layer-png-decode",
+ "p95Ms" : 11.983333330135792,
+ "samplesMs" : [
+ 11.462458351161331,
+ 9.9232500069774687,
+ 11.695416673319414,
+ 10.432083334308118,
+ 11.983333330135792,
+ 10.021416674135253,
+ 10.571958322543651,
+ 11.670791689539328,
+ 10.129499976756051,
+ 10.031541663920507,
+ 9.7410416638012975,
+ 9.6723333408590406,
+ 9.8885833285748959,
+ 9.613208327209577,
+ 9.4786666450090706,
+ 9.3967500142753124,
+ 10.375874990131706,
+ 12.572958337841555,
+ 10.693083342630416,
+ 11.034499999368563
+ ]
+ },
+ {
+ "markersPerBatch" : 10,
+ "maxMs" : 52.6136250118725,
+ "medianFractionOf8_33ms" : 5.6781574990600348,
+ "medianMs" : 47.317979158833623,
+ "mode" : "hierarchy",
+ "p95Ms" : 51.556958351284266,
+ "samplesMs" : [
+ 46.451916685327888,
+ 47.181000001728535,
+ 47.559833328705281,
+ 44.294624996837229,
+ 48.111791664268821,
+ 47.274541662773117,
+ 47.361416654894128,
+ 52.6136250118725,
+ 50.24237500037998,
+ 49.885666638147086,
+ 42.049583338666707,
+ 30.981375020928681,
+ 43.504125002073124,
+ 43.431041674921289,
+ 44.817041663918644,
+ 42.878625012235716,
+ 51.556958351284266,
+ 47.635291673941538,
+ 48.513624991755933,
+ 47.569749993272126
+ ]
+ },
+ {
+ "markersPerBatch" : 10,
+ "maxMs" : 5.2295416535343975,
+ "medianFractionOf8_33ms" : 0.41467500035651023,
+ "medianMs" : 3.455625002970919,
+ "mode" : "layer",
+ "p95Ms" : 4.9720833194442093,
+ "samplesMs" : [
+ 1.959958317456767,
+ 1.8483750172890723,
+ 2.1059583232272416,
+ 4.892541648587212,
+ 2.0489583257585764,
+ 2.1132083493284881,
+ 2.6380416529718786,
+ 2.0482499967329204,
+ 4.8830000159796327,
+ 4.3382083240430802,
+ 4.5502083376049995,
+ 2.0751666743308306,
+ 5.2295416535343975,
+ 2.0124999864492565,
+ 2.1206666715443134,
+ 4.9720833194442093,
+ 4.2732083529699594,
+ 4.6803749864920974,
+ 4.6600416826549917,
+ 4.5331250003073364
+ ]
+ },
+ {
+ "markersPerBatch" : 10,
+ "maxMs" : 0.28304164879955351,
+ "medianFractionOf8_33ms" : 0.024287498672492802,
+ "medianMs" : 0.20239582227077335,
+ "mode" : "cached-image-assignment",
+ "p95Ms" : 0.23837498156353831,
+ "samplesMs" : [
+ 0.18475000979378819,
+ 0.20595834939740598,
+ 0.20316665177233517,
+ 0.19662501290440559,
+ 0.28304164879955351,
+ 0.20395833416841924,
+ 0.20620832219719887,
+ 0.21675002062693238,
+ 0.16504165250808001,
+ 0.18674999591894448,
+ 0.17237500287592411,
+ 0.15262499800883234,
+ 0.18954166444018483,
+ 0.23791665444150567,
+ 0.19154165056534111,
+ 0.23837498156353831,
+ 0.21291666780598462,
+ 0.20554166985675693,
+ 0.20162499276921153,
+ 0.16241666162386537
+ ]
+ },
+ {
+ "markersPerBatch" : 1,
+ "maxMs" : 2.9903749818913639,
+ "medianFractionOf8_33ms" : 0.32850500196218491,
+ "medianMs" : 2.7375416830182076,
+ "mode" : "layer-png-decode",
+ "p95Ms" : 2.9489583394024521,
+ "samplesMs" : [
+ 2.8402500029187649,
+ 2.6730833342298865,
+ 2.7638750034384429,
+ 2.6369583501946181,
+ 2.9903749818913639,
+ 2.9489583394024521,
+ 2.9082499968353659,
+ 2.8331666835583746,
+ 2.6423750096000731,
+ 2.9049583245068789,
+ 2.6066666760016233,
+ 2.7087499911431223,
+ 2.7989166555926204,
+ 2.7372500044293702,
+ 2.7048750198446214,
+ 2.635041659232229,
+ 2.7849999896716326,
+ 2.7378333616070449,
+ 2.702750003663823,
+ 2.7028333279304206
+ ]
+ },
+ {
+ "markersPerBatch" : 1,
+ "maxMs" : 14.829749998170882,
+ "medianFractionOf8_33ms" : 1.1809099983656779,
+ "medianMs" : 9.8409166530473158,
+ "mode" : "hierarchy",
+ "p95Ms" : 13.835208344971761,
+ "samplesMs" : [
+ 9.9164583079982549,
+ 12.686874979408458,
+ 14.829749998170882,
+ 9.0939166548196226,
+ 12.708208319963887,
+ 10.458833334269002,
+ 13.835208344971761,
+ 8.5314583266153932,
+ 9.0882499935105443,
+ 12.397666665492579,
+ 9.7653749980963767,
+ 8.8355833431705832,
+ 11.439791647717357,
+ 9.1165416524745524,
+ 9.4801249797455966,
+ 8.415916672674939,
+ 10.77312498819083,
+ 9.0905000106431544,
+ 12.511958339018747,
+ 9.5862500020302832
+ ]
+ },
+ {
+ "markersPerBatch" : 1,
+ "maxMs" : 1.0177916556131095,
+ "medianFractionOf8_33ms" : 0.10469499975442885,
+ "medianMs" : 0.8724583312869072,
+ "mode" : "layer",
+ "p95Ms" : 1.0161666723433882,
+ "samplesMs" : [
+ 0.75674999970942736,
+ 0.96295832190662622,
+ 0.8920833352021873,
+ 0.72524999268352985,
+ 0.93599999672733247,
+ 0.86454168194904923,
+ 0.81195833627134562,
+ 0.89708334417082369,
+ 0.86841665324755013,
+ 0.84091667667962611,
+ 0.85920834681019187,
+ 0.92754166689701378,
+ 0.85029166075401008,
+ 0.88820833479985595,
+ 1.0161666723433882,
+ 1.0177916556131095,
+ 0.83062498015351593,
+ 0.9011249931063503,
+ 0.87650000932626426,
+ 0.84866667748428881
+ ]
+ },
+ {
+ "markersPerBatch" : 1,
+ "maxMs" : 0.12295832857489586,
+ "medianFractionOf8_33ms" : 0.0095749972388148308,
+ "medianMs" : 0.079791643656790257,
+ "mode" : "cached-image-assignment",
+ "p95Ms" : 0.10800000745803118,
+ "samplesMs" : [
+ 0.10800000745803118,
+ 0.066708336817100644,
+ 0.059375015553086996,
+ 0.10233334614895284,
+ 0.05370835424400866,
+ 0.074708339525386691,
+ 0.097583339083939791,
+ 0.076625001383945346,
+ 0.0791666388977319,
+ 0.061208353145048022,
+ 0.097083335276693106,
+ 0.12295832857489586,
+ 0.10325000039301813,
+ 0.097291660495102406,
+ 0.08879168308340013,
+ 0.069041678216308355,
+ 0.094583345344290137,
+ 0.075166666647419333,
+ 0.080416648415848613,
+ 0.077916658483445644
+ ]
+ }
+ ],
+ "reversedJobOrder" : true,
+ "sampleCount" : 20,
+ "scale" : 3,
+ "simulatorModel" : "iPhone18,2",
+ "sizePoints" : [
+ 96,
+ 48
+ ],
+ "timestamp" : "2026-09-11T10:05:50Z",
+ "warmupCount" : 3
+}
\ No newline at end of file
diff --git a/experiments/custom-markers/results/iphone-15-pro-run-1.json b/experiments/custom-markers/results/iphone-15-pro-run-1.json
new file mode 100644
index 0000000..cccd806
--- /dev/null
+++ b/experiments/custom-markers/results/iphone-15-pro-run-1.json
@@ -0,0 +1,615 @@
+{"raw":[
+{"kind":"marker-view-benchmark","provider":"apple","mode":"pins","count":10,"pass":0,"beforeBytes":336905376,"afterBytes":375096480,"intervalsMs":[9.90937500318978,8.335000005899929,8.334999991348013,8.335000005899929,16.332416664226912,8.672583324369043,19.611416675616056,13.728583333431743,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,129.97149999137037,11.723500007065013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,16.669999997247942,24.09054165764246,9.249458336853422,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.3676249923883,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929],"environmentBefore":{"os":"26.6","thermalState":1,"visibleMarkerViews":0,"lowPowerMode":false,"applicationActive":true,"mountedMarkerViews":0},"expectedMs":[8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929],"refreshRateHz":120,"durationMs":6011.981333329459,"environmentAfter":{"os":"26.6","mountedMarkerViews":0,"applicationActive":true,"lowPowerMode":false,"visibleMarkerViews":0,"thermalState":1}},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-static","count":10,"pass":0,"beforeBytes":325878968,"afterBytes":375637176,"expectedMs":[8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929],"refreshRateHz":120,"environmentAfter":{"thermalState":1,"applicationActive":true,"mountedMarkerViews":10,"os":"26.6","visibleMarkerViews":10,"lowPowerMode":false},"intervalsMs":[20.112124999286607,13.227874995209277,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.367666669073515,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929],"environmentBefore":{"thermalState":1,"applicationActive":true,"os":"26.6","mountedMarkerViews":10,"lowPowerMode":false,"visibleMarkerViews":10},"durationMs":6038.15791667148},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-transform","count":10,"pass":0,"beforeBytes":369657016,"afterBytes":384992464,"environmentBefore":{"lowPowerMode":false,"thermalState":1,"visibleMarkerViews":10,"os":"26.6","mountedMarkerViews":10,"applicationActive":true},"environmentAfter":{"lowPowerMode":false,"os":"26.6","visibleMarkerViews":10,"thermalState":1,"mountedMarkerViews":10,"applicationActive":true},"expectedMs":[8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929],"refreshRateHz":120,"durationMs":6037.807833330589,"intervalsMs":[25.90016667090822,7.4401666643098,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526]},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-layout","count":10,"pass":0,"beforeBytes":334873784,"afterBytes":383698104,"expectedMs":[8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013],"intervalsMs":[21.91208333533723,11.42824999988079,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.302333328174427,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.367708331206813,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526],"environmentAfter":{"os":"26.6","visibleMarkerViews":10,"mountedMarkerViews":10,"lowPowerMode":false,"thermalState":1,"applicationActive":true},"durationMs":6038.275958329905,"refreshRateHz":120,"environmentBefore":{"os":"26.6","visibleMarkerViews":10,"mountedMarkerViews":10,"lowPowerMode":false,"applicationActive":true,"thermalState":1}},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"pins","count":50,"pass":0,"beforeBytes":333857976,"afterBytes":383370424,"environmentAfter":{"lowPowerMode":false,"thermalState":1,"mountedMarkerViews":0,"applicationActive":true,"visibleMarkerViews":0,"os":"26.6"},"refreshRateHz":120,"durationMs":6009.300624995376,"intervalsMs":[19.48558332514949,13.854750010068528,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441],"expectedMs":[8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441],"environmentBefore":{"lowPowerMode":false,"thermalState":1,"mountedMarkerViews":0,"applicationActive":true,"visibleMarkerViews":0,"os":"26.6"}},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-static","count":50,"pass":0,"beforeBytes":342738128,"afterBytes":392529104,"refreshRateHz":120,"intervalsMs":[20.346666671684943,12.993333337362856,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.3676249923883,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013],"environmentBefore":{"thermalState":1,"applicationActive":true,"os":"26.6","mountedMarkerViews":50,"lowPowerMode":false,"visibleMarkerViews":50},"durationMs":6038.044958331739,"environmentAfter":{"thermalState":1,"lowPowerMode":false,"visibleMarkerViews":50,"mountedMarkerViews":50,"os":"26.6","applicationActive":true},"expectedMs":[8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013]},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-transform","count":50,"pass":0,"beforeBytes":383730896,"afterBytes":400213200,"environmentBefore":{"mountedMarkerViews":50,"os":"26.6","lowPowerMode":false,"applicationActive":true,"visibleMarkerViews":50,"thermalState":1},"environmentAfter":{"mountedMarkerViews":50,"os":"26.6","lowPowerMode":false,"applicationActive":true,"visibleMarkerViews":50,"thermalState":1},"durationMs":6038.759749993915,"intervalsMs":[16.670000011799857,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.367750007892027,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526],"expectedMs":[8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013],"refreshRateHz":120},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-layout","count":50,"pass":0,"beforeBytes":355615952,"afterBytes":409257168,"refreshRateHz":120,"intervalsMs":[8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.302333328174427,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013],"environmentAfter":{"visibleMarkerViews":50,"os":"26.6","applicationActive":true,"lowPowerMode":false,"thermalState":1,"mountedMarkerViews":50},"expectedMs":[8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013],"environmentBefore":{"visibleMarkerViews":50,"os":"26.6","applicationActive":true,"lowPowerMode":false,"thermalState":1,"mountedMarkerViews":50},"durationMs":6035.0469583354425},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"pins","count":200,"pass":0,"beforeBytes":363611344,"afterBytes":416253136,"expectedMs":[8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929],"durationMs":6007.098041663994,"environmentAfter":{"lowPowerMode":false,"os":"26.6","applicationActive":true,"visibleMarkerViews":0,"mountedMarkerViews":0,"thermalState":1},"environmentBefore":{"lowPowerMode":false,"os":"26.6","applicationActive":true,"visibleMarkerViews":0,"mountedMarkerViews":0,"thermalState":1},"intervalsMs":[21.70345833292231,11.63654167612549,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.367708331206813,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526],"refreshRateHz":120},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-static","count":200,"pass":0,"beforeBytes":411600104,"afterBytes":455296256,"refreshRateHz":120,"intervalsMs":[21.11591666471213,12.224416670505889,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.302333328174427,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929],"environmentAfter":{"applicationActive":true,"visibleMarkerViews":200,"os":"26.6","lowPowerMode":false,"thermalState":1,"mountedMarkerViews":200},"expectedMs":[8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929],"durationMs":6035.197416669689,"environmentBefore":{"applicationActive":true,"visibleMarkerViews":200,"os":"26.6","lowPowerMode":false,"mountedMarkerViews":200,"thermalState":1}},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-transform","count":200,"pass":0,"beforeBytes":454264064,"afterBytes":469517568,"expectedMs":[8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013],"environmentAfter":{"applicationActive":true,"lowPowerMode":false,"visibleMarkerViews":200,"thermalState":1,"os":"26.6","mountedMarkerViews":200},"environmentBefore":{"applicationActive":true,"visibleMarkerViews":200,"lowPowerMode":false,"thermalState":1,"os":"26.6","mountedMarkerViews":200},"durationMs":6039.809875001083,"refreshRateHz":120,"intervalsMs":[8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.367541653569788,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.367708331206813,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526]},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-layout","count":200,"pass":0,"beforeBytes":424297728,"afterBytes":476366104,"intervalsMs":[9.141083326539956,8.335083330166526,16.943750000791624,8.06150000425987,8.335083330166526,19.976499999756925,13.363833335461095,8.335083330166526,18.83500000985805,14.50533332535997,8.335083330166526,8.335083344718441,19.340291662956588,14.000041657709517,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,18.99770832096692,24.765500013018027,14.58237499173265,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,16.007291662390344,8.99795834266115,8.335083330166526,8.335083330166526,8.335083330166526,16.003791664843448,9.001458340208046,8.335083330166526,8.335083330166526,25.005250005051494,8.335083330166526,25.005250005051494,8.335083330166526,19.552083336748183,25.358124999911524,24.584708327893168,24.900250005885027,25.811416664510034,23.595208331244066,22.89987499534618,18.754875010927208,25.25358332786709,25.018000000272878,30.994541666586883,18.8860416674288,25.52508332883008,24.41437500237953,26.07904166507069,30.12170833244454,19.15704166458454,14.18329167063348,24.486583337420598,17.18883332796395,18.78633334126789,31.224166668835096,25.00524999049958,25.005250005051494,25.00524999049958,25.005250005051494,25.005250005051494,21.486999990884215,20.18841667450033,8.335083330166526,17.146875004982576,7.858375000068918,8.335083330166526,8.335083330166526,25.005250005051494,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,17.484208336099982,7.521041668951511,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,16.888333339011297,8.116916666040197,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,25.005250005051494,8.335083330166526,8.335083330166526,16.670166660333052,8.335083344718441,8.335083330166526,8.335083330166526,17.5207916618092,7.484458343242295,21.852916659554467,11.487416675663553,15.761916656629182,9.243333333870396,19.794208332314156,30.21629167778883,20.516791657428257,23.509375008870848,22.023749988875352,21.49166667368263,20.814499992411584,20.426625007530674,21.24879165785387,19.56283334584441,24.58891665446572,22.74612500332296,20.98583334009163,20.60216666723136,20.380874993861653,21.987000000081025,22.099124995293096,19.411916669923812,20.681666675955057,19.34416666335892,21.84491665684618,20.822208345634863,19.427999999606982,22.247416665777564,19.17129165667575,25.348250012029894,27.428874993347563,23.267833326826803,21.474916677107103,8.335083330166526,16.670166660333052,8.335083344718441,8.335083330166526,15.830749995075166,9.174500009976327,8.335083330166526,8.335083330166526,25.005250005051494,8.335083330166526,8.335083330166526,8.335083330166526,17.032291667419486,7.972958337632008,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,25.005250005051494,18.21116666542366,6.794083339627832,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,16.670166660333052,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,16.670166660333052,8.335083344718441,8.335083330166526,8.335083330166526,18.885958328610286,14.454375006607734,16.65754166606348,8.347708324436098,8.335083344718441,16.494499999680556,8.510749990819022,18.968291667988524,22.707124997396022,20.601666677976027,25.49216666375287,28.92191665887367,18.96004167792853,22.207958332728595,21.84208332619164,20.211750001180917,20.82804167002905,12.641291657928377,26.92416666832287,20.76666666835081,18.701958339079283,19.70058333245106,22.262708327616565,19.46904166834429,25.719708341057412,29.826999991200864,25.005250005051494,25.005250005051494,25.00524999049958,25.005250005051494,18.925291660707444,14.415041674510576,16.670166660333052,8.335083330166526,8.335083344718441,21.074916658108123,12.265416662557982,16.059708344982937,8.945541660068557,19.53204166784417,13.808291667373851,25.005250005051494,8.335083330166526,19.58470833778847,13.75562499742955,8.335083330166526,16.21654166956432,8.788708335487172,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,19.29516666859854,14.04516666661948,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,16.670166660333052,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,25.00524999049958,8.335083330166526,8.335083344718441,16.670166660333052,8.335083330166526,8.335083344718441,8.335083330166526,19.722666664165445,13.617666671052575,25.00524999049958,21.9268750079209,19.748541657463647,8.335083344718441,16.670166660333052,19.16258333949372,21.586583330645226,25.931500000297092,19.690583329065703,21.984833336318843,19.188583333743736,26.374624998425134,20.29029166442342,16.6085416713031,20.185208326438442,25.752583329449408,26.788541668793187,22.375250002369285,22.847333340905607,23.01074999559205,18.775416669086553,20.90324999880977,19.525291660102084,22.875333335832693,27.902333342353813,21.83912499458529,19.836291670799255,19.564249989343807,22.156999999424443,21.084916676045395,21.19187499920372,21.267666670610197,11.42545833135955,19.625958331744187,13.714375003473833,18.855624992283992,14.484708328382112,8.335083344718441,21.08491666149348,12.255416659172624,8.335083344718441,8.335083330166526,20.08416666649282,13.2561666687252,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,21.21929166605696,20.456124999327585,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,16.053875006036833,8.95137499901466,8.335083330166526,8.335083330166526,8.335083344718441,18.866499987780116,14.473833332885988,8.335083344718441,19.798833323875442,13.541500011342578,18.911541657871567,14.428791662794538,20.31158334284555,26.29154166788794,24.07166665943805,24.967958335764706,27.180583332665265,21.72499999869615,21.233041668892838,20.60999999230262,25.976041666581295,24.432500009424984,25.970541668357328,24.353666667593643,26.35641666711308,23.100666658137925,24.901916665839963,24.10295834124554,25.723624989041127,24.821541679557413,25.619124993681908,30.019541663932614,20.18391666933894,21.491499996045604,18.779916674247943,25.186583327013068,25.837416673311964,24.23224999802187,22.654999993392266,19.200499998987652,30.810000011115335],"environmentAfter":{"thermalState":1,"visibleMarkerViews":200,"mountedMarkerViews":200,"applicationActive":true,"lowPowerMode":false,"os":"26.6"},"refreshRateHz":120,"durationMs":6063.126499997452,"expectedMs":[8.334999991348013,8.335083330166526,8.335083344718441,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083344718441,8.335083344718441,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929],"environmentBefore":{"mountedMarkerViews":200,"visibleMarkerViews":200,"applicationActive":true,"thermalState":1,"lowPowerMode":false,"os":"26.6"}},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-layout","count":10,"pass":1,"beforeBytes":403899648,"afterBytes":456492288,"expectedMs":[8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929],"durationMs":6079.391166669666,"environmentBefore":{"lowPowerMode":false,"applicationActive":true,"mountedMarkerViews":10,"thermalState":1,"visibleMarkerViews":10,"os":"26.6"},"environmentAfter":{"lowPowerMode":false,"applicationActive":true,"mountedMarkerViews":10,"thermalState":1,"visibleMarkerViews":10,"os":"26.6"},"intervalsMs":[19.543666669051163,13.79633332544472,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.367750007892027,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,39.65762500592973,10.352874989621341,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526],"refreshRateHz":120},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-transform","count":10,"pass":1,"beforeBytes":403965184,"afterBytes":456246552,"environmentAfter":{"lowPowerMode":false,"visibleMarkerViews":10,"thermalState":2,"applicationActive":true,"os":"26.6","mountedMarkerViews":10},"refreshRateHz":120,"intervalsMs":[8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.302375004859641,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929],"durationMs":6073.151583332219,"expectedMs":[8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526],"environmentBefore":{"os":"26.6","lowPowerMode":false,"thermalState":2,"applicationActive":true,"visibleMarkerViews":10,"mountedMarkerViews":10}},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-static","count":10,"pass":1,"beforeBytes":441713920,"afterBytes":456279296,"expectedMs":[8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013],"environmentBefore":{"os":"26.6","applicationActive":true,"thermalState":2,"lowPowerMode":false,"mountedMarkerViews":10,"visibleMarkerViews":10},"durationMs":6071.950708326767,"environmentAfter":{"os":"26.6","thermalState":2,"mountedMarkerViews":10,"lowPowerMode":false,"applicationActive":true,"visibleMarkerViews":10},"intervalsMs":[25.004999988595955,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.367541668121703,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013],"refreshRateHz":120},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"pins","count":10,"pass":1,"beforeBytes":403358976,"afterBytes":455263512,"expectedMs":[8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013],"environmentBefore":{"mountedMarkerViews":0,"os":"26.6","lowPowerMode":false,"applicationActive":true,"visibleMarkerViews":0,"thermalState":2},"environmentAfter":{"mountedMarkerViews":0,"os":"26.6","lowPowerMode":false,"applicationActive":true,"visibleMarkerViews":0,"thermalState":2},"durationMs":6009.568541659974,"refreshRateHz":120,"intervalsMs":[20.146333336015232,13.193666673032567,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.367749993340112,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526]},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-layout","count":50,"pass":1,"beforeBytes":397509888,"afterBytes":447087872,"durationMs":6068.744249991141,"environmentBefore":{"lowPowerMode":false,"thermalState":2,"os":"26.6","visibleMarkerViews":50,"applicationActive":true,"mountedMarkerViews":50},"intervalsMs":[20.26283333543688,13.07749999978114,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,16.432541655376554,8.572708335123025,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.302375004859641,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929],"environmentAfter":{"os":"26.6","mountedMarkerViews":50,"visibleMarkerViews":50,"lowPowerMode":false,"applicationActive":true,"thermalState":2},"refreshRateHz":120,"expectedMs":[8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929]},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-transform","count":50,"pass":1,"beforeBytes":404899072,"afterBytes":455132440,"intervalsMs":[8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.367541668121703,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.367708331206813,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526],"durationMs":6069.204041661578,"refreshRateHz":120,"environmentBefore":{"visibleMarkerViews":50,"lowPowerMode":false,"os":"26.6","applicationActive":true,"thermalState":2,"mountedMarkerViews":50},"environmentAfter":{"lowPowerMode":false,"mountedMarkerViews":50,"visibleMarkerViews":50,"applicationActive":true,"thermalState":2,"os":"26.6"},"expectedMs":[8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013]},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-static","count":50,"pass":1,"beforeBytes":403490048,"afterBytes":455918848,"durationMs":6072.2374166798545,"environmentAfter":{"lowPowerMode":false,"thermalState":2,"visibleMarkerViews":50,"applicationActive":true,"mountedMarkerViews":50,"os":"26.6"},"refreshRateHz":120,"expectedMs":[8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929],"environmentBefore":{"lowPowerMode":false,"thermalState":2,"visibleMarkerViews":50,"applicationActive":true,"mountedMarkerViews":50,"os":"26.6"},"intervalsMs":[20.048041667905636,13.292291667312384,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441]},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"pins","count":50,"pass":1,"beforeBytes":400016640,"afterBytes":452330776,"environmentAfter":{"lowPowerMode":false,"thermalState":2,"mountedMarkerViews":0,"applicationActive":true,"visibleMarkerViews":0,"os":"26.6"},"refreshRateHz":120,"durationMs":6008.552958330256,"intervalsMs":[21.179166666115634,12.16083332838025,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.367833332158625,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526],"expectedMs":[8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929],"environmentBefore":{"lowPowerMode":false,"thermalState":2,"mountedMarkerViews":0,"applicationActive":true,"visibleMarkerViews":0,"os":"26.6"}},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-layout","count":200,"pass":1,"beforeBytes":410387712,"afterBytes":460784896,"environmentBefore":{"visibleMarkerViews":200,"thermalState":2,"lowPowerMode":false,"applicationActive":true,"mountedMarkerViews":200,"os":"26.6"},"durationMs":6087.372208334273,"intervalsMs":[8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,25.00524999049958,18.783916675602086,14.556416659615934,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,17.217083339346573,7.788166665704921,8.335083330166526,16.777416662080213,8.22783334297128,8.335083330166526,8.335083330166526,8.335083330166526,20.14262499869801,13.197708336520009,25.005250005051494,25.005250005051494,17.058666664524935,18.84874999814201,22.9890833288664,15.537416664301418,8.916916674934328,17.491499995230697,19.26133333472535,22.018666670192033,15.779083332745358,19.33870832726825,14.466791675658897,24.470416654367,17.205000011017546,25.00524999049958,16.67791667568963,16.66241665952839,18.928166668047197,14.412166667170823,25.517999994917773,19.40808333165478,21.698291675420478,16.72645832877606,19.486291668727063,13.854041666490957,19.25091666635126,14.089416668866761,24.413499995716847,8.926833339501172,8.335083330166526,25.61720833182335,7.723125003394671,25.005250005051494,25.00524999049958,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,16.952625010162592,8.052624994888902,8.335083330166526,8.335083344718441,8.335083330166526,16.71808332321234,8.287166667287238,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,25.005250005051494,8.335083330166526,25.005250005051494,18.78579166077543,14.55454167444259,16.47200000297744,16.943499998888,8.259916663519107,17.64841667318251,20.216624994645827,20.480541672441177,17.97733332205098,15.593083342537284,18.73212499776855,21.802666669827886,21.04049999616109,24.115708336466923,22.434999991673976,19.67812499788124,30.332375012221746,20.742333319503814,23.425458333804272,22.119291679700837,22.42608332016971,19.642916668090038,19.668166671181098,13.672166664036922,27.318874999764375,26.902166675426997,20.794708325411193,20.90945834061131,20.765958324773237,19.9222916708095,13.41804166440852,8.335083330166526,25.72129167674575,7.61904165847227,20.839833334321156,12.500500000896864,19.885208341293037,13.455124993924983,19.54824999847915,13.79208333673887,20.369416670291685,12.970916664926335,8.335083330166526,8.335083330166526,25.005250005051494,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,25.005250005051494,20.76758333714679,12.572749998071231,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.302375004859641,15.68595833668951,9.31904166645836,8.334999991348013,8.335000005899929,8.334999991348013,16.4878333453089,8.51716665783897,8.335000005899929,8.334999991348013,19.48958334105555,13.85041666799225,25.00500000314787,19.939291654736735,13.400708339759149,25.00500000314787,20.328124999650754,24.658374997670762,21.378541670856066,20.453499993891455,23.91308333608322,23.022666660835966,20.453000004636124,20.666583339334466,21.55645831953734,20.27966667083092,19.52812500530854,25.75570832414087,29.731166679994203,19.82858333212789,21.653999996487983,21.077500001410954,20.62008333450649,20.834583323448896,20.046333345817402,25.968916655983776,19.24545833026059,22.151958342874423,20.604083329089917,24.146583338733763,21.224541662377305,19.92962500662543,24.99879166134633,25.237875001039356,14.166083332384005,25.00500000314787,19.09200000227429,14.247999992221594,8.335000005899929,25.004999988595955,8.335000005899929,8.335000005899929,8.334999991348013,19.76804167497903,13.571958334068768,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,16.669999997247942,8.335000005899929,8.334999991348013,8.335000005899929,25.00500000314787,8.334999991348013,19.267166673671454,14.072833335376345,18.91520833305549,25.908583324053325,24.839458346832544,24.305291663040407,22.18529165838845,21.064041677163914,23.54195833322592,22.61016666307114,18.78549999673851,25.783791672438383,25.57608332426753,24.593458336312324,21.457291673868895,20.466333327931352,24.772791672148742,25.105416658334434,25.418000004719943,25.075375000596978,25.2291249926202,21.845916664460674,21.397875010734424,19.520666668540798,21.420208329800516,20.820041667320766,21.171500004129484,20.364166659419425,16.28145833092276,17.48641667654738,20.773583324626088,20.55708333500661,7.862916667363606,17.508291668491438,7.496708334656432,8.334999991348013,23.349916678853333,9.990083330194466,8.334999991348013,19.800458336248994,13.539541672798805,8.334999991348013,8.335000005899929,20.608624996384606,12.731374998111278,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,21.44850000331644,21.172499997192062,15.723999997135252,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,25.00500000314787,8.335000005899929,8.334999991348013,8.335000005899929,19.082708327914588,14.257291666581295,8.335000005899929,22.016416667611338,11.323583326884545,22.12195833271835,11.218041661777534,21.92250000371132,22.00995833845809,28.529166665975936,25.433166665607132,24.893916663131677,24.374416665523313,27.871875005075708,23.17912499711383,26.830874994629994,22.7148750127526,27.29512499354314,22.134041661047377,27.875958345248364,22.13808332453482,27.871916667209007,22.505166663904674,27.504833342391066,22.23299999604933,27.776999995694496,22.832333343103528,27.177666663192213,24.531874994863756,19.283291665487923,14.529833337292075,22.357499998179264,27.652500008116476,22.700083325617015,19.561749999411404,23.396500007947907,9.35666666191537,21.583666661172174,11.75633333332371,8.335000005899929,21.905625006183982,11.434374988311902,8.335000005899929,8.334999991348013,21.463333338033408,11.87666667101439,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929],"refreshRateHz":120,"expectedMs":[8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335000005899929,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083344718441,8.335083344718441,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929],"environmentAfter":{"visibleMarkerViews":200,"thermalState":2,"lowPowerMode":false,"applicationActive":true,"mountedMarkerViews":200,"os":"26.6"}},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-transform","count":200,"pass":1,"beforeBytes":403195136,"afterBytes":457508096,"intervalsMs":[8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,16.670166660333052,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,15.867666661506519,9.137583343544975,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,16.670166660333052,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,16.670166660333052,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,16.670166660333052,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,16.670166660333052,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,15.720208335551433,9.28504166950006,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526],"refreshRateHz":120,"durationMs":6071.323041673168,"expectedMs":[8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526],"environmentBefore":{"applicationActive":true,"os":"26.6","visibleMarkerViews":200,"thermalState":2,"lowPowerMode":false,"mountedMarkerViews":200},"environmentAfter":{"applicationActive":true,"os":"26.6","visibleMarkerViews":200,"thermalState":2,"lowPowerMode":false,"mountedMarkerViews":200}},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-static","count":200,"pass":1,"beforeBytes":452150528,"afterBytes":466208024,"environmentAfter":{"visibleMarkerViews":200,"os":"26.6","applicationActive":true,"thermalState":2,"lowPowerMode":false,"mountedMarkerViews":200},"refreshRateHz":120,"intervalsMs":[8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.367541668121703,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013],"durationMs":6069.934958330123,"expectedMs":[8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526],"environmentBefore":{"lowPowerMode":false,"visibleMarkerViews":200,"os":"26.6","applicationActive":true,"thermalState":2,"mountedMarkerViews":200}},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"pins","count":200,"pass":1,"beforeBytes":402474264,"afterBytes":454214936,"environmentAfter":{"lowPowerMode":false,"mountedMarkerViews":0,"os":"26.6","applicationActive":true,"visibleMarkerViews":0,"thermalState":2},"environmentBefore":{"lowPowerMode":false,"mountedMarkerViews":0,"os":"26.6","applicationActive":true,"visibleMarkerViews":0,"thermalState":2},"durationMs":6008.062833323493,"intervalsMs":[8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,16.670000011799857,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.367541668121703,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013],"expectedMs":[8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013],"refreshRateHz":120},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"pins","count":10,"pass":2,"beforeBytes":401196288,"afterBytes":453051672,"environmentAfter":{"applicationActive":true,"thermalState":2,"os":"26.6","mountedMarkerViews":0,"lowPowerMode":false,"visibleMarkerViews":0},"expectedMs":[8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526],"refreshRateHz":120,"intervalsMs":[15.93045833578799,9.074541667359881,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.367583330255002,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.367583330255002,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929],"durationMs":6007.8882916714065,"environmentBefore":{"os":"26.6","applicationActive":true,"thermalState":2,"mountedMarkerViews":0,"lowPowerMode":false,"visibleMarkerViews":0}},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-static","count":10,"pass":2,"beforeBytes":400999704,"afterBytes":453477656,"expectedMs":[8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929],"refreshRateHz":120,"durationMs":6071.913541672984,"intervalsMs":[8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.367708331206813,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441],"environmentAfter":{"applicationActive":true,"lowPowerMode":false,"os":"26.6","mountedMarkerViews":10,"thermalState":2,"visibleMarkerViews":10},"environmentBefore":{"applicationActive":true,"thermalState":2,"os":"26.6","mountedMarkerViews":10,"visibleMarkerViews":10,"lowPowerMode":false}},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-transform","count":10,"pass":2,"beforeBytes":434832640,"afterBytes":450086168,"refreshRateHz":120,"durationMs":6070.85137499962,"environmentBefore":{"mountedMarkerViews":10,"applicationActive":true,"os":"26.6","lowPowerMode":false,"visibleMarkerViews":10,"thermalState":2},"environmentAfter":{"mountedMarkerViews":10,"lowPowerMode":false,"os":"26.6","visibleMarkerViews":10,"applicationActive":true,"thermalState":2},"intervalsMs":[16.52016666776035,8.485083337291144,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.302374990307726,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013],"expectedMs":[8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013]},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-layout","count":10,"pass":2,"beforeBytes":397247768,"afterBytes":445220120,"expectedMs":[8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929],"refreshRateHz":120,"durationMs":6069.226458334015,"intervalsMs":[8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.3676249923883,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929],"environmentAfter":{"applicationActive":true,"mountedMarkerViews":10,"os":"26.6","thermalState":2,"visibleMarkerViews":10,"lowPowerMode":false},"environmentBefore":{"applicationActive":true,"visibleMarkerViews":10,"os":"26.6","thermalState":2,"mountedMarkerViews":10,"lowPowerMode":false}},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"pins","count":50,"pass":2,"beforeBytes":391234816,"afterBytes":443745560,"expectedMs":[8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013],"durationMs":6009.1737499897135,"intervalsMs":[8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.367583344806917,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.367583344806917,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013],"environmentBefore":{"applicationActive":true,"lowPowerMode":false,"mountedMarkerViews":0,"os":"26.6","visibleMarkerViews":0,"thermalState":2},"refreshRateHz":120,"environmentAfter":{"applicationActive":true,"lowPowerMode":false,"mountedMarkerViews":0,"os":"26.6","thermalState":2,"visibleMarkerViews":0}},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-static","count":50,"pass":2,"beforeBytes":394298648,"afterBytes":446727448,"intervalsMs":[16.460541664855555,8.5444583237404,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.367541668121703,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,16.669999997247942,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.367749993340112,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526],"environmentAfter":{"applicationActive":true,"thermalState":2,"visibleMarkerViews":50,"lowPowerMode":false,"mountedMarkerViews":50,"os":"26.6"},"environmentBefore":{"applicationActive":true,"thermalState":2,"visibleMarkerViews":50,"lowPowerMode":false,"mountedMarkerViews":50,"os":"26.6"},"durationMs":6072.0065833302215,"expectedMs":[8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013],"refreshRateHz":120},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-transform","count":50,"pass":2,"beforeBytes":393856256,"afterBytes":446350616,"intervalsMs":[8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441],"refreshRateHz":120,"environmentAfter":{"applicationActive":true,"visibleMarkerViews":50,"os":"26.6","mountedMarkerViews":50,"thermalState":2,"lowPowerMode":false},"expectedMs":[8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929],"durationMs":6068.193083337974,"environmentBefore":{"applicationActive":true,"visibleMarkerViews":50,"os":"26.6","mountedMarkerViews":50,"thermalState":2,"lowPowerMode":false}},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-layout","count":50,"pass":2,"beforeBytes":431654168,"afterBytes":446514456,"environmentAfter":{"lowPowerMode":false,"mountedMarkerViews":50,"visibleMarkerViews":50,"applicationActive":true,"os":"26.6","thermalState":2},"intervalsMs":[8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.3676249923883,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013],"expectedMs":[8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013],"refreshRateHz":120,"environmentBefore":{"lowPowerMode":false,"mountedMarkerViews":50,"visibleMarkerViews":50,"thermalState":2,"os":"26.6","applicationActive":true},"durationMs":6069.399666666868},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"pins","count":200,"pass":2,"beforeBytes":390481152,"afterBytes":442631448,"expectedMs":[8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013],"durationMs":6007.044958329061,"environmentBefore":{"lowPowerMode":false,"os":"26.6","thermalState":2,"mountedMarkerViews":0,"visibleMarkerViews":0,"applicationActive":true},"environmentAfter":{"os":"26.6","applicationActive":true,"lowPowerMode":false,"visibleMarkerViews":0,"mountedMarkerViews":0,"thermalState":2},"intervalsMs":[19.977791656856425,13.362208337639458,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.3676249923883,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.367583330255002,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013],"refreshRateHz":120},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-static","count":200,"pass":2,"beforeBytes":398755096,"afterBytes":449660184,"refreshRateHz":120,"intervalsMs":[19.05854165670462,14.281458337791264,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.3676249923883,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.367708331206813,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526],"environmentAfter":{"applicationActive":true,"mountedMarkerViews":200,"os":"26.6","thermalState":2,"visibleMarkerViews":200,"lowPowerMode":false},"durationMs":6067.94479166274,"environmentBefore":{"visibleMarkerViews":200,"applicationActive":true,"os":"26.6","thermalState":2,"mountedMarkerViews":200,"lowPowerMode":false},"expectedMs":[8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013]},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-transform","count":200,"pass":2,"beforeBytes":428541208,"afterBytes":458147096,"durationMs":6067.979375002324,"intervalsMs":[8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,16.670166674884968,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,17.21995833213441,7.785291672917083,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,16.407041664933786,8.598208340117708,8.335083330166526,16.036708329920657,8.968541675130837,8.335083330166526,16.221666664932854,8.78358334011864,16.56683332112152,8.438416669378057,16.670166674884968,16.670166660333052,16.670166660333052,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,16.670166660333052,17.668041662545875,15.977208342519589,8.030166660319082,8.335083344718441,15.743999989354052,9.261250001145527,16.670166674884968,8.335083330166526,16.670166660333052,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,16.670166674884968,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,16.670166674884968,18.064541669446044,17.72112499747891,30.895000003511086,25.00524999049958,16.670166674884968,8.335083330166526,16.934375002165325,20.772291667526588,12.30383332585916,25.005250005051494,16.157749996636994,8.8475000084145,17.051958333468065,24.62345833191648,8.335083330166526,16.670166660333052,19.0534583380213,30.957041672081687,25.00524999049958,22.403291673981585,10.937041661236435,19.33741667016875,14.00291666504927,21.41450000635814,11.92583332885988,19.052291667321697,14.288041667896323,19.93699999002274,13.403333345195279,25.00524999049958,23.513833337347023,9.826499997870997,25.005250005051494,28.187416668515652,30.093458321061917,27.464333339594305,31.629333330783993,23.376124998321757,9.280833342927508,20.560499993734993,12.779833341483027,21.100124999065883,12.240208321600221,20.191375006106682,13.148958329111338,20.694166669272818,12.646166665945202,21.105666673975065,12.234666661242954,19.240333334892057,14.100000000325963,19.89924999361392,13.441083341604099,22.08924999285955,11.25108334235847,22.58229165454395,10.758041680674069,22.55779165716376,10.782541663502343,20.389500001328997,12.950833333889022,22.952708342927508,10.387624992290512,23.354125005425885,9.986208329792134,21.871291668503545,11.469041666714475,21.556416657404043,11.783916677813977,21.67824999196455,11.662083343253471,20.578499999828637,12.761833320837468,21.57370833447203,11.76662500074599,22.66420834348537,10.67612499173265,21.728958337916993,11.611374997301027,22.635125002125278,10.705208333092742,21.01441666309256,12.325916672125459,25.03062499454245,23.35341667640023,9.96154165477492,19.56429166602902,24.628666666103527,14.152625008136965,22.70416666578967,10.636166669428349,22.04587499727495,11.29445833794307,22.178833329235204,11.161499991430901,19.178833346813917,14.161499988404103,25.005250005051494,18.935708329081535,31.074791666469537,19.400166667765006,30.61033334233798,18.80262499616947,25.35866666585207,23.446624996722676,20.03800000238698,12.375083329970948,16.62441667576786,8.380833329283632,25.005250005051494,20.67029166209977,24.594624992460012,13.080666671157815,19.509374993504025,13.830958341713995,16.670166660333052,8.335083344718441,16.22254165704362,8.782708333455957,15.889083340880461,9.116166664171033,16.269541665678844,8.73570833937265,16.058416658779606,8.946833331719972,17.092374997446314,24.583041667938232,8.335083330166526,25.005250005051494,25.005250005051494,20.076458327821456,29.934041667729616,18.75920833845157,31.2512916570995,25.005250005051494,19.02716666518245,14.31316667003557,19.50333332933951,13.837000005878508,17.404833328328095,7.600416662171483,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,16.670166674884968,16.670166660333052,15.92012500623241,9.085124998819083,25.005250005051494,16.661083325743675,8.344166664755903,8.335083330166526,23.001541674602777,10.338791660615243,16.670166674884968,16.670166660333052,16.670166674884968,16.396458333474584,8.608791657024994,16.52933334116824,8.475916663883254,16.419708335888572,8.585541669162922,16.00599999073893,8.99924999976065,25.005250005051494,8.335083330166526,19.472250001854263,13.868083333363757,20.598833332769573,21.076583332614973,8.335083330166526],"environmentBefore":{"os":"26.6","mountedMarkerViews":200,"applicationActive":true,"lowPowerMode":false,"visibleMarkerViews":200,"thermalState":2},"refreshRateHz":120,"expectedMs":[8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083344718441,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526],"environmentAfter":{"os":"26.6","mountedMarkerViews":200,"applicationActive":true,"visibleMarkerViews":200,"lowPowerMode":false,"thermalState":2}},
+{"kind":"marker-view-benchmark","provider":"apple","mode":"live-layout","count":200,"pass":2,"beforeBytes":457835776,"afterBytes":467420416,"expectedMs":[8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929],"intervalsMs":[30.617083320976235,30.36604166845791,34.52174999983981,32.78658333874773,33.03462499752641,36.46425000624731,10.607041665934958,37.38158332998864,12.628416661755182,34.28383334539831,7.391166654997505,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,16.670000011799857,8.334999991348013,8.335000005899929,16.669999997247942,30.117083340883255,33.97783332911786,10.920083324890584,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,17.629458336159587,7.375541666988283,29.995333330589347,11.679666669806466,17.298958337050863,32.35229165875353,17.02875000773929,30.580374994315207,33.278458344284445,35.23091666284017,33.4607916593086,31.804500002181157,32.0613750081975,35.92824999941513,33.739583333954215,32.37049999006558,33.477166667580605,32.68216666765511,38.06350000377279,38.402874997700565,32.807625000714324,32.731208339100704,34.436791655025445,32.51954166626092,35.29529167280998,49.594083335250616,36.145041667623445,36.483583331573755,32.92262500326615,32.76974998880178,11.709000013070181,8.334999991348013,32.73929166607559,18.051541672321036,7.55416665924713,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,17.440958341467194,7.564041661680676,8.335000005899929,25.004999988595955,8.335000005899929,25.00500000314787,8.334999991348013,20.849333333899267,12.490666675148532,16.577208327362314,8.427791675785556,16.38049999019131,8.624499998404644,44.29337500187103,43.68350000004284,43.13816667126957,42.891374992905185,44.3187916680472,45.10691667383071,41.76054165873211,44.746958345058374,40.717249998124316,41.80974999326281,45.28291667520534,47.095916655962355,41.983541668741964,46.05400000582449,45.94816666212864,38.81341667147353,43.5824583255453,41.92025000520516,40.53879166895058,39.35620833362918,39.89458332944196,41.49237500678282,21.6811666614376,9.084583332878537,8.335000005899929,21.258416658383794,12.08158333611209,15.792749996762723,9.212250006385148,47.31154166802298,42.92937499121763,17.918750003445894,8.530333332601003,17.702750003081746,7.302250000066124,50.009999991743825,22.295375005342066,11.044625003705733,41.59812499710824,45.10179166391026,56.12449999898672,52.34175000805408,52.68479166261386,49.36308333708439,47.120958333835006,14.06999999016989,37.486583343707025,51.16470833308995,49.15441665798426,54.064291674876586,46.67062500084285,47.14291666459758,48.20262499561068,44.53108333109412,51.191874998039566,53.8208750076592,44.380124993040226,30.63487500185147,16.669999997247942,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,16.669999997247942,8.335000005899929,8.334999991348013,16.609791666269302,8.395208336878568,16.37749999645166,8.62750000669621,16.15450000099372,8.850499987602234,16.670000011799857,8.334999991348013,16.30233332980424,8.702666673343629,37.97908333945088,28.7009166640928,35.6247083254857,56.06029166665394,44.11929167690687,55.9007083211327,41.35537501133513,40.77066665922757,43.531375005841255,40.349125003558584,39.78945832932368,38.99841666861903,39.66650000074878,37.67941666592378,52.967416660976596,44.289333338383585,47.39566666830797,38.89208332111593,45.052583343931474,49.41533332748804,50.01000000629574,16.620833324850537,8.384166663745418,37.233875002129935,21.45300000847783,7.993124992935918,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,42.60658334533218,39.50445832742844,9.573958333930932,8.335000005899929,16.669999997247942,16.669999997247942,8.335000005899929,8.334999991348013,38.0390000063926,19.65012498840224,8.990875008748844,41.67500000039581,41.39379166008439,40.76916667690966,43.60383332823403,40.5003750056494,41.026499995496124,37.701208333601244,44.50729166273959,42.97650000080466,39.949625002918765,42.29941665835213,43.56729167921003,38.57683332171291,45.62345833983272],"environmentAfter":{"lowPowerMode":false,"mountedMarkerViews":200,"visibleMarkerViews":200,"applicationActive":true,"os":"26.6","thermalState":2},"refreshRateHz":120,"environmentBefore":{"lowPowerMode":false,"mountedMarkerViews":200,"applicationActive":true,"visibleMarkerViews":200,"thermalState":2,"os":"26.6"},"durationMs":6061.183249999885}
+],"summary":[
+ {
+ "mode": "pins",
+ "count": 10,
+ "pass": 0,
+ "samples": 700,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 116.45041823993651,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335000005899929,
+ "p99Ms": 9.90937500318978,
+ "maxMs": 129.97149999137037,
+ "lateCallbackPercent": 1.2857142857142858,
+ "intervalsWithin120HzBudgetPercent": 98.71428571428571,
+ "memoryDeltaMiB": 36.421875,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-static",
+ "count": 10,
+ "pass": 0,
+ "samples": 721,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.64347240871396,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335000005899929,
+ "p99Ms": 8.335000005899929,
+ "maxMs": 20.112124999286607,
+ "lateCallbackPercent": 0.27739251040221913,
+ "intervalsWithin120HzBudgetPercent": 99.72260748959778,
+ "memoryDeltaMiB": 47.453125,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 10,
+ "pass": 0,
+ "samples": 721,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.64292477842596,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 25.90016667090822,
+ "lateCallbackPercent": 0.13869625520110956,
+ "intervalsWithin120HzBudgetPercent": 99.86130374479889,
+ "memoryDeltaMiB": 14.625022888183594,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 10,
+ "pass": 0,
+ "samples": 721,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.64383887714209,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 21.91208333533723,
+ "lateCallbackPercent": 0.27739251040221913,
+ "intervalsWithin120HzBudgetPercent": 99.72260748959778,
+ "memoryDeltaMiB": 46.5625,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "pins",
+ "count": 50,
+ "pass": 0,
+ "samples": 718,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.64154194276797,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 19.48558332514949,
+ "lateCallbackPercent": 0.2785515320334262,
+ "intervalsWithin120HzBudgetPercent": 99.72144846796657,
+ "memoryDeltaMiB": 47.21875,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-static",
+ "count": 50,
+ "pass": 0,
+ "samples": 721,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.64347323586394,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335000005899929,
+ "p99Ms": 8.335000005899929,
+ "maxMs": 20.346666671684943,
+ "lateCallbackPercent": 0.27739251040221913,
+ "intervalsWithin120HzBudgetPercent": 99.72260748959778,
+ "memoryDeltaMiB": 47.484375,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 50,
+ "pass": 0,
+ "samples": 722,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.80863308860529,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 16.670000011799857,
+ "lateCallbackPercent": 0.13850415512465375,
+ "intervalsWithin120HzBudgetPercent": 99.86149584487535,
+ "memoryDeltaMiB": 15.71875,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 50,
+ "pass": 0,
+ "samples": 723,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.9759600038986,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 8.335083344718441,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 51.15625,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "pins",
+ "count": 200,
+ "pass": 0,
+ "samples": 718,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.64179363636232,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 21.70345833292231,
+ "lateCallbackPercent": 0.2785515320334262,
+ "intervalsWithin120HzBudgetPercent": 99.72144846796657,
+ "memoryDeltaMiB": 50.203125,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-static",
+ "count": 200,
+ "pass": 0,
+ "samples": 721,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.64358987683687,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 21.11591666471213,
+ "lateCallbackPercent": 0.27739251040221913,
+ "intervalsWithin120HzBudgetPercent": 99.72260748959778,
+ "memoryDeltaMiB": 41.671897888183594,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 200,
+ "pass": 0,
+ "samples": 723,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.97459790954177,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335083330166526,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 8.367708331206813,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 14.546875,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 200,
+ "pass": 0,
+ "samples": 399,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 66.01870803070958,
+ "p50Ms": 14.18329167063348,
+ "p95Ms": 25.931500000297092,
+ "p99Ms": 30.21629167778883,
+ "maxMs": 31.224166668835096,
+ "lateCallbackPercent": 55.6390977443609,
+ "intervalsWithin120HzBudgetPercent": 44.3609022556391,
+ "memoryDeltaMiB": 49.656272888183594,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 10,
+ "pass": 1,
+ "samples": 719,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 118.98160844695367,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 39.65762500592973,
+ "lateCallbackPercent": 0.5563282336578581,
+ "intervalsWithin120HzBudgetPercent": 99.44367176634213,
+ "memoryDeltaMiB": 50.15625,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 10,
+ "pass": 1,
+ "samples": 727,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.97604522304194,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 8.335083344718441,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 49.859397888183594,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-static",
+ "count": 10,
+ "pass": 1,
+ "samples": 725,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.64530448133348,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335000005899929,
+ "p99Ms": 8.335000005899929,
+ "maxMs": 25.004999988595955,
+ "lateCallbackPercent": 0.13793103448275862,
+ "intervalsWithin120HzBudgetPercent": 99.86206896551724,
+ "memoryDeltaMiB": 13.890625,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "pins",
+ "count": 10,
+ "pass": 1,
+ "samples": 718,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.64169644752926,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 20.146333336015232,
+ "lateCallbackPercent": 0.2785515320334262,
+ "intervalsWithin120HzBudgetPercent": 99.72144846796657,
+ "memoryDeltaMiB": 49.500022888183594,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 50,
+ "pass": 1,
+ "samples": 724,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.48048843953269,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 20.26283333543688,
+ "lateCallbackPercent": 0.4143646408839779,
+ "intervalsWithin120HzBudgetPercent": 99.58563535911603,
+ "memoryDeltaMiB": 47.28125,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 50,
+ "pass": 1,
+ "samples": 727,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.97449345568783,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335083330166526,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 8.367708331206813,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 47.906272888183594,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-static",
+ "count": 50,
+ "pass": 1,
+ "samples": 725,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.64475080568032,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 20.048041667905636,
+ "lateCallbackPercent": 0.27586206896551724,
+ "intervalsWithin120HzBudgetPercent": 99.72413793103448,
+ "memoryDeltaMiB": 50.0,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "pins",
+ "count": 50,
+ "pass": 1,
+ "samples": 718,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.6411266096315,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 21.179166666115634,
+ "lateCallbackPercent": 0.2785515320334262,
+ "intervalsWithin120HzBudgetPercent": 99.72144846796657,
+ "memoryDeltaMiB": 49.890647888183594,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 200,
+ "pass": 1,
+ "samples": 413,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 67.970020146724,
+ "p50Ms": 12.572749998071231,
+ "p95Ms": 25.57608332426753,
+ "p99Ms": 27.871916667209007,
+ "maxMs": 30.332375012221746,
+ "lateCallbackPercent": 52.78450363196126,
+ "intervalsWithin120HzBudgetPercent": 47.21549636803874,
+ "memoryDeltaMiB": 48.0625,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 200,
+ "pass": 1,
+ "samples": 720,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 118.8196145935127,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 9.28504166950006,
+ "maxMs": 16.670166660333052,
+ "lateCallbackPercent": 1.25,
+ "intervalsWithin120HzBudgetPercent": 98.75,
+ "memoryDeltaMiB": 51.796875,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-static",
+ "count": 200,
+ "pass": 1,
+ "samples": 727,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.97536049369579,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335000005899929,
+ "p99Ms": 8.335000005899929,
+ "maxMs": 8.367541668121703,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 13.406272888183594,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "pins",
+ "count": 200,
+ "pass": 1,
+ "samples": 719,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.80872179317291,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335000005899929,
+ "p99Ms": 8.335000005899929,
+ "maxMs": 16.670000011799857,
+ "lateCallbackPercent": 0.13908205841446453,
+ "intervalsWithin120HzBudgetPercent": 99.86091794158554,
+ "memoryDeltaMiB": 49.34375,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "pins",
+ "count": 10,
+ "pass": 2,
+ "samples": 719,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.80807047027548,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335000005899929,
+ "p99Ms": 8.335000005899929,
+ "maxMs": 15.93045833578799,
+ "lateCallbackPercent": 0.27816411682892905,
+ "intervalsWithin120HzBudgetPercent": 99.72183588317107,
+ "memoryDeltaMiB": 49.453147888183594,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-static",
+ "count": 10,
+ "pass": 2,
+ "samples": 727,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.97428309143159,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 8.367708331206813,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 50.046875,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 10,
+ "pass": 2,
+ "samples": 726,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.81123047515304,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 16.52016666776035,
+ "lateCallbackPercent": 0.13774104683195593,
+ "intervalsWithin120HzBudgetPercent": 99.86225895316804,
+ "memoryDeltaMiB": 14.546897888183594,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 10,
+ "pass": 2,
+ "samples": 727,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.97535884335788,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335000005899929,
+ "p99Ms": 8.335000005899929,
+ "maxMs": 8.3676249923883,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 45.75,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "pins",
+ "count": 50,
+ "pass": 2,
+ "samples": 720,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.9747020011231,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335000005899929,
+ "p99Ms": 8.335000005899929,
+ "maxMs": 8.367583344806917,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 50.078147888183594,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-static",
+ "count": 50,
+ "pass": 2,
+ "samples": 725,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.64449494881256,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335083330166526,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 16.669999997247942,
+ "lateCallbackPercent": 0.27586206896551724,
+ "intervalsWithin120HzBudgetPercent": 99.72413793103448,
+ "memoryDeltaMiB": 50.0,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 50,
+ "pass": 2,
+ "samples": 727,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.97480529066151,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 8.335083344718441,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 50.062522888183594,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 50,
+ "pass": 2,
+ "samples": 727,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.97535884364599,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335000005899929,
+ "p99Ms": 8.335000005899929,
+ "maxMs": 8.3676249923883,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 14.171875,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "pins",
+ "count": 200,
+ "pass": 2,
+ "samples": 718,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.64143810943109,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335000005899929,
+ "p99Ms": 8.335000005899929,
+ "maxMs": 19.977791656856425,
+ "lateCallbackPercent": 0.2785515320334262,
+ "intervalsWithin120HzBudgetPercent": 99.72144846796657,
+ "memoryDeltaMiB": 49.734397888183594,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-static",
+ "count": 200,
+ "pass": 2,
+ "samples": 725,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.6444891900351,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335083330166526,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 19.05854165670462,
+ "lateCallbackPercent": 0.27586206896551724,
+ "intervalsWithin120HzBudgetPercent": 99.72413793103448,
+ "memoryDeltaMiB": 48.546875,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 200,
+ "pass": 2,
+ "samples": 521,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 86.216377319337,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 24.594624992460012,
+ "p99Ms": 30.61033334233798,
+ "maxMs": 31.629333330783993,
+ "lateCallbackPercent": 33.589251439539346,
+ "intervalsWithin120HzBudgetPercent": 66.41074856046065,
+ "memoryDeltaMiB": 28.234375,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 200,
+ "pass": 2,
+ "samples": 217,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 36.10462437986475,
+ "p50Ms": 32.37049999006558,
+ "p95Ms": 50.01000000629574,
+ "p99Ms": 55.9007083211327,
+ "maxMs": 56.12449999898672,
+ "lateCallbackPercent": 75.11520737327189,
+ "intervalsWithin120HzBudgetPercent": 24.88479262672811,
+ "memoryDeltaMiB": 9.140625,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ }
+]}
diff --git a/experiments/custom-markers/results/native-host-checks.json b/experiments/custom-markers/results/native-host-checks.json
new file mode 100644
index 0000000..96357e0
--- /dev/null
+++ b/experiments/custom-markers/results/native-host-checks.json
@@ -0,0 +1 @@
+{"nativeHostChecksPassed":true}
\ No newline at end of file
diff --git a/experiments/custom-markers/run-ios-simulator.sh b/experiments/custom-markers/run-ios-simulator.sh
new file mode 100644
index 0000000..98a8a08
--- /dev/null
+++ b/experiments/custom-markers/run-ios-simulator.sh
@@ -0,0 +1,54 @@
+#!/bin/bash
+set -euo pipefail
+
+# Requires an already booted simulator; does not touch the library/example build.
+bench_dir="$(cd "$(dirname "$0")" && pwd)"
+bench_device="${1:-booted}"
+bench_output="${2:-$bench_dir/results/latest.json}"
+bench_build="$(mktemp -d /tmp/nitro-marker-snapshot.XXXXXX)"
+bench_bundle="software.gmi.nitromaps.snapshotbench"
+bench_app="$bench_build/SnapshotBench.app"
+mkdir -p "$bench_app" "$(dirname "$bench_output")"
+bench_sdk="$(xcrun --sdk iphonesimulator --show-sdk-path)"
+bench_arch="$(uname -m)"
+trap 'rm -rf "$bench_build"' EXIT
+
+cat > "$bench_app/Info.plist" <<'PLIST'
+
+
+
+CFBundleExecutableSnapshotBench
+CFBundleIdentifiersoftware.gmi.nitromaps.snapshotbench
+CFBundleNameSnapshotBench
+CFBundleVersion1
+CFBundleShortVersionString1.0
+CFBundlePackageTypeAPPL
+MinimumOSVersion16.0
+UILaunchScreen
+CADisableMinimumFrameDurationOnPhone
+
+PLIST
+
+xcrun --sdk iphonesimulator swiftc -O -parse-as-library \
+ -sdk "$bench_sdk" -target "$bench_arch-apple-ios16.0-simulator" \
+ -module-cache-path "$bench_build/ModuleCache" \
+ "$bench_dir/SnapshotBench.swift" "$bench_dir/HostChecks.swift" \
+ "$bench_dir/../../package/ios/NitroMapContainerView.swift" \
+ "$bench_dir/../../package/ios/NitroMarkerContentView.swift" -o "$bench_app/SnapshotBench"
+codesign --force --sign - "$bench_app"
+xcrun simctl terminate "$bench_device" "$bench_bundle" >/dev/null 2>&1 || true
+xcrun simctl install "$bench_device" "$bench_app"
+bench_container="$(xcrun simctl get_app_container "$bench_device" "$bench_bundle" data)"
+rm -f "$bench_container/Documents/results.json"
+xcrun simctl launch "$bench_device" "$bench_bundle" "${3:-}"
+for ((bench_attempt=0; bench_attempt<180; bench_attempt++)); do
+ if [[ -f "$bench_container/Documents/results.json" ]]; then
+ cp "$bench_container/Documents/results.json" "$bench_output"
+ xcrun simctl terminate "$bench_device" "$bench_bundle"
+ echo "Saved UIKit CPU microbenchmark: $bench_output"
+ exit 0
+ fi
+ sleep 1
+done
+echo "Benchmark timed out without results" >&2
+exit 1
diff --git a/experiments/custom-markers/summarize-rn-benchmark.py b/experiments/custom-markers/summarize-rn-benchmark.py
new file mode 100644
index 0000000..01e6308
--- /dev/null
+++ b/experiments/custom-markers/summarize-rn-benchmark.py
@@ -0,0 +1,67 @@
+#!/usr/bin/env python3
+"""Extract callback-interval diagnostics; these are NOT presented map FPS."""
+import argparse
+import json
+import math
+from pathlib import Path
+
+
+def percentile(values, fraction):
+ if not values:
+ raise ValueError('No frame samples recorded')
+ return sorted(values)[max(0, math.ceil(len(values) * fraction) - 1)]
+
+
+def summarize(row):
+ intervals = row['intervalsMs']
+ expected = row['expectedMs']
+ if not intervals or len(intervals) != len(expected):
+ raise ValueError('Missing or misaligned callback samples')
+ if any(not math.isfinite(value) or value <= 0 for value in intervals + expected):
+ raise ValueError('Invalid frame timing')
+ # Show actual intervals separately from adaptive deadline diagnostics.
+ late = sum(actual > deadline * 1.05 for actual, deadline in zip(intervals, expected))
+ return {
+ 'mode': row['mode'], 'count': row['count'], 'pass': row['pass'],
+ 'samples': len(intervals), 'reportedMaximumHz': row['refreshRateHz'],
+ 'callbackRateHz': 1000 * len(intervals) / sum(intervals),
+ 'p50Ms': percentile(intervals, .50), 'p95Ms': percentile(intervals, .95),
+ 'p99Ms': percentile(intervals, .99), 'maxMs': max(intervals),
+ 'lateCallbackPercent': 100 * late / len(intervals),
+ 'intervalsWithin120HzBudgetPercent': 100 * sum(value <= (1000 / 120) * 1.05 for value in intervals) / len(intervals),
+ 'memoryDeltaMiB': (row['afterBytes'] - row['beforeBytes']) / (1024 ** 2),
+ 'measurement': 'main-thread display callback intervals; not map/GPU presentation',
+ }
+
+
+def main():
+ parser = argparse.ArgumentParser()
+ parser.add_argument('log', type=Path)
+ parser.add_argument('--output', type=Path, required=True)
+ parser.add_argument('--suite', choices=['primary', 'control', 'selected'])
+ args = parser.parse_args()
+ rows = []
+ for line in args.log.read_text(errors='replace').splitlines():
+ marker = '[marker-view-benchmark] '
+ if marker not in line:
+ continue
+ payload = line.split(marker, 1)[1].strip()
+ if payload.startswith('{'):
+ row = json.loads(payload)
+ if args.suite is None or row.get('suite', 'primary') == args.suite:
+ rows.append(row)
+ if not rows:
+ raise SystemExit('No complete marker benchmark rows found')
+ summary = [summarize(row) for row in rows]
+ # Keep raw sample arrays compact so the review diff is not tens of thousands
+ # of lines of numbers; the human-readable summary remains expanded.
+ raw_json = ',\n'.join(json.dumps(row, separators=(',', ':')) for row in rows)
+ args.output.write_text('{"raw":[\n' + raw_json + '\n],"summary":' + json.dumps(summary, indent=2) + '}\n')
+ print('| Mode | Count | Pass | Callback Hz | p95 ms | p99 ms | Late % |')
+ print('|---|---:|---:|---:|---:|---:|---:|')
+ for row in summary:
+ print(f"| {row['mode']} | {row['count']} | {row['pass'] + 1} | {row['callbackRateHz']:.1f} | {row['p95Ms']:.2f} | {row['p99Ms']:.2f} | {row['lateCallbackPercent']:.2f} |")
+
+
+if __name__ == '__main__':
+ main()
diff --git a/package/src/index.ts b/package/src/index.ts
index b952ec9..f62a207 100644
--- a/package/src/index.ts
+++ b/package/src/index.ts
@@ -1,6 +1,7 @@
export {
MapView,
Marker,
+ MarkerView,
Polyline,
Polygon,
Circle,
@@ -47,5 +48,4 @@ export type {
export { regionFromCoordinate, distanceBetween } from './utils';
-export { MarkerView } from './components/MarkerView';
export type { MarkerViewProps } from './components/MarkerView';
From fc8fd56b95bd62245d22cdff480c90d6a27c2c70 Mon Sep 17 00:00:00 2001
From: Piotr Graczyk
Date: Fri, 11 Sep 2026 13:59:02 +0200
Subject: [PATCH 06/10] fix: measure camera motion in seconds and retain
control evidence
---
docs/research/custom-marker-device-results.md | 2 +
.../MarkerViewBenchmark.tsx | 20 +-
experiments/custom-markers/README.md | 2 +
.../results/iphone-15-pro-control.json | 207 ++++++++++++++++++
package/src/native/specs/MapView.nitro.ts | 2 +-
package/src/types/ref.ts | 2 +-
6 files changed, 232 insertions(+), 3 deletions(-)
create mode 100644 experiments/custom-markers/results/iphone-15-pro-control.json
diff --git a/docs/research/custom-marker-device-results.md b/docs/research/custom-marker-device-results.md
index 0046775..94f62f1 100644
--- a/docs/research/custom-marker-device-results.md
+++ b/docs/research/custom-marker-device-results.md
@@ -1,5 +1,7 @@
# Physical iPhone experiment, 2026-09-11
+> **Camera-workload error:** these initial series passed `1200` to a duration measured in seconds. They are not valid moving-camera acceptance runs. Retained numbers describe internal JSX animation under that faulty camera workload. Version 3 corrects this to `1.2` seconds and records camera endpoints.
+
## Build and workload
- iPhone 15 Pro, iOS 26.6 (23G5043d), Release, RN 0.86 / Reanimated 4.5.0 / Nitro 0.35.10, MapKit. Library native source matches commit `3085c91`.
diff --git a/example/marker-view-benchmark/MarkerViewBenchmark.tsx b/example/marker-view-benchmark/MarkerViewBenchmark.tsx
index 0af3a73..a12415d 100644
--- a/example/marker-view-benchmark/MarkerViewBenchmark.tsx
+++ b/example/marker-view-benchmark/MarkerViewBenchmark.tsx
@@ -27,6 +27,7 @@ import {
const CENTER = { latitude: 52.2297, longitude: 21.0122 };
const CAMERA = { center: CENTER, zoom: 14, pitch: 0, heading: 0 };
+const CAMERA_ANIMATION_SECONDS = 1.2;
type Mode =
| 'pins'
| 'live-static'
@@ -183,6 +184,7 @@ export default function MarkerViewBenchmark() {
await map.current.setCamera(CAMERA);
await sleep(1000);
const beforeBytes = await memoryFootprintBytes();
+ const cameraBefore = await map.current.getCamera();
setStatus(`Recording ${name}`);
await sleep(100);
await startFrameRecording(`${candidate}-${size}-pass${pass + 1}`);
@@ -196,15 +198,29 @@ export default function MarkerViewBenchmark() {
},
heading: leg * 12,
},
- 1200,
+ CAMERA_ANIMATION_SECONDS,
);
await sleep(1500);
}
const recording = await stopFrameRecording();
+ const cameraAfter = await map.current.getCamera();
+ const cameraRouteCompleted =
+ Math.abs(
+ cameraAfter.center.latitude - (CENTER.latitude - 0.001),
+ ) < 0.00005 &&
+ Math.abs(cameraAfter.center.longitude - CENTER.longitude) <
+ 0.00005 &&
+ Math.abs((((cameraAfter.heading ?? 0) - 36 + 540) % 360) - 180) <
+ 1;
const afterBytes = await memoryFootprintBytes();
const row = {
kind: 'marker-view-benchmark',
suite: kind,
+ workloadVersion: 3,
+ cameraAnimationSeconds: CAMERA_ANIMATION_SECONDS,
+ cameraBefore,
+ cameraAfter,
+ cameraRouteCompleted,
provider,
mode: candidate,
count: size,
@@ -216,6 +232,8 @@ export default function MarkerViewBenchmark() {
await logBenchmarkLine(
`[marker-view-benchmark] ${JSON.stringify(row)}`,
);
+ if (!cameraRouteCompleted)
+ throw new Error('Camera did not complete the benchmark route');
}
}
}
diff --git a/experiments/custom-markers/README.md b/experiments/custom-markers/README.md
index a0514f6..23ce034 100644
--- a/experiments/custom-markers/README.md
+++ b/experiments/custom-markers/README.md
@@ -92,3 +92,5 @@ python3 experiments/custom-markers/summarize-rn-benchmark.py /tmp/marker-view-be
```
A fresh installation or a separate copied log should be used for each investigation; the raw file intentionally appends across runs. Preserve raw samples, workload parameters, device/OS/build identity, and Instruments evidence before drawing a performance conclusion.
+
+The initial `iphone-15-pro-run-1.json` and `iphone-15-pro-control.json` used an incorrect camera duration of 1200 seconds. They are retained as faulty-workload diagnostics, **not moving-camera acceptance evidence**. Harness version 3 uses 1.2 seconds and saves camera endpoints. The v2 control separates transform and width properties and compares ordinary fixed screen overlays against geographic hosts.
diff --git a/experiments/custom-markers/results/iphone-15-pro-control.json b/experiments/custom-markers/results/iphone-15-pro-control.json
new file mode 100644
index 0000000..7925686
--- /dev/null
+++ b/experiments/custom-markers/results/iphone-15-pro-control.json
@@ -0,0 +1,207 @@
+{"raw":[
+{"kind":"marker-view-benchmark","suite":"control","provider":"apple","mode":"overlay-transform","count":200,"pass":0,"beforeBytes":367281360,"afterBytes":432620800,"intervalsMs":[8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.367749993340112,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526],"refreshRateHz":120,"environmentBefore":{"thermalState":1,"applicationActive":true,"mountedMarkerViews":0,"os":"26.6","visibleMarkerViews":0,"lowPowerMode":false},"environmentAfter":{"lowPowerMode":false,"thermalState":1,"mountedMarkerViews":0,"os":"26.6","applicationActive":true,"visibleMarkerViews":0},"durationMs":6035.593791661086,"expectedMs":[8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526]},
+{"kind":"marker-view-benchmark","suite":"control","provider":"apple","mode":"live-transform","count":200,"pass":0,"beforeBytes":401933592,"afterBytes":442942744,"intervalsMs":[8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.302374990307726,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013],"environmentAfter":{"thermalState":1,"lowPowerMode":false,"mountedMarkerViews":200,"visibleMarkerViews":200,"os":"26.6","applicationActive":true},"refreshRateHz":120,"environmentBefore":{"thermalState":1,"lowPowerMode":false,"mountedMarkerViews":200,"visibleMarkerViews":200,"os":"26.6","applicationActive":true},"expectedMs":[8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526],"durationMs":6036.655250005424},
+{"kind":"marker-view-benchmark","suite":"control","provider":"apple","mode":"overlay-layout","count":200,"pass":0,"beforeBytes":441664792,"afterBytes":458376496,"intervalsMs":[8.335083330166526,16.670166674884968,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,19.811708334600553,13.528625000617467,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,16.670166660333052,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,16.670166660333052,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,16.670166674884968,8.335083330166526,17.218791661434807,17.029333335813135,7.427291668136604,16.833999994560145,8.171250010491349,17.24508333427366,16.5478333219653,7.882500009145588,25.00524999049958,15.834208345040679,9.171041660010815,21.742500000982545,11.597833334235474,20.417749998159707,21.25766666722484,8.335083330166526,16.393750003771856,8.611500001279637,16.546291662962176,8.458958342089318,21.783333329949528,11.556999990716577,21.626916670356877,11.713416664861143,21.597500002826564,11.742833332391456,20.40195833251346,21.273458332871087,8.335083330166526,20.465916677494533,12.874416657723486,16.533583344426006,8.471666660625488,25.005250005051494,16.670166660333052,8.335083330166526,16.670166674884968,16.552208326174878,8.4530416643247,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,15.915958341793157,9.089291663258336,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,15.793375001521781,9.211874988977797,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,16.670166660333052,8.335083344718441,8.335083330166526,16.670166660333052,8.335083330166526,8.335083344718441,16.670166660333052,8.335083330166526,16.670166674884968,8.335083330166526,20.966500000213273,12.373833335004747,16.230875000474043,17.109458334743977,8.335083330166526,25.005250005051494,8.335083330166526,21.042416658019647,20.41312500659842,16.89004166109953,17.617916673771106,17.86779167014174,22.859874996356666,8.335083330166526,25.005250005051494,16.270541658741422,8.734708331758156,24.11820834095124,9.222124994266778,21.852166668395512,11.488166666822508,20.24300000630319,13.097333328914829,21.847958327271044,11.492375007946976,21.108833330799825,12.231500004418194,19.658083328977227,13.682250006240793,19.09762500145007,22.35629166534636,16.891666658921167,16.670166674884968,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,20.736333332024515,12.604000003193505,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,15.719874994829297,9.285375010222197,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,21.898833321756683,11.441500013461336,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,16.670166674884968,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,17.12012500502169,7.885125000029802,8.335083330166526,16.670166660333052,8.335083344718441,25.00524999049958,16.172999996342696,8.832250008708797,16.700041669537313,8.30520833551418,16.670166660333052,16.670166660333052,16.670166674884968,8.335083330166526,16.670166660333052,17.165583340101875,15.936875002807938,17.446833327994682,7.796291669365019,25.005250005051494,16.670166660333052,8.335083330166526,23.405083338730037,9.935249996487983,22.35954167554155,10.98079165967647,22.649333332083188,10.691000003134832,22.050999992643483,11.289333342574537,22.827791661256924,10.512541673961096,22.578666656045243,10.761666679172777,16.670166660333052,16.670166660333052,16.63362501130905,16.70670832390897,8.335083330166526,8.335083344718441,16.670166660333052,8.335083330166526,16.689916665200144,8.31533333985135,8.335083330166526,16.670166674884968,8.335083330166526,8.335083330166526,16.293333334033377,8.711916671018116,8.335083330166526,8.335083330166526,16.670166674884968,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,16.670166674884968,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,16.670166660333052,8.335083330166526,8.335083330166526,16.670166674884968,8.335083330166526,16.670166660333052,8.335083344718441,20.08733332331758,13.25300001190044,25.00524999049958,15.783416674821638,9.221833330229856,16.015666667954065,8.989583337097429,23.228499994729646,10.111833325936459,16.003208336769603,9.00204166828189,22.740958331269212,10.599375003948808,22.499999991850927,10.840333343367092,16.670166660333052,16.361625006538816,16.978708328679204,17.64049999474082,16.995125013636425,16.062208320363425,24.317916671861894,8.335083330166526,16.670166674884968,17.148791666841134,24.52662499854341,8.335083330166526,20.874374997220002,12.465958337998018,8.335083330166526,19.651083333883435,21.910291674430482,16.148541661095805,8.970750001026317,25.00524999049958,8.335083344718441,16.670166660333052,8.335083330166526,25.005250005051494,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,16.670375000103377,8.334874990396202,8.335083330166526,8.335083344718441,8.335083330166526,16.670166660333052,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,19.73779167747125,13.60254165774677,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,16.670166660333052,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,16.670166674884968,16.670166660333052,8.335083330166526,8.335083344718441,8.335083330166526,16.670166660333052,17.569125004229136,15.771208330988884,8.335083330166526,25.005250005051494,16.31887500116136,17.02145833405666,16.56820833159145,8.437041673460044,19.986499988590367,21.68891667679418,8.335083330166526,21.45991666475311,11.88041667046491,20.869291663984768,12.471041671233252,15.705999991041608,9.29924999945797,16.670166674884968,8.335083330166526,21.158458330319263,12.181875004898757,22.756458332878537,10.583875002339482,21.80141666030977,11.538916660356335,22.180958345416002,11.159374989802018,22.080583337810822,11.259749997407198,16.670166674884968,16.298999995342456,8.706249995157123,16.73045834468212,8.274791660369374,19.427958337473683,22.247458327910863,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,16.25541665998753,8.749833345063962,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,16.670166660333052,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,16.670166674884968,8.335083330166526],"environmentBefore":{"visibleMarkerViews":0,"os":"26.6","mountedMarkerViews":0,"thermalState":1,"applicationActive":true,"lowPowerMode":false},"expectedMs":[8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083344718441,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526],"environmentAfter":{"mountedMarkerViews":0,"visibleMarkerViews":0,"applicationActive":true,"os":"26.6","thermalState":1,"lowPowerMode":false},"refreshRateHz":120,"durationMs":6042.457625007955},
+{"kind":"marker-view-benchmark","suite":"control","provider":"apple","mode":"live-layout","count":200,"pass":0,"beforeBytes":442860800,"afterBytes":460948760,"environmentBefore":{"lowPowerMode":false,"thermalState":1,"os":"26.6","mountedMarkerViews":200,"applicationActive":true,"visibleMarkerViews":200},"environmentAfter":{"lowPowerMode":false,"thermalState":1,"os":"26.6","mountedMarkerViews":200,"applicationActive":true,"visibleMarkerViews":200},"durationMs":6034.824791669962,"intervalsMs":[8.335083330166526,17.82995833491441,7.175291670137085,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,24.730874996748753,8.609458338469267,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,16.355916653992608,8.64933333650697,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,16.68108333251439,8.324166672537103,8.335083330166526,16.21579166385345,8.789458341198042,17.28674999321811,15.711750005721115,8.676916666445322,16.670166660333052,8.335083344718441,8.335083330166526,8.335083330166526,19.080541664152406,30.929958331398666,16.075583334895782,8.929666670155711,23.909583338536322,9.430749996681698,22.828083325293846,10.512250009924173,8.335083330166526,17.350750000332482,18.164499997510575,14.495249997708015,23.593791673192754,9.746541662025265,8.335083330166526,20.49129166698549,12.84904166823253,25.426749998587184,24.58374999696389,16.252416666247882,8.752833338803612,8.335083330166526,20.963041664799675,12.377291670418344,8.335083330166526,8.335083344718441,16.822916659293696,19.119625008897856,14.06795832735952,8.335083330166526,8.335083330166526,8.302458343678154,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,16.669999997247942,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,16.96779167104978,8.03720833209809,8.335000005899929,8.334999991348013,8.335000005899929,16.880124996532686,8.124875006615184,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,25.00500000314787,8.334999991348013,16.96966667077504,8.03533333237283,8.335000005899929,17.074541668989696,7.9304583196062595,16.670000011799857,8.334999991348013,18.19216666626744,6.812833336880431,8.335000005899929,8.334999991348013,8.335000005899929,16.389124997658655,8.615875005489215,25.004999988595955,17.576541678863578,18.204208332463168,23.806583325495012,15.231208337354474,8.531458326615393,25.00500000314787,17.042291670804843,16.29770832369104,18.87850000639446,14.461500002653338,23.75745832978282,17.91754167061299,20.142749999649823,22.466916663688608,15.180625006905757,19.65574998757802,14.23895833431743,8.335000005899929,21.28583333978895,20.38916666060686,19.647208333481103,22.02779166691471,20.309958330472,22.362000003340654,15.562083324766718,8.44595834496431,8.334999991348013,16.669999997247942,8.335000005899929,17.07887499651406,7.926125006633811,8.334999991348013,8.335000005899929,16.669999997247942,8.335000005899929,8.334999991348013,8.335000005899929,15.956125003867783,9.048874999280088,8.334999991348013,8.335000005899929,8.335000005899929,16.180041653569788,8.824958335026167,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,25.517208327073604,7.82279166742228,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,16.15862498874776,8.846374999848194,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,17.374583330820315,7.630416672327556,8.335000005899929,16.113624995341524,8.89137499325443,17.1811666659778,16.744458334869705,7.7493749995483086,17.015083343721926,7.989916659425944,8.335000005899929,8.334999991348013,20.0990833400283,24.630541665828787,13.615375006338581,23.703374987235293,9.63662500726059,25.314250000519678,19.314541670610197,13.716208326513879,25.00500000314787,16.221541663981043,17.11845833051484,17.13795833347831,19.573833342292346,21.050083334557712,8.918124993215315,8.335000005899929,21.092333321576007,28.91766667016782,25.00500000314787,16.222666672547348,8.782333330600522,16.03416666330304,8.97083333984483,25.004999988595955,19.436750008026138,22.238249992369674,8.335000005899929,16.669999997247942,8.335000005899929,8.334999991348013,15.682291676057503,9.322708327090368,8.335000005899929,16.669999997247942,8.334999991348013,8.335000005899929,8.335000005899929,25.004999988595955,8.335000005899929,8.335000005899929,8.334999991348013,17.58245834207628,7.422541661071591,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,16.376791667426005,8.62820832116995,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,16.344541669241153,8.660458333906718,8.335000005899929,25.004999988595955,8.335000005899929,25.00500000314787,25.004999988595955,25.00500000314787,25.00500000314787,17.1683749940712,19.823041671770625,23.8204583292827,22.538125005667098,25.00500000314787,25.00500000314787,22.248833323828876,19.966333333286457,24.32045833847951,25.149374996544793,20.870124993962236,29.139875012333505,21.135874994797632,19.824125003651716,20.036666668602265,22.25262499996461,16.770708331023343,18.32641666987911,23.348583330516703,16.502500002388842,16.83749999210704,25.00500000314787,16.167541660252027,17.172458334243856,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,20.028041675686836,13.311958333360963,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,17.72950000304263,7.2755000001052395,8.335000005899929,8.334999991348013,8.335000005899929,16.727041656849906,8.277958346297964,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,25.53137500945013,7.808624999597669,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,16.871291663846932,8.133708339300938,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,19.83891666168347,13.501083332812414,19.46095832681749,30.549041664926335,25.00500000314787,25.00500000314787,25.00500000314787,17.66591666091699,15.258375002304092,8.750708337174729,17.151291656773537,18.645916672539897,23.478333328966983,15.739458336611278,16.234708338743076,8.770291664404795,8.335000005899929,17.525666655274108,18.260208336869255,14.224124999600463,25.00375000818167,19.153041663230397,23.398416669806466,15.827333321794868,8.335000005899929,15.96429166966118,9.040708333486691,8.334999991348013,20.544083337881602,29.46591666841414,17.691125001874752,23.98387499852106,8.334999991348013,8.335000005899929,8.335000005899929,16.669999997247942,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,16.16058334184345,8.844416661304422,8.335000005899929,8.334999991348013,8.335000005899929,16.239666656474583],"refreshRateHz":120,"expectedMs":[8.335000005899929,8.335083344718441,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335083344718441,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083344718441,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083344718441,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013]},
+{"kind":"marker-view-benchmark","suite":"control","provider":"apple","mode":"live-layout","count":200,"pass":1,"beforeBytes":403506432,"afterBytes":456082712,"durationMs":6060.317249997752,"expectedMs":[8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335083330166526,8.335083344718441,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083344718441,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083344718441,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929],"intervalsMs":[8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,25.00500000314787,20.02116666699294,13.318833327502944,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,25.004999988595955,8.335000005899929,8.335000005899929,8.334999991348013,25.00500000314787,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,17.716750007821247,7.288249995326623,15.809583332156762,9.195416670991108,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,20.108208336750977,24.281291669467464,22.29049999732524,25.00500000314787,22.74724999733735,18.723041663179174,19.868458330165595,30.37895834131632,17.284416666370817,18.19108333438635,31.204499988234602,19.068541674641892,23.489500003051944,15.264458328601904,18.123916670447215,15.239624990499578,25.50395834259689,18.017041657003574,19.399916665861383,29.26304166612681,25.00500000314787,25.00500000314787,25.00500000314787,25.00500000314787,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,17.19625000259839,7.80875000054948,8.334999991348013,17.4352916656062,7.56970833754167,8.335000005899929,16.63899999402929,8.36600000911858,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,25.004999988595955,8.335000005899929,8.335000005899929,8.334999991348013,19.78508333559148,13.554916673456319,8.334999991348013,16.177333338418975,8.827666664728895,8.335000005899929,17.48691666580271,7.518083322793245,8.335000005899929,20.30241666943766,13.037583325058222,16.173291674931534,8.831708328216337,20.881333330180496,20.793666670215316,20.101541667827405,20.689541663159616,20.77862501027994,23.98312499281019,22.802166669862345,19.58708332676906,13.752916667726822,25.83545833476819,21.04716666508466,19.79737500369083,19.289833333459683,25.603666668757796,23.311458324315026,19.151583343045786,20.998458334361203,16.669999997247942,19.333791671670042,22.34120832872577,25.00500000314787,19.874124991474673,13.46587500302121,8.335000005899929,8.334999991348013,17.721291675115936,21.265041665174067,11.023666666005738,19.14099999703467,21.745166668551974,9.123833326157182,15.846291673369706,9.158708329778165,8.335000005899929,8.334999991348013,19.845708331558853,13.494291677488945,8.334999991348013,16.670000011799857,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,19.25466666580178,30.755333325942047,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,20.35954166785814,12.98045834118966,8.334999991348013,8.335000005899929,25.00500000314787,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,17.076458330848254,7.928541672299616,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,20.778624995728023,24.16708333475981,21.73429167305585,25.004999988595955,19.87708333763294,13.46291667141486,22.316458329441957,19.84437499777414,21.840208341018297,18.857791656046174,21.34529166505672,21.766916674096137,20.58812500035856,20.13533332501538,20.801041668164544,20.302375007304363,20.641708324546926,24.592458343249746,21.348041656892747,22.23166667681653,11.783208334236406,8.334999991348013,21.31675000418909,22.77920833148528,27.154708339367062,22.890874999575317,25.480541662545875,13.737916669924743,15.69487499364186,9.31012500950601,21.11237499048002,12.227625004015863,19.723749996046536,13.616249998449348,8.335000005899929,16.378833330236375,8.626166672911495,8.334999991348013,8.335000005899929,8.334999991348013,16.670000011799857,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,20.738833336508833,12.60116665798705,8.335000005899929,8.334999991348013,18.80325000092853,14.53675000811927,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,16.669999997247942,8.335000005899929,8.334999991348013,16.746416673413478,8.258583329734392,19.433416673564352,13.906583320931531,19.37404167256318,26.965333338011988,22.54441665718332,25.791624997509643,25.150833345833234,24.919166666222736,26.203541667200625,24.69604165526107,12.730000002193265,25.79600000171922,20.998250009142794,20.116916653933004,20.510375004960224,21.312958328053355,20.35216666990891,24.28916667122394,22.09033332474064,20.353416679427028,24.525166663806885,22.463375004008412,21.035541663877666,19.374958326807246,22.468416675110348,19.377958320546895,20.287791674491018,13.05220833455678,18.79683333390858,14.543166660587303,20.046208330313675,13.293791678734124,21.59199999005068,11.748000004445203,8.335000005899929,16.638291665003635,8.36670832359232,8.335000005899929,8.335000005899929,8.334999991348013,15.77325000835117,9.2317499947967,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,20.520541671430692,21.495541659533046,7.993916675332002,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,19.330666662426665,14.009333332069218,8.335000005899929,8.334999991348013,19.43816666607745,13.901833328418434,8.335000005899929,16.150833340361714,8.854166662786156,8.334999991348013,8.335000005899929,25.037583327502944,22.076041670516133,11.263958338531666,25.00500000314787,25.004999988595955,25.00500000314787,19.031416668440215,23.279041663045064,15.6624166702386,19.157458329573274,14.554666675394401,24.935083332820795,19.964166669524275,30.115749992546625,25.00500000314787,25.00500000314787,17.66966666036751,18.351416671066545,30.65891665755771,17.69845833769068,17.949750006664544,31.031791659188457,17.533624995849095,17.96637500228826,24.315583330462687,15.021458340925165,17.822249996243045,15.695708338171244,20.595374997355975,12.744624997139908,17.0336250012042,7.97137500194367,25.00500000314787,8.334999991348013,25.00500000314787,8.335000005899929,17.33845833223313,7.666541670914739,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,16.670000011799857,8.334999991348013,8.335000005899929],"refreshRateHz":120,"environmentBefore":{"mountedMarkerViews":200,"visibleMarkerViews":200,"os":"26.6","lowPowerMode":false,"thermalState":1,"applicationActive":true},"environmentAfter":{"mountedMarkerViews":200,"visibleMarkerViews":200,"os":"26.6","lowPowerMode":false,"applicationActive":true,"thermalState":2}},
+{"kind":"marker-view-benchmark","suite":"control","provider":"apple","mode":"overlay-layout","count":200,"pass":1,"beforeBytes":403031320,"afterBytes":475186480,"durationMs":6094.674458334339,"environmentAfter":{"os":"26.6","thermalState":2,"lowPowerMode":false,"visibleMarkerViews":0,"applicationActive":true,"mountedMarkerViews":0},"refreshRateHz":120,"environmentBefore":{"thermalState":2,"os":"26.6","lowPowerMode":false,"visibleMarkerViews":0,"applicationActive":true,"mountedMarkerViews":0},"expectedMs":[8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335000005899929,8.335000005899929,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335083330166526,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929],"intervalsMs":[8.335000005899929,8.334999991348013,8.335000005899929,17.915374992298894,7.089625010848977,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.367708331206813,8.335083330166526,8.335083344718441,8.335083330166526,25.062874992727302,8.277458342490718,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,16.670166674884968,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,17.061916660168208,7.94333333033137,8.335083344718441,8.335083330166526,16.20800000091549,8.797249989584088,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,21.311999997124076,12.028333338093944,19.21045834023971,14.129874994978309,19.894833327271044,21.411208334029652,8.704458334250376,25.005250005051494,16.078166663646698,8.927083341404796,16.661999994539656,16.67833332612645,16.28516666823998,17.05516666697804,17.92595833831001,17.686666673398577,31.068041658727452,25.005250005051494,25.00524999049958,17.62312500795815,24.052291657426395,16.670166674884968,17.563583329319954,15.037041666801088,17.751708335708827,16.32833333860617,17.278416664339602,15.445833327248693,8.951166673796251,21.3274999987334,19.472500003757887,25.880666653392836,17.10983333759941,7.895416667452082,19.916041666874662,13.424291668343358,25.005250005051494,8.335083330166526,17.579708335688338,7.425541669363156,8.335083330166526,25.00524999049958,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,16.5031250071479,8.502124997903593,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,20.017333328723907,13.323000006494112,8.335083330166526,19.996083341538906,13.344249993679114,8.335083330166526,22.714541672030464,10.625791663187556,21.43054167390801,11.90979166131001,22.56029166164808,19.115125003736466,8.335083330166526,22.085708333179355,19.58970833220519,25.005250005051494,19.00941666099243,24.799666673061438,14.536500006215647,19.8908333259169,21.784583339467645,19.031791656743735,30.978708338807337,17.595208337297663,18.90958333387971,24.48429165815469,22.36175000143703,19.19145834108349,23.861708323238418,23.627500006114133,25.005250005051494,19.16370833350811,22.511708331876434,19.10166666493751,30.90883333061356,17.87845832586754,17.728125007124618,14.403916662558913,21.50366667774506,19.577083323383704,8.929750008974224,23.026374998153187,10.313958322512917,19.895375007763505,13.444958327454515,8.335083344718441,16.670166660333052,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,17.05979167309124,7.945458331960253,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,24.37029166321736,8.970041657448746,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,16.670166660333052,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,25.005250005051494,8.335083330166526,8.335083330166526,18.055291671771556,6.9499583332799375,8.335083330166526,19.45483333838638,13.88549999683164,25.005250005051494,25.00524999049958,25.005250005051494,25.005250005051494,17.553916666656733,16.0747083282331,24.716958330827765,25.005250005051494,19.405916667892598,13.934416667325422,24.332416665856726,17.158041664515622,20.187125002848916,13.338166667381302,24.849458335665986,25.161041659885086,17.452583328122273,24.222833337262273,16.670166674884968,17.40162499481812,15.606583328917623,17.714833331410773,15.442083342350088,19.53016666811891,22.660791655653156,25.005250005051494,25.005250005051494,25.00524999049958,25.005250005051494,17.546541668707505,7.458708336343989,21.346124995034188,11.994208340183832,22.399333320208825,19.27608334517572,20.309125000494532,13.031208334723487,8.335083330166526,17.24166666099336,7.763583329506218,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,19.582833323511295,13.757500011706725,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,16.670166660333052,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,21.859333326574415,11.481000008643605,8.335083330166526,16.2035416578874,8.801708347164094,8.335083330166526,8.335083330166526,20.06920833082404,13.27112500439398,25.774791662115604,15.900625003268942,17.295416662818752,19.147916667861864,13.567166664870456,24.425333336694166,18.127874995116144,19.232708335039206,24.233666670625098,14.001416668179445,21.461500000441447,20.21799999056384,21.295541679137386,12.040708330459893,25.00524999049958,25.005250005051494,17.560583335580304,18.50245833338704,30.617625001468696,25.005250005051494,25.00524999049958,17.40016667463351,24.275249990751036,16.670166674884968,8.335083330166526,22.90737499424722,19.777041670749895,21.226124998065643,18.746500005363487,19.931125003495254,14.102999994065613,23.890083335572854,17.031291659804992,9.089125000173226,22.715708342730068,10.624624992487952,21.92908333381638,11.41125000140164,8.335083330166526,17.495708336355165,7.509541668696329,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,20.817333323066123,12.523000012151897,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,16.670166660333052,17.459791677538306,7.545458327513188,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,16.670166674884968,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,19.66279167390894,13.677541661309078,8.335083330166526,19.827916665235534,13.512416669982485,25.005250005051494,21.187458332860842,12.152874987805262,20.81354167603422,23.063500004354864,22.803624990046956,17.676166666205972,7.329083338845521,22.716999999829568,21.432124995044433,25.256541674025357,24.55562500108499,31.06495832616929,25.005250005051494,19.162541662808508,22.879083335283212,19.36858333647251,24.201666659791954,22.133541671792045,19.342833329574205,20.10470833920408,18.653541657840833,19.764124997891486,14.431375006097369,20.112625003093854,21.562791662290692,25.005250005051494,25.00524999049958,25.005250005051494,17.48304166540038,16.343833340215497,7.848541659768671,8.335083330166526,16.932166676269844,8.07308332878165,8.335083330166526,20.392458332935348,12.947875002282672,23.438999996869825,9.901333338348195,8.335083330166526,8.335083330166526,16.01679167652037,8.988458328531124,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526]},
+{"kind":"marker-view-benchmark","suite":"control","provider":"apple","mode":"live-transform","count":200,"pass":1,"beforeBytes":406947072,"afterBytes":456049944,"environmentAfter":{"applicationActive":true,"visibleMarkerViews":200,"mountedMarkerViews":200,"lowPowerMode":false,"os":"26.6","thermalState":2},"durationMs":6038.879541665665,"environmentBefore":{"applicationActive":true,"visibleMarkerViews":200,"mountedMarkerViews":200,"lowPowerMode":false,"os":"26.6","thermalState":2},"intervalsMs":[8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.302375004859641,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.367541668121703],"refreshRateHz":120,"expectedMs":[8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013]},
+{"kind":"marker-view-benchmark","suite":"control","provider":"apple","mode":"overlay-transform","count":200,"pass":1,"beforeBytes":400852248,"afterBytes":453166360,"durationMs":6038.780250004493,"environmentAfter":{"lowPowerMode":false,"thermalState":2,"mountedMarkerViews":0,"visibleMarkerViews":0,"applicationActive":true,"os":"26.6"},"environmentBefore":{"thermalState":2,"mountedMarkerViews":0,"lowPowerMode":false,"visibleMarkerViews":0,"applicationActive":true,"os":"26.6"},"expectedMs":[8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929],"intervalsMs":[8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.367708331206813,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526],"refreshRateHz":120},
+{"kind":"marker-view-benchmark","suite":"control","provider":"apple","mode":"overlay-transform","count":200,"pass":2,"beforeBytes":436815104,"afterBytes":451888408,"expectedMs":[8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929],"environmentBefore":{"thermalState":2,"os":"26.6","mountedMarkerViews":0,"applicationActive":true,"lowPowerMode":false,"visibleMarkerViews":0},"intervalsMs":[8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.302375004859641,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929],"refreshRateHz":120,"environmentAfter":{"thermalState":2,"os":"26.6","mountedMarkerViews":0,"applicationActive":true,"visibleMarkerViews":0,"lowPowerMode":false},"durationMs":6038.181249998161},
+{"kind":"marker-view-benchmark","suite":"control","provider":"apple","mode":"live-transform","count":200,"pass":2,"beforeBytes":436274456,"afterBytes":450315544,"intervalsMs":[8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.367750007892027,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526],"environmentAfter":{"thermalState":2,"lowPowerMode":false,"mountedMarkerViews":200,"visibleMarkerViews":200,"applicationActive":true,"os":"26.6"},"refreshRateHz":120,"environmentBefore":{"thermalState":2,"mountedMarkerViews":200,"lowPowerMode":false,"visibleMarkerViews":200,"applicationActive":true,"os":"26.6"},"durationMs":6040.584916656371,"expectedMs":[8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929]},
+{"kind":"marker-view-benchmark","suite":"control","provider":"apple","mode":"overlay-layout","count":200,"pass":2,"beforeBytes":403506456,"afterBytes":457147672,"durationMs":6068.9722083334345,"expectedMs":[8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083344718441,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083344718441,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526],"environmentBefore":{"lowPowerMode":false,"os":"26.6","visibleMarkerViews":0,"applicationActive":true,"mountedMarkerViews":0,"thermalState":2},"environmentAfter":{"lowPowerMode":false,"os":"26.6","visibleMarkerViews":0,"applicationActive":true,"thermalState":2,"mountedMarkerViews":0},"intervalsMs":[16.600083326920867,8.405166663578711,8.335083344718441,17.171791652799584,7.8334583376999944,8.335083330166526,8.335083344718441,16.670166660333052,8.335083330166526,8.335083330166526,8.335083344718441,25.00524999049958,8.335083344718441,8.335083330166526,8.335083330166526,15.97770833177492,9.027541673276573,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,25.005250005051494,16.705875008483417,8.299374996568076,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,16.670166674884968,8.335083330166526,8.335083330166526,8.335083344718441,25.00524999049958,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,16.670166660333052,8.335083330166526,21.990749999531545,11.349583335686475,25.005250005051494,16.884833326912485,16.455500008305535,8.335083330166526,19.140916658216156,22.564291677554138,16.640374989947304,16.378375003114343,16.961958332103677,16.857249996974133,16.483083338243887,16.59516667132266,16.74516666389536,16.29908333416097,8.706166670890525,17.320624989224598,24.354791676159948,8.335083330166526,23.412374997860752,9.927958337357268,25.00524999049958,16.66300000215415,16.67733333306387,8.335083344718441,18.806791660608724,23.151250003138557,16.387541661970317,17.118749994551763,7.886500010499731,19.3790416669799,13.961291668238118,25.00524999049958,16.90216666611377,8.103083338937722,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,16.691625001840293,8.3136250032112,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,16.385041657486,8.62020833301358,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,15.914125004201196,9.091125000850298,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,25.00524999049958,8.335083330166526,8.335083344718441,19.573916666558944,22.101499998825602,18.762958323350176,14.577375011867844,22.827124994364567,10.513208340853453,20.55383332481142,23.338541664998047,22.124958341009915,20.724000001791865,13.279666658490896,21.03687499766238,12.30345833755564,23.73220832669176,9.608125008526258,24.902166667743586,19.29050000035204,14.152916657621972,22.613625013036653,10.726708322181366,25.40758333634585,24.602916673757136,16.670166660333052,17.633833340369165,16.613874991890043,18.605333330924623,22.162708337418735,25.005250005051494,25.00524999049958,17.41083333035931,18.488458343199454,30.781374996877275,17.5054583378369,7.499791667214595,20.754708326421678,12.585625008796342,19.0394999954151,14.300833325251006,25.005250005051494,8.335083330166526,19.105458341073245,14.234874994144775,8.335083330166526,17.300958337727934,7.7042916673235595,8.335083330166526,8.335083330166526,8.335083344718441,17.137541668489575,7.867708322010003,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,25.005250005051494,17.676000003120862,7.3292499873787165,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,16.670166660333052,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,16.670166674884968,8.335083330166526,8.335083330166526,8.335083330166526,25.005250005051494,16.670166660333052,16.670166674884968,8.335083330166526,8.335083330166526,8.335083330166526,25.005250005051494,19.420916665694676,22.25449999968987,17.3638749984093,7.641375006642193,22.59537499048747,27.4151250050636,17.62600000074599,16.638125001918525,19.150208332575858,22.064166667405516,18.842000004951842,23.3707500010496,16.210416666581295,24.43154166394379,17.564708323334344,19.700166667462327,23.309041673201136,22.776083336793818,17.58454166701995,24.090458333375864,16.669999997247942,8.334999991348013,22.47058333887253,19.204416661523283,17.678208343568258,15.930916662910022,8.065874993917532,22.678833338432014,10.661166670615785,18.761624989565462,14.578375004930422,21.540416666539386,11.799583342508413,20.61108332418371,12.728916670312174,22.6975416589994,10.642458335496485,8.335000005899929,16.669999997247942,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,25.00500000314787,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,16.669999997247942,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,25.00500000314787,8.335000005899929,8.334999991348013,25.00500000314787,8.335000005899929,8.334999991348013,19.88279167562723,13.457208333420567,21.316083322744817,12.023916671751067,25.00500000314787,18.76016666938085,22.91483333101496,18.783083331072703,14.55691666342318,21.85937500325963,19.815624997136183,25.00500000314787,25.00500000314787,17.409458334441297,15.23379166610539,18.0125833285274,16.20270832790993,18.623750002007,22.872708344948478,25.004999988595955,19.015166675671935,14.324833333375864,19.723791658179834,21.951208342215978,25.004999988595955,17.404750004061498,15.85545833222568,8.414791664108634,22.897291666595265,18.777708333800547,8.335000005899929,22.337625006912276,18.374458319158293,9.297916680225171,22.11854165943805,11.221458335057832,20.396708336193115,12.943291658302769,8.335000005899929,25.00500000314787,8.334999991348013,8.335000005899929,19.220583330024965,14.119416664470918,8.335000005899929,8.334999991348013,25.00500000314787,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,16.61887500085868,8.386125002289191,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,21.38508332427591,11.954916670219973,8.335000005899929,16.669999997247942,8.334999991348013,8.335000005899929,16.669999997247942,8.335000005899929,22.172249999130145,11.167749995365739,21.386041669757105,19.34408333909232,25.949874994694255,25.00500000314787,25.004999988595955,25.00500000314787,17.044624997652136,15.964833335601725,19.194333333871327,14.476208336418495,25.139166667941026,18.86762499634642,23.367250003502704,15.645166669855826,25.335791666293517,17.668208325630985,24.006791674764827,16.669999997247942,25.00500000314787,17.160083327325992,18.342416660743766,23.183041674201377,15.70312499825377,8.96133334026672,21.453041656059213,11.88695833843667,25.00500000314787,17.4400416581193,7.564958345028572,8.334999991348013,16.12504167133011],"refreshRateHz":120},
+{"kind":"marker-view-benchmark","suite":"control","provider":"apple","mode":"live-layout","count":200,"pass":2,"beforeBytes":410436888,"afterBytes":460391704,"refreshRateHz":120,"environmentAfter":{"thermalState":2,"mountedMarkerViews":200,"applicationActive":true,"visibleMarkerViews":200,"os":"26.6","lowPowerMode":false},"environmentBefore":{"thermalState":2,"applicationActive":true,"mountedMarkerViews":200,"visibleMarkerViews":200,"os":"26.6","lowPowerMode":false},"intervalsMs":[8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,25.00524999049958,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,25.005250005051494,19.70620833162684,13.63412500359118,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,16.670166674884968,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,16.670166674884968,8.335083330166526,8.335083330166526,16.670166674884968,8.335083330166526,8.335083330166526,15.875333338044584,9.12991666700691,19.07362499332521,14.266708341892809,18.988874988281168,25.693833333207294,24.24520833301358,31.093083336600102,25.005250005051494,25.005250005051494,25.00524999049958,18.873333334340714,22.802083331043832,25.005250005051494,25.005250005051494,17.701208329526708,18.737874997896142,30.241583328461275,19.478000001981854,30.532500008121133,25.00524999049958,25.005250005051494,25.005250005051494,25.00524999049958,25.005250005051494,25.005250005051494,25.00524999049958,25.005250005051494,25.005250005051494,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,25.005250005051494,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,25.00524999049958,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,16.696333332220092,8.308916672831401,8.335083330166526,8.335083330166526,17.68804166931659,7.317208335734904,8.335083330166526,8.335083330166526,16.670166674884968,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,16.670166660333052,8.335083344718441,18.86283332714811,14.477499993517995,19.896000012522563,22.761000000173226,24.02366665774025,25.005250005051494,25.00524999049958,19.761916671996005,24.57158332981635,21.354916665586643,20.927833335008472,24.25000000221189,21.969166671624407,21.50341666128952,20.697916668723337,18.921333336038515,22.75408332934603,21.666375003405847,19.422375000431202,22.27258333005011,11.654416666715406,8.335083330166526,24.666041674208827,17.177208326756954,8.167250009137206,19.984041660791263,24.906708335038275,13.45483332988806,16.670166674884968,8.335083330166526,25.00524999049958,8.335083344718441,20.0043749937322,13.33595834148582,8.335083330166526,8.335083330166526,18.924624993815087,14.415708341402933,8.335083330166526,8.335083330166526,25.005250005051494,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,19.016458332771435,27.255583336227573,12.07354165671859,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,16.766041677328758,8.239208327722736,8.335083330166526,8.335083344718441,8.335083330166526,17.479958332842216,7.5252916576573625,8.335083344718441,8.335083330166526,8.335083330166526,15.77341667143628,9.231833333615214,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,25.00524999049958,20.28229167626705,13.05804165895097,25.005250005051494,18.900750001193956,23.346541667706333,21.084249994601123,21.593708341242746,22.606916667427868,16.835249989526346,21.515000000363216,20.425249997060746,20.528208333416842,21.160875010536984,19.85137499286793,26.14087500842288,24.443416667054407,24.366749988985248,22.269083332503214,18.812958340276964,25.59929166454822,25.004583338159136,24.75037499971222,22.523958337842487,19.536666659405455,13.80366666126065,25.005250005051494,19.138041665428318,14.202291669789702,18.430833326419815,6.574416678631678,18.977374988025986,14.362958332640119,8.335083344718441,16.731416661059484,16.608916674158536,8.335083330166526,19.149958330672234,14.190375004545785,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,25.005250005051494,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,16.368374999728985,8.636875005322509,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,16.36349999171216,8.641749998787418,8.335083344718441,8.335083330166526,19.628458336228505,13.711874998989515,8.335083330166526,16.670166660333052,8.335083330166526,8.335083344718441,16.670166660333052,8.335083330166526,8.335083344718441,16.03074999002274,8.974500000476837,20.69908333942294,12.641249995795079,20.68620832869783,23.077208345057443,22.058124988689087,20.138833337114193,25.317708335933276,24.927749997004867,24.76349999778904,25.21829167380929,24.044791658525355,23.149916669353843,19.43145833502058,30.579041660530493,25.005250005051494,19.517333334079012,22.158083331305534,19.095166673650965,14.245166661567055,19.585291665862314,24.907166662160307,24.519375001545995,31.009166676085442,25.00524999049958,18.794500007061288,14.545833328156732,16.670166674884968,8.335083330166526,8.335083330166526,8.335083330166526,20.522833336144686,12.817499999073334,8.335083330166526,8.335083344718441,20.81750000070315,12.522833334514871,8.335083330166526,8.335083330166526,19.32808333367575,14.01225000154227,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,25.005250005051494,19.94604166247882,13.3942916727392,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,16.178375008166768,8.826874996884726,8.335083330166526,8.335083330166526,8.335083330166526,16.670166674884968,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,15.687666658777744,9.317583331721835,8.335083344718441,16.670166660333052,8.335083330166526,8.335083330166526,16.95170834136661,8.053541663684882,20.68195833999198,12.65837499522604,20.567416664562188,25.896208331687376,24.733458340051584,19.835666666040197,22.43145833199378,19.432666667853482,20.09429167082999,25.16966666735243,30.216249986551702,25.005250005051494,18.817625008523464,25.581374997273088,13.946583334472962,22.323958328342997,22.106125004938804,24.973749998025596,25.090083334362134,24.57045833580196,22.261291655013338,21.85499999905005,20.191166666336358,19.742416669032536,13.597916666185483,8.335083330166526,23.944416680024005,9.395916655194014,25.005250005051494,8.335083330166526,25.005250005051494,8.335083330166526,8.335083330166526,15.937083342578262,9.068166662473232,8.335083330166526,8.335083330166526,19.858666666550562,13.481666668667458,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526],"expectedMs":[8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526],"durationMs":6086.044291660073}
+],"summary":[
+ {
+ "mode": "overlay-transform",
+ "count": 200,
+ "pass": 0,
+ "samples": 723,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.97482354062842,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 8.367749993340112,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 62.31254577636719,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 200,
+ "pass": 0,
+ "samples": 723,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.97571031189422,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 8.335083344718441,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 39.109375,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "overlay-layout",
+ "count": 200,
+ "pass": 0,
+ "samples": 520,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 86.16974965634768,
+ "p50Ms": 8.335083344718441,
+ "p95Ms": 22.080583337810822,
+ "p99Ms": 25.005250005051494,
+ "maxMs": 25.005250005051494,
+ "lateCallbackPercent": 37.30769230769231,
+ "intervalsWithin120HzBudgetPercent": 62.69230769230769,
+ "memoryDeltaMiB": 15.937522888183594,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 200,
+ "pass": 0,
+ "samples": 500,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 82.97673964231824,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 25.004999988595955,
+ "p99Ms": 25.53137500945013,
+ "maxMs": 30.929958331398666,
+ "lateCallbackPercent": 36.4,
+ "intervalsWithin120HzBudgetPercent": 63.4,
+ "memoryDeltaMiB": 17.250022888183594,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 200,
+ "pass": 1,
+ "samples": 445,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 73.5382177394284,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 25.00500000314787,
+ "p99Ms": 30.37895834131632,
+ "maxMs": 31.204499988234602,
+ "lateCallbackPercent": 46.29213483146067,
+ "intervalsWithin120HzBudgetPercent": 53.70786516853933,
+ "memoryDeltaMiB": 50.140647888183594,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "overlay-layout",
+ "count": 200,
+ "pass": 1,
+ "samples": 435,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 71.58953473739004,
+ "p50Ms": 9.089125000173226,
+ "p95Ms": 25.005250005051494,
+ "p99Ms": 30.617625001468696,
+ "maxMs": 31.068041658727452,
+ "lateCallbackPercent": 51.724137931034484,
+ "intervalsWithin120HzBudgetPercent": 48.275862068965516,
+ "memoryDeltaMiB": 68.8125228881836,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 200,
+ "pass": 1,
+ "samples": 723,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.97572441369354,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 8.367541668121703,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 46.828147888183594,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "overlay-transform",
+ "count": 200,
+ "pass": 1,
+ "samples": 723,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.97434324633434,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 8.367708331206813,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 49.890625,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "overlay-transform",
+ "count": 200,
+ "pass": 2,
+ "samples": 723,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.97619310579168,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 8.335083344718441,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 14.375022888183594,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 200,
+ "pass": 2,
+ "samples": 723,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.97452491157559,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 8.367750007892027,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 13.390625,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "overlay-layout",
+ "count": 200,
+ "pass": 2,
+ "samples": 457,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 75.424989696489,
+ "p50Ms": 8.335083344718441,
+ "p95Ms": 25.00500000314787,
+ "p99Ms": 25.335791666293517,
+ "maxMs": 30.781374996877275,
+ "lateCallbackPercent": 46.17067833698031,
+ "intervalsWithin120HzBudgetPercent": 53.82932166301969,
+ "memoryDeltaMiB": 51.15625,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 200,
+ "pass": 2,
+ "samples": 436,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 71.85304272923256,
+ "p50Ms": 8.335083344718441,
+ "p95Ms": 25.005250005051494,
+ "p99Ms": 30.241583328461275,
+ "maxMs": 31.093083336600102,
+ "lateCallbackPercent": 46.559633027522935,
+ "intervalsWithin120HzBudgetPercent": 53.440366972477065,
+ "memoryDeltaMiB": 47.640625,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ }
+]}
diff --git a/package/src/native/specs/MapView.nitro.ts b/package/src/native/specs/MapView.nitro.ts
index 0522c39..8c997c5 100644
--- a/package/src/native/specs/MapView.nitro.ts
+++ b/package/src/native/specs/MapView.nitro.ts
@@ -238,7 +238,7 @@ export interface MapViewMethods extends HybridViewMethods {
*/
applyCamera(camera: Camera): Promise;
- /** Animates the camera to the given position. */
+ /** Animates the camera to the given position. Duration is in seconds. */
animateCamera(camera: Camera, duration?: number): Promise;
/** Returns the currently visible geographic region. */
diff --git a/package/src/types/ref.ts b/package/src/types/ref.ts
index fa24206..0adcd97 100644
--- a/package/src/types/ref.ts
+++ b/package/src/types/ref.ts
@@ -12,7 +12,7 @@ export interface MapViewRef {
/** Sets the camera position immediately. */
setCamera(camera: Camera): Promise;
- /** Animates the camera to the given position. */
+ /** Animate to a camera position; duration is in seconds. */
animateCamera(camera: Camera, duration?: number): Promise;
/** Returns the currently visible geographic region. */
From 410badc8581d73271c10d56db1164d2d47f17493 Mon Sep 17 00:00:00 2001
From: Piotr Graczyk
Date: Fri, 11 Sep 2026 14:22:28 +0200
Subject: [PATCH 07/10] test: record corrected moving-camera and JSX control
results
---
docs/custom-marker-views.md | 14 +-
docs/research/custom-marker-device-results.md | 91 ++-
experiments/custom-markers/README.md | 5 +-
.../results/iphone-15-pro-v3-control.json | 207 ++++++
.../results/iphone-15-pro-v3-primary.json | 615 ++++++++++++++++++
.../iphone-15-pro-v3-surface-diagnostics.json | 1 +
.../custom-markers/summarize-rn-benchmark.py | 5 +
7 files changed, 896 insertions(+), 42 deletions(-)
create mode 100644 experiments/custom-markers/results/iphone-15-pro-v3-control.json
create mode 100644 experiments/custom-markers/results/iphone-15-pro-v3-primary.json
create mode 100644 experiments/custom-markers/results/iphone-15-pro-v3-surface-diagnostics.json
diff --git a/docs/custom-marker-views.md b/docs/custom-marker-views.md
index da0f9c2..7145942 100644
--- a/docs/custom-marker-views.md
+++ b/docs/custom-marker-views.md
@@ -24,12 +24,12 @@ Give every item a stable React key when rendering a list. Direct `MarkerView` ch
## Contract
-| Property | Behavior |
-| --- | --- |
-| `coordinate` | Required finite latitude −90…90 and longitude −180…180. Changing it repositions only that host. |
-| `width`, `height` | Required positive finite dimensions in points/dp. They define layout, clipping, hit-testing, and the anchor reference. |
-| `anchor` | Defaults to bottom-center (`{ x: 0.5, y: 1 }`). Components are finite fractions of the bounds; values outside 0…1 deliberately offset the host. |
-| `children` | Live React Native tree. Animate child views inside the fixed bounds; the native host reserves its own transform for geographic position. |
+| Property | Behavior |
+| ----------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
+| `coordinate` | Required finite latitude −90…90 and longitude −180…180. Changing it repositions only that host. |
+| `width`, `height` | Required positive finite dimensions in points/dp. They define layout, clipping, hit-testing, and the anchor reference. |
+| `anchor` | Defaults to bottom-center (`{ x: 0.5, y: 1 }`). Components are finite fractions of the bounds; values outside 0…1 deliberately offset the host. |
+| `children` | Live React Native tree. Animate child views inside the fixed bounds; the native host reserves its own transform for geographic position. |
Content is screen-aligned and clipped to its bounds and the map viewport. Marker views are composed above the SDK surface, including its annotations and controls. Use map padding/placement to avoid covering controls. Their order follows JSX order. They do not participate in SDK clustering, annotation collision, depth occlusion, dragging, callouts, or flat/ground-plane rotation. Use `Marker` descriptors for those SDK marker features and for large static datasets.
@@ -43,7 +43,7 @@ Removing snapshots eliminates one expensive class of work; it does not remove na
The target is no material regression against the same provider and device baseline for a recorded workload. Google Maps iOS documents a 60 FPS maximum for its native map; a 120 Hz JSX overlay or display callback is not evidence of 120 distinct map frames. See [SDK evidence](research/custom-marker-sdk-sources.md).
-The first [physical iPhone experiment](research/custom-marker-device-results.md) found near-120 Hz main-thread callback cadence for static hosts and 10/50 animated hosts, but regressions for 200 animated-layout hosts and a hot 200-transform case. This is not presented-frame proof, and unrestricted 120 FPS acceptance remains open. Run the opt-in example with `EXPO_PUBLIC_MARKER_VIEW_BENCHMARK=1` in a Release build. Its A/B flow compares pins, static JSX, child transform animation, and child layout animation at 10/50/200 mounted hosts, using three passes and alternating mode order. Native callback intervals and memory are diagnostic data; Instruments/Perfetto and functional checks are also required before accepting the feature.
+The corrected moving-camera [physical iPhone experiment](research/custom-marker-device-results.md) found 118.5–120.0 Hz main-thread callback cadence for 10/50 hosts, 119.3 Hz for 200 static hosts, 117.5–119.5 Hz for 200 transformed hosts, and 51.4–54.8 Hz for 200 animated-width hosts. These are callback diagnostics, not presented-frame proof; unrestricted 120 FPS acceptance remains open. The original duration-error runs are retained separately and excluded from moving-camera acceptance. Run the opt-in example with `EXPO_PUBLIC_MARKER_VIEW_BENCHMARK=1` in a Release build. Its A/B flow compares pins, static JSX, child transform animation, and child layout animation at 10/50/200 mounted hosts, using three passes and alternating mode order. Native callback intervals and memory are diagnostic data; Instruments/Perfetto and functional checks are also required before accepting the feature.
The example reuses the local FrameStats module introduced in PR #66. It is example-only and does not ship in the library. Trace the application without a debugger attached; identify the actual map presentation/animation cadence rather than treating display callback intervals as GPU frames. Record device/OS/SDK, visible count, thermal and power state, route, marker dimensions, and baseline/candidate traces.
diff --git a/docs/research/custom-marker-device-results.md b/docs/research/custom-marker-device-results.md
index 94f62f1..db7b55b 100644
--- a/docs/research/custom-marker-device-results.md
+++ b/docs/research/custom-marker-device-results.md
@@ -1,45 +1,72 @@
# Physical iPhone experiment, 2026-09-11
-> **Camera-workload error:** these initial series passed `1200` to a duration measured in seconds. They are not valid moving-camera acceptance runs. Retained numbers describe internal JSX animation under that faulty camera workload. Version 3 corrects this to `1.2` seconds and records camera endpoints.
+The unrestricted **arbitrary JSX at 120 FPS** target is not met. Live Fabric hosts avoid bitmap snapshots and preserve child state/animations, but arbitrary child layout can exceed the frame budget. Main-thread display callbacks and actual map presentation are separate measurements.
-## Build and workload
+## Corrected moving-camera workload (v3)
-- iPhone 15 Pro, iOS 26.6 (23G5043d), Release, RN 0.86 / Reanimated 4.5.0 / Nitro 0.35.10, MapKit. Library native source matches commit `3085c91`.
-- `CADisableMinimumFrameDurationOnPhone` enabled; maximum reported refresh 120 Hz. Low-power mode was off and the app active at every recorded endpoint.
-- 36 cases: 10/50/200 submitted markers, four modes, three passes, alternating mode order. Each recorded case includes four camera animations and about six seconds of display callbacks.
-- All live-host cases reported the requested number mounted and visible at both endpoints. Descriptor pins retain SDK collision/culling behavior, so submitted counts are not a guarantee of equal rendered pin counts.
-- Thermal state began at fair (1) and became serious (2), remaining serious in pass 3. Results are retained across that transition.
-- An Animation Hitches + Points of Interest recording covered early cases. It failed during finalization with a DTKTraceTapMessageHandler assertion, so it provides no usable presentation evidence. One accessibility verification overlapped the first pins case. These cases must not be described as uninstrumented.
-- Harness version 1 emitted both `transform` and `width` from its animated style (the inactive property stayed constant). The subsequent control experiment emits only the property being animated. Raw version-1 results remain separate.
+- iPhone 15 Pro, iOS 26.6 beta (23G5043d), Release, RN 0.86 / Reanimated 4.5.0 / Nitro 0.35.10, MapKit. Build source: `fc8fd56`; subsequent changes only analyze/document these results.
+- 36 cases: 10/50/200 submitted markers, four modes, three passes with alternating mode order. Descriptor pins are the control in the same binary; this is not a separately built pre-change release comparison. SDK pin collision/culling can make the rendered count differ.
+- Four camera animations per case, each **1.2 seconds**, spaced 1.5 seconds apart. Every case reached its checked final coordinate and 36-degree heading. Warmup/remount and logging are outside the recorded interval.
+- Fixed 96 × 48 point JSX badges contain text, a glyph, and a stateful Pressable. Transform mode animates child rotation; layout mode animates child width. Each style returns only its animated property. No Reanimated global performance flags were enabled.
+- App active and low-power mode off at all endpoints. Thermal state stayed fair (1) throughout this series. Every live case mounted the requested count. With 200 hosts, endpoint visible counts changed from 200 to 190 as the camera moved; 10/50 remained fully visible. Counts are not a per-frame census.
+- Metal traces overlapped portions of passes 1 and 2. An accessibility snapshot was requested around the final case and failed during local disk pressure. Treat this as an instrumented exploratory series, not an uninstrumented acceptance run.
-## Main-thread callback results
+## Main-thread callback diagnostics
-These are CADisplayLink callback diagnostics, **not presented map/GPU FPS**. Ranges span all three passes; p95 is the worst per-case p95.
+Ranges span three passes; p95 is the worst per-case p95. These numbers **do not represent presented map/GPU FPS**.
-| Content | Count | Callback Hz range | Worst p95 ms |
-| --- | ---: | ---: | ---: |
-| pins | 10 | 116.5–119.8 | 8.34 |
-| live-static | 10 | 119.6–120.0 | 8.34 |
-| live-transform | 10 | 119.6–120.0 | 8.34 |
-| live-layout | 10 | 119.0–120.0 | 8.34 |
-| pins | 50 | 119.6–120.0 | 8.34 |
-| live-static | 50 | 119.6–119.6 | 8.34 |
-| live-transform | 50 | 119.8–120.0 | 8.34 |
-| live-layout | 50 | 119.5–120.0 | 8.34 |
-| pins | 200 | 119.6–119.8 | 8.34 |
-| live-static | 200 | 119.6–120.0 | 8.34 |
-| live-transform | 200 | 86.2–120.0 | 24.59 |
-| live-layout | 200 | 36.1–68.0 | 50.01 |
+| Content | Count | Callback Hz range | Worst p95 ms |
+| -------------- | ----: | ----------------: | -----------: |
+| pins | 10 | 119.1–119.3 | 8.34 |
+| live-static | 10 | 119.2–119.5 | 8.34 |
+| live-transform | 10 | 118.5–119.3 | 8.34 |
+| live-layout | 10 | 119.3–119.5 | 8.34 |
+| pins | 50 | 119.3–119.5 | 8.34 |
+| live-static | 50 | 118.8–119.3 | 8.34 |
+| live-transform | 50 | 120.0–120.0 | 8.34 |
+| live-layout | 50 | 119.8–120.0 | 8.34 |
+| pins | 200 | 119.3–119.3 | 8.34 |
+| live-static | 200 | 119.3–119.3 | 8.34 |
+| live-transform | 200 | 117.5–119.5 | 8.34 |
+| live-layout | 200 | 51.4–54.8 | 35.72 |
-The unrestricted acceptance target is **not met**: 200 animated-width markers exceed the 8.33 ms main-thread interval in all passes, and 200 transformed markers regress in the hot third pass. Static live hosts and the 10/50-marker cases stayed close to the descriptor baseline. This does not establish a universal safe count for arbitrary JSX.
+[Raw v3 samples and per-case diagnostics](../../experiments/custom-markers/results/iphone-15-pro-v3-primary.json) · [Reproduction](../../experiments/custom-markers/README.md)
-The follow-up experiment compares the same animated JSX in ordinary screen overlays against geographic hosts to isolate intrinsic React Native animation work from marker projection/hosting. It also retries presentation capture with shorter Game Performance Overview traces.
+## Same-JSX control (v3)
-[Raw samples and per-case diagnostics](../../experiments/custom-markers/results/iphone-15-pro-run-1.json) · [Reproduction and limitations](../../experiments/custom-markers/README.md)
+Twelve additional cases compare 200 fixed screen overlays against 200 geographic hosts, with the same badge and animation. All routes passed; endpoint thermal state remained fair. Overlays use fixed screen positions and do not match geographic visibility/overlap exactly, so this isolates a workload cost rather than providing a perfectly matched GPU control. A short Metal trace overlapped the final pass.
-## Functional and native checks
+| Content | Ordinary JSX callback Hz | Marker callback Hz |
+| -------------- | -----------------------: | -----------------: |
+| Child rotation | 119.5–119.8 | 117.2–118.7 |
+| Child width | 51.0–52.8 | 52.2–52.9 |
-- Physical iPhone: live JSX appeared, a marker Pressable updated its own state while the map press count stayed unchanged, and removing the map removed its live hosts. Camera motion and rotations run in the automated scenario; exact presentation synchronization still needs trace/visual acceptance.
+The width workload also fails the 120 Hz callback budget without geographic hosts. Marker rotation adds measurable tail latency (up to 2.24% late callbacks versus 0.28% in the ordinary overlay control). These results do not justify promising no cost for arbitrary JSX.
+
+[Raw v3 control samples](../../experiments/custom-markers/results/iphone-15-pro-v3-control.json)
+
+## Presentation diagnostics
+
+A completed 15-second Metal System Trace exposed app-associated displayed surface intervals. In the moving-camera capture, 639 of 677 such intervals were approximately 16.7 ms and 11 were approximately 8.3 ms. A separate 2-second synthesized pan over 200 descriptor pins produced 128 app-associated intervals: 125 near 16.7 ms and one near 8.3 ms. Both captures also include idle/transition intervals; neither is a matched, per-case 120 FPS acceptance comparison. The descriptor gesture control did not reproduce a sustained 120 FPS map baseline under these device conditions.
+
+[Extracted app-surface timing rows](../../experiments/custom-markers/results/iphone-15-pro-v3-surface-diagnostics.json) retain starts/durations without device identifiers. The source schemas are `displayed-surfaces-interval`, filtered to narratives naming the example application. These surface timings do not measure the separate React Native JSX composition layer.
+
+The longer 45-second labeled Metal capture failed with exit 133 during local disk pressure and left an unusable trace; it contributes no presentation evidence. A shorter labeled control capture completed. Earlier Animation Hitches capture failed with a DTKTraceTapMessageHandler assertion; Game Performance Overview provided no Metal frame rows, and its legacy 60 FPS estimate was not used as proof.
+
+Apple documents adaptive refresh arbitration rather than a guaranteed requested rate: [ProMotion guidance](https://developer.apple.com/documentation/quartzcore/optimizing-iphone-and-ipad-apps-to-support-promotion-displays). A matched baseline/candidate presentation run under reproducible 120 Hz map conditions remains required.
+
+## Clustering scope
+
+The experiments above intentionally disable clustering to expose the cost of fully expanded markers. They do not measure a clustered production workload. The requested feature also requires custom JSX clusters, native grouping, and tests for cluster expansion/collapse; that acceptance gate remains open in this recorded build.
+
+## Invalid earlier workloads
+
+The original v1 primary and v2 JSX-control series passed `1200` to a duration measured in seconds. They cannot establish moving-camera performance. Their raw files remain available for provenance: [v1 primary](../../experiments/custom-markers/results/iphone-15-pro-run-1.json), [v2 control](../../experiments/custom-markers/results/iphone-15-pro-control.json). Version 1 also returned both width and transform in its animated style; versions 2/3 return only the animated property. Do not pool these series.
+
+## Functional and build checks
+
+- Physical iPhone: live JSX appeared, a marker Pressable updated its state while the map press count stayed unchanged, and unmount removed its live hosts. All 36 corrected camera routes passed endpoint validation. Exact marker/map presentation synchronization is not established by endpoints.
- Actual UIKit host sources: anchor/projection, hit testing, culling/reentry, unmount/map isolation, surface replacement, and rendered clipping checks passed.
-- Android: Kotlin compilation, C++/JNI arm64 compilation, and 16 native unit tests passed, including ScrollView gesture ownership and cancellation/replay. No Android hardware performance result is claimed.
-- Package: 32 Jest tests and 51 Bun tests passed; lint, typecheck, library build, and example TypeScript checks passed.
+- iOS Release builds passed with the optional Google provider both disabled and enabled (Google Maps SDK 10.15.0). Runtime measurements here use MapKit only.
+- Android: Kotlin compilation, C++/JNI arm64 compilation, and 16 native tests passed, including ScrollView ownership and cancellation/replay. The example FrameStats module also compiled. Android hardware and Google iOS runtime acceptance remain open.
+- Package: 83 Bun tests passed after merging the main-branch test runner migration. Codegen, lint, package/provider typechecks, library build, and example TypeScript checks passed. The generated compatibility patch was checked for idempotence.
diff --git a/experiments/custom-markers/README.md b/experiments/custom-markers/README.md
index 23ce034..121e08d 100644
--- a/experiments/custom-markers/README.md
+++ b/experiments/custom-markers/README.md
@@ -60,7 +60,6 @@ At this raster size, 200 unique CPU images represent about 31.6 MiB; 1,000 repre
See [architecture recommendation](../../docs/research/custom-marker-performance.md) and [SDK sources](../../docs/research/custom-marker-sdk-sources.md).
-
## Live Fabric host checks
```sh
@@ -88,9 +87,9 @@ Raw iOS rows are appended to `Documents/marker-view-benchmark.jsonl` in the exam
```sh
xcrun devicectl device copy from --device YOUR_DEVICE --domain-type appDataContainer --domain-identifier com.nitromaps.example --source Documents/marker-view-benchmark.jsonl --destination /tmp/marker-view-benchmark.jsonl
-python3 experiments/custom-markers/summarize-rn-benchmark.py /tmp/marker-view-benchmark.jsonl --output /tmp/marker-view-summary.json
+python3 experiments/custom-markers/summarize-rn-benchmark.py /tmp/marker-view-benchmark.jsonl --suite primary --workload-version 3 --output /tmp/marker-view-summary.json
```
-A fresh installation or a separate copied log should be used for each investigation; the raw file intentionally appends across runs. Preserve raw samples, workload parameters, device/OS/build identity, and Instruments evidence before drawing a performance conclusion.
+The raw file intentionally appends across runs and can survive app upgrades. Separate repeated runs before summarizing; the suite/version filters prevent mixing different workloads but do not identify individual runs. The summarizer rejects version-3 rows whose camera endpoint validation failed. Preserve raw samples, workload parameters, device/OS/build identity, and Instruments evidence before drawing a performance conclusion.
The initial `iphone-15-pro-run-1.json` and `iphone-15-pro-control.json` used an incorrect camera duration of 1200 seconds. They are retained as faulty-workload diagnostics, **not moving-camera acceptance evidence**. Harness version 3 uses 1.2 seconds and saves camera endpoints. The v2 control separates transform and width properties and compares ordinary fixed screen overlays against geographic hosts.
diff --git a/experiments/custom-markers/results/iphone-15-pro-v3-control.json b/experiments/custom-markers/results/iphone-15-pro-v3-control.json
new file mode 100644
index 0000000..84743af
--- /dev/null
+++ b/experiments/custom-markers/results/iphone-15-pro-v3-control.json
@@ -0,0 +1,207 @@
+{"raw":[
+{"kind":"marker-view-benchmark","suite":"control","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"overlay-transform","count":200,"pass":0,"beforeBytes":389350632,"afterBytes":501220608,"refreshRateHz":120,"environmentBefore":{"thermalState":1,"lowPowerMode":false,"os":"26.6","mountedMarkerViews":0,"visibleMarkerViews":0,"applicationActive":true},"durationMs":6067.1282916737255,"environmentAfter":{"thermalState":1,"lowPowerMode":false,"os":"26.6","visibleMarkerViews":0,"mountedMarkerViews":0,"applicationActive":true},"intervalsMs":[8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,16.669999997247942,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.367749993340112,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526],"expectedMs":[8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929]},
+{"kind":"marker-view-benchmark","suite":"control","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-transform","count":200,"pass":0,"beforeBytes":391005440,"afterBytes":503678208,"environmentBefore":{"visibleMarkerViews":200,"os":"26.6","applicationActive":true,"lowPowerMode":false,"mountedMarkerViews":200,"thermalState":1},"durationMs":6068.133375010802,"environmentAfter":{"visibleMarkerViews":190,"mountedMarkerViews":200,"thermalState":1,"applicationActive":true,"lowPowerMode":false,"os":"26.6"},"refreshRateHz":120,"intervalsMs":[8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,17.262875000596978,7.742374989902601,16.670166674884968,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,16.316125009325333,8.68912499572616,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.302333328174427,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,16.669999997247942,8.334999991348013,16.670000011799857,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,15.869833339820616,9.135166663327254,8.335000005899929,16.669999997247942,8.335000005899929,8.334999991348013,25.00500000314787,8.335000005899929,16.578416660195217,8.426583328400739,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,16.669999997247942,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013],"expectedMs":[8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013]},
+{"kind":"marker-view-benchmark","suite":"control","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"overlay-layout","count":200,"pass":0,"beforeBytes":405488896,"afterBytes":502334744,"durationMs":6121.057750002365,"intervalsMs":[19.405625003855675,22.00283332786057,19.41941666882485,21.89316667499952,25.633958328398876,8.335000005899929,27.97308332810644,13.701916672289371,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,19.091624999418855,28.792458339012228,10.460916673764586,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,16.669999997247942,8.335000005899929,8.334999991348013,8.335000005899929,19.616624995251186,13.723374999244697,8.335000005899929,8.335000005899929,22.55766665621195,18.547916668467224,21.507833342184313,20.557708325213753,21.298125007888302,27.925291666178964,24.18179165397305,21.909666669671424,27.71904166729655,25.623458335758187,26.869666660786606,33.026833334588446,24.657666668645106,25.352333337650634,20.804333325941116,25.018541666213423,26.692458341130987,23.41658333898522,29.09308332891669,20.620791663532145,29.38920832821168,22.328458333504386,27.681541672791354,20.38495833403431,12.955041660461575,33.3400000090478,20.950791658833623,29.059208332910202,20.96995833562687,20.904583332594484,23.16833334043622,9.972125000786036,27.541041665244848,30.518958330503665,17.852499993750826,19.12112500576768,13.32137499412056,24.517791665857658,8.822208343190141,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,17.545958326081745,7.459041677066125,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,19.698166666785255,13.641833327710629,8.335000005899929,25.00500000314787,24.903625002480112,25.106374989263713,33.3400000090478,33.339999994495884,25.020208340720274,24.989791665575467,25.914041660143994,28.793000004952773,36.97795832704287,23.297874999116175,10.042125009931624,26.020999997854233,27.655583326122724,38.00841666816268,27.32937500695698,39.3506249965867,24.49262500158511,22.814625001046807,28.518624996650033,32.529125004657544,33.339999994495884,26.68670832645148,31.658291671192273,24.738583335420117,22.002041660016403,28.04587500577327,33.56850000272971,25.2898750040913,27.36733332858421,30.32758332847152,27.53645833581686,31.17375000147149,23.18754166481085,10.152458329685032,23.5896666708868,9.750333338161,16.336541666532867,8.668458336615004,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,19.17391666211188,27.200041673495434,11.971041662036441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,15.842541673919186,9.162458329228684,8.335000005899929,8.334999991348013,20.682500005932525,12.657500003115274,8.334999991348013,8.335000005899929,33.339999994495884,25.00500000314787,23.998291668249294,23.461541670258157,27.645249996567145,33.2499166688649,24.030541666434146,9.309458328061737,23.61633333202917,22.580749995540828,29.6926250011893,27.955166675383225,28.110833329265006,27.16891666932497,25.211416665115394,32.37395832547918,25.217708345735446,33.12729166646022,24.116333326674066,21.227291668765247,29.99666666437406,33.04733333061449,25.70262500375975,25.38862499932293,24.88774999801535,24.439833330688998,20.76379167556297,27.869083336554468,25.17833332240116,26.138458342757076,25.327124996692874,19.903833337593824,37.790541668073274,25.950541661586612,7.389458332909271,25.00500000314787,8.334999991348013,8.335000005899929,24.077541660517454,9.26245833397843,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,18.984374997671694,14.355625011376105,8.334999991348013,16.381374996853992,8.623625006293878,23.158666663221084,10.1813333312748,16.670000011799857,25.004999988595955,25.00500000314787,25.138083336059935,22.9984583274927,20.93658334342763,33.32183332531713,34.22504167247098,38.415000002714805,25.69441666128114,23.489208339015022,22.511583330924623,27.71129166649189,25.633874989580363,28.036416668328457,30.772583340876736,27.096833335235715,25.719124998431653,38.38966666080523,33.3400000090478,33.339999994495884,27.281791670247912,33.216999989235774,35.8715833426686,27.955999990808778,27.79008334618993,29.090874988469295,27.765125007135794,29.65504166786559,28.09249999700114,33.339999994495884,19.200541675672866,25.682291656266898,22.80454167339485,7.327625004108995,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,18.920708331279457,29.1000833385624,10.324208327801898,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,16.60091667145025,8.40408333169762,8.335000005899929,8.334999991348013,19.895291668944992,13.444708340102807,8.334999991348013,8.335000005899929,33.339999994495884,16.753708332544193,21.221458344371058,26.91141665854957,26.18041666573845,25.623000008636154,24.262874998385087,23.071000003255904,29.963208333356306,31.750083333463408,32.647833329974674,24.556333330110647,20.426000002771616,30.880249993060715,26.524166663875803,30.40829167002812,27.801999996881932,30.50041667302139,28.87012499559205,29.11149999999907,25.51358334312681,29.187791660660878,29.0626250061905,26.926166654448025,28.753833335940726,32.00920834206045,28.86354166548699,25.64466666080989,24.910333333536983,22.224833330255933,19.055750002735294,24.367208330659196,9.516375008388422],"environmentBefore":{"os":"26.6","thermalState":1,"lowPowerMode":false,"mountedMarkerViews":0,"visibleMarkerViews":0,"applicationActive":true},"expectedMs":[8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929],"environmentAfter":{"thermalState":1,"lowPowerMode":false,"mountedMarkerViews":0,"os":"26.6","visibleMarkerViews":0,"applicationActive":true},"refreshRateHz":120},
+{"kind":"marker-view-benchmark","suite":"control","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-layout","count":200,"pass":0,"beforeBytes":440141056,"afterBytes":499483904,"environmentBefore":{"mountedMarkerViews":200,"thermalState":1,"lowPowerMode":false,"os":"26.6","visibleMarkerViews":200,"applicationActive":true},"environmentAfter":{"os":"26.6","thermalState":1,"lowPowerMode":false,"mountedMarkerViews":200,"visibleMarkerViews":190,"applicationActive":true},"intervalsMs":[25.110208327532746,8.229791666963138,8.335000005899929,8.334999991348013,20.44775000831578,12.89225000073202,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,25.02741667558439,33.31758333661128,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,33.339999994495884,8.335000005899929,8.334999991348013,24.512208343367092,8.827791665680707,8.334999991348013,20.53070833790116,12.809291671146639,23.731666660751216,9.608333333744667,22.518124998896383,27.790375010226853,25.73233332077507,26.65250000427477,39.0016666642623,28.20524999697227,32.511500001419336,31.88829167629592,24.604708334663883,24.749041665927507,19.588291659601964,30.98554167081602,32.5123749935301,23.60870833217632,22.91791667812504,36.823374990490265,23.13362499990035,26.876375006395392,22.399708337616175,19.91779166564811,22.883624988025986,26.483875000849366,24.740208333241753,21.46625000750646,28.863125000498258,28.37083332997281,30.133499996736646,8.12108333047945,23.753583343932405,9.586416665115394,8.334999991348013,8.335000005899929,19.88737500505522,13.452624989440665,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,19.778250003582798,13.561750005465,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,20.753333330503665,12.586666663992219,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,27.783875004388392,13.89112499600742,8.335000005899929,22.955124994041398,10.384875000454485,8.335000005899929,33.339999994495884,28.91629165969789,31.87416667060461,34.850124997319654,31.92529166699387,36.021541673108004,30.347249994520098,33.86220833635889,34.64841666573193,37.61470832978375,27.189291678951122,27.43704165914096,32.12375000293832,32.78195833263453,33.053208331693895,39.11974999937229,27.611124998657033,39.06887500488665,27.425374995800667,34.99066666699946,34.09674999420531,34.77150000981055,35.41570833476726,29.265958335599862,12.40904166479595,29.368374991463497,12.306625008932315,8.334999991348013,23.939125007018447,9.400875002029352,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,19.9597083410481,33.97741666412912,12.74287499836646,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,20.768000002135523,12.571999992360361,8.335000005899929,8.334999991348013,22.01558333763387,11.356958333635703,8.335000005899929,23.307666662731208,10.032333331764676,22.800499995355494,10.53949999914039,23.740041666314937,23.679874997469597,26.656166679458693,26.744458329631016,28.04712500073947,31.011874991236255,26.670541672501713,33.75400000368245,34.27150000061374,31.662499997764826,33.631500002229586,38.535416664672084,27.75070833740756,30.752249993383884,28.181333327665925,32.94504167570267,34.666708335862495,32.03474999463651,33.644791663391516,32.29941666359082,33.65325000777375,31.163833336904645,25.354541663546115,32.62837500369642,25.69474998745136,7.645250007044524,8.335000005899929,8.334999991348013,25.787500009755604,15.887499990640208,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,33.3400000090478,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,23.355291661573574,9.98470833292231,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,23.65487499628216,9.685125012765639,8.334999991348013,8.335000005899929,23.49974999378901,9.840250000706874,8.335000005899929,21.293166661052965,12.046833333442919,25.320041662780568,8.01995834626723,27.09116665937472,34.832499994081445,33.13945833360776,33.03954166767653,33.422541673644446,33.361624999088235,38.493166663101874,25.772749999305233,27.931166667258367,31.640958331990987,27.468166663311422,37.2169583424693,24.0112916653743,9.328708329121582,33.3400000090478,27.168708329554647,34.65479167061858,33.58008332725149,38.19737500452902,28.036291667376645,35.43074999470264,32.53162499458995,12.11537500785198,31.798500000149943,29.49554166116286,13.720958333578892,8.335000005899929,8.334999991348013,23.567875003209338,9.772125005838461,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,25.54012500331737,27.4771666736342,13.66270832659211,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,25.443041668040678,7.896958326455206,8.335000005899929,8.334999991348013,29.803208337398246,11.871791662997566,33.3400000090478,33.339999994495884,27.18845833442174,34.537125000497326,38.2944166631205,25.76275001047179,29.503458325052634,31.994000004488043,30.442791670793667,26.239166661980562,39.42783332604449,33.3400000090478,24.442875001113862,23.721708334051073,30.022458333405666,36.9864999956917,29.305166666745208,32.03904166002758,30.535583340679295,27.727791661163792,27.013916667783633,33.767958331736736,37.836999996216036,28.24695834715385,13.428041653241962,29.78658334177453,11.888416658621281,22.022458346327767,11.317541662720032,8.334999991348013,8.335000005899929],"expectedMs":[8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929],"refreshRateHz":120,"durationMs":6093.706625004415},
+{"kind":"marker-view-benchmark","suite":"control","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-layout","count":200,"pass":1,"beforeBytes":437650688,"afterBytes":498500864,"refreshRateHz":120,"durationMs":6119.324125000276,"environmentAfter":{"mountedMarkerViews":200,"lowPowerMode":false,"applicationActive":true,"thermalState":1,"visibleMarkerViews":190,"os":"26.6"},"intervalsMs":[8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,23.254208339494653,20.918499998515472,14.172291659633629,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,24.77283333428204,8.567166674765758,8.334999991348013,8.335000005899929,33.339999994495884,8.335000005899929,22.76216667087283,10.577833323623054,21.682791673811153,11.657208335236646,23.641374995349906,31.332083337474614,27.03454166476149,28.558208330650814,33.75741666241083,39.04637500818353,23.048416667734273,21.062416664790362,28.466458330512978,24.957833331427537,26.626874998328276,25.020166678586975,25.797374997637235,24.944333330495283,26.153750004596077,28.949416664545424,31.162624989519827,30.187541677150875,24.10504166618921,26.25774999614805,23.356999998213723,26.653000008082017,22.510666662128642,10.829333332367241,22.560625002370216,22.007583334925584,13.776791660347953,25.486124999588355,7.853874994907528,8.335000005899929,24.90712500002701,8.432874994468875,8.335000005899929,8.335000005899929,21.928249989286996,11.411750005208887,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,21.03966666618362,12.300333328312263,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,20.090499994694255,13.249499999801628,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,20.598666655132547,12.741333339363337,8.335000005899929,8.334999991348013,20.1143750018673,13.225625007180497,8.334999991348013,20.731416676426306,20.70795831969008,21.12404166837223,32.2476250003092,26.10516667482443,31.81354166008532,38.975250005023554,29.650249998667277,37.029750004876405,33.339999994495884,28.411499995854683,32.82100000069477,35.32466666365508,28.6457083420828,31.55970832449384,28.685083336313255,29.687625006772578,29.150083326385356,35.39183334214613,32.075083334348164,34.58387499267701,30.88479167490732,36.096124997129664,29.041874993708916,31.393666664371267,29.138333338778466,31.99545833922457,15.256166661856696,8.334999991348013,33.3400000090478,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,21.84533333638683,29.05891666887328,7.440750006935559,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,22.056624991819263,11.283375002676621,8.335000005899929,8.334999991348013,21.312416676664725,12.027583332383074,8.334999991348013,23.65729167649988,9.682708332547918,23.536583335953765,9.803416658542119,24.109458332532085,24.309750006068498,28.193291669595055,27.311666664900258,32.298958336468786,33.06204166437965,33.406708331312984,30.17541665758472,25.339875006466173,33.51783333346248,28.389375002007,32.87720833031926,34.65791666531004,31.846750003751367,34.79070833418518,37.47804166050628,27.963583343080245,38.71641666046344,33.339999994495884,29.706708344747312,36.97329165879637,29.407166672172025,33.18520833272487,31.24516666866839,14.517458330374211,8.335000005899929,8.334999991348013,25.21816667285748,8.121833321638405,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,24.561500002164394,8.778500006883405,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,25.83941665943712,7.500583335058764,16.019250004319474,8.985749998828396,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,25.62462500645779,7.715375002590008,8.334999991348013,8.335000005899929,33.339999994495884,8.335000005899929,25.816875000600703,7.5231249938951805,24.40799999749288,8.931999997003004,23.558916669571772,29.488041676813737,32.45116665493697,30.0356250081677,34.49624999484513,28.317500007688068,33.16358332813252,33.498999997391365,33.2698333368171,33.86125000542961,32.396208320278674,31.56258334638551,28.255666664335877,34.297333331778646,28.015583331580274,29.23312499478925,30.22712499659974,28.001416678307578,28.34445833286736,29.85633333446458,31.93312499206513,34.97616667300463,34.43899999547284,31.364083333755843,33.2406249945052,34.67554166854825,12.205458333482966,16.37454166484531,8.63045833830256,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,33.3400000090478,25.695124990306795,7.644875004189089,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,24.63549999811221,8.704499996383674,8.335000005899929,8.334999991348013,25.900874999933876,7.439125009113923,17.01795832195785,28.643333338550292,31.94029166479595,34.32029167015571,32.10404166020453,27.563666677451693,36.785416668863036,27.444416657090187,39.23558333190158,28.0450416757958,38.63495832774788,29.822208336554468,31.496875002630986,32.88920833438169,39.15170833352022,29.378541657933965,28.629250009544194,33.67720832466148,33.339999994495884,33.3400000090478,31.14470833679661,31.452666662517004,33.25883332581725,28.032500005792826,25.120999998762272,9.355291665997356,8.335000005899929,8.334999991348013,19.22541667590849,14.114583333139308,8.334999991348013,8.335000005899929,20.87675000075251,12.463249993743375,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,20.625458331778646,12.714541662717238,8.335000005899929],"environmentBefore":{"mountedMarkerViews":200,"lowPowerMode":false,"applicationActive":true,"thermalState":1,"os":"26.6","visibleMarkerViews":200},"expectedMs":[8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929]},
+{"kind":"marker-view-benchmark","suite":"control","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"overlay-layout","count":200,"pass":1,"beforeBytes":398787840,"afterBytes":500565272,"refreshRateHz":120,"durationMs":6072.919500002172,"environmentBefore":{"applicationActive":true,"mountedMarkerViews":0,"lowPowerMode":false,"os":"26.6","thermalState":1,"visibleMarkerViews":0},"environmentAfter":{"applicationActive":true,"mountedMarkerViews":0,"lowPowerMode":false,"os":"26.6","thermalState":1,"visibleMarkerViews":0},"expectedMs":[8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929],"intervalsMs":[8.335000005899929,8.335000005899929,23.062291656970046,18.612708343425766,8.334999991348013,19.75962500728201,13.580375001765788,8.334999991348013,15.897916673566215,9.107083329581656,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,22.725250004441477,21.773999993456528,13.845749999745749,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,25.079083323362283,17.003250002744608,7.927666665636934,23.50612499867566,9.83387501037214,8.334999991348013,23.271333338925615,19.393666661926545,22.79400000406895,22.683791670715436,20.859874988673255,27.106000008643605,29.870166661567055,24.016541661694646,20.74883333989419,29.313458333490416,24.56200000597164,21.33016666630283,27.162499987753108,25.44970833696425,26.030166671262123,25.36345833505038,26.613541660481133,24.29137499711942,25.89941666519735,21.529583347728476,28.480416658567265,20.51962500263471,21.850083328899927,21.58591666375287,27.729375011404045,22.128749988041818,21.92891667073127,29.31637500296347,26.377375004813075,23.16216666076798,10.44641666521784,33.339999994495884,21.139625008800067,12.200375000247732,8.334999991348013,8.335000005899929,22.05491666973103,11.285083324764855,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,18.305416670045815,6.699583333102055,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,17.71233334147837,7.2926666616695,8.335000005899929,8.334999991348013,18.872625005315058,14.46737500373274,22.374708321876824,19.300291678518988,25.705541658680886,24.30445833306294,22.603375007747672,27.824208329548128,28.70749999419786,30.085916674579494,25.669666661997326,29.254708337248303,28.049250002368353,32.883083331398666,25.111625000135973,24.28033332398627,22.459791667643003,27.885458344826475,28.484750000643544,38.478041664347984,25.682124993181787,32.66287500446197,28.5415833350271,30.736083324882202,26.985041666193865,25.79658334434498,28.178708322229795,28.321833335212432,25.428291672142223,29.79087499261368,27.099625003756955,28.424416668713093,29.598083332530223,16.906499993638135,22.302875004243106,10.294499996234663,8.335000005899929,24.80562499840744,8.534374996088445,8.335000005899929,25.00500000314787,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,24.239333331934176,19.879708328517154,14.225958337192424,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,23.42120834509842,9.918791663949378,17.890999995870516,23.400749996653758,8.718249999219552,8.335000005899929,27.849125006468967,22.37037499435246,20.779958329512738,25.318791667814367,29.177833333960734,32.868916663574055,24.161083332728595,22.539416677318513,11.644499987596646,23.59920833259821,9.74079167644959,23.99904165940825,9.340958335087635,21.400083336629905,11.939916672417894,21.45337499678135,11.886624997714534,21.20512499823235,28.514874997199513,25.061958338483237,33.573041670024395,33.339999994495884,33.339999994495884,27.398041667765938,39.281958335777745,25.826791665167548,26.47645834076684,30.72470832557883,24.50258334283717,9.159458335489035,27.11004165757913,27.881250003702007,11.688708327710629,27.248958343989216,31.096041653654538,23.281458343262784,10.058541665785015,8.334999991348013,8.335000005899929,8.335000005899929,27.271958329947665,14.403041670448147,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,25.00500000314787,8.334999991348013,8.335000005899929,25.00500000314787,23.403750004945323,9.93624998955056,8.335000005899929,8.334999991348013,33.3400000090478,24.95729166548699,25.052708326256834,23.49558334390167,23.651249997783452,26.337333329138346,27.15195833297912,27.897499996470287,28.278541678446345,26.32058333256282,28.5709166637389,30.319541663629934,33.03179166687187,25.457625000854023,27.809916660771705,28.712958344840445,26.89716666645836,29.252124993945472,28.37179166090209,28.17579166730866,27.66791667090729,30.440375005127862,34.49437499511987,37.78495833103079,33.3400000090478,29.20412499224767,37.475874996744096,33.3400000090478,33.339999994495884,25.00500000314787,33.339999994495884,19.634124997537583,13.705875011510216,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,24.97270834282972,24.92712499224581,8.445166662568226,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,25.029333322891034,24.98066666885279,25.89095833536703,17.494041661848314,19.368541674339212,21.240749993012287,32.69570834527258,24.296749994391575,22.529458336066455,27.791958331363276,26.158583335927688,32.583249994786456,24.98541666136589,26.081166666699573,25.17433333559893,32.1140833402751,25.123625004198402,25.44720833247993,25.304208320449106,28.055833347025327,37.76412499428261,25.7910416694358,30.644124999525957,26.534874996286817,27.437500000814907,26.220666666631587,31.164333326159976,26.381791671155952,26.699833339080215,28.34466665808577,25.87020833743736,21.32170833647251,26.496166668948717,26.642833327059634,21.029583338531666]},
+{"kind":"marker-view-benchmark","suite":"control","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-transform","count":200,"pass":1,"beforeBytes":390382848,"afterBytes":502973696,"environmentAfter":{"thermalState":1,"visibleMarkerViews":190,"applicationActive":true,"os":"26.6","mountedMarkerViews":200,"lowPowerMode":false},"refreshRateHz":120,"environmentBefore":{"thermalState":1,"visibleMarkerViews":200,"applicationActive":true,"mountedMarkerViews":200,"os":"26.6","lowPowerMode":false},"expectedMs":[8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929],"durationMs":6067.246916660224,"intervalsMs":[8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.367541668121703,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,16.149416667758487,8.855583335389383,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,16.669999997247942,16.669999997247942,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,17.608499998459592,15.083749996847473,8.982750005088747,8.334999991348013,8.335000005899929,8.335000005899929,25.004999988595955,8.335000005899929,16.669999997247942,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.367541668121703,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929]},
+{"kind":"marker-view-benchmark","suite":"control","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"overlay-transform","count":200,"pass":1,"beforeBytes":390481152,"afterBytes":503923992,"environmentAfter":{"os":"26.6","lowPowerMode":false,"visibleMarkerViews":0,"thermalState":1,"mountedMarkerViews":0,"applicationActive":true},"durationMs":6067.225499995402,"environmentBefore":{"os":"26.6","lowPowerMode":false,"visibleMarkerViews":0,"thermalState":1,"mountedMarkerViews":0,"applicationActive":true},"refreshRateHz":120,"intervalsMs":[8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.367583330255002,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.367708331206813,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,16.670166660333052,8.335083344718441,8.335083330166526,8.335083330166526,25.005250005051494,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441],"expectedMs":[8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441]},
+{"kind":"marker-view-benchmark","suite":"control","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"overlay-transform","count":200,"pass":2,"beforeBytes":391693568,"afterBytes":506103064,"intervalsMs":[8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,16.670166660333052,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526],"environmentAfter":{"thermalState":1,"lowPowerMode":false,"mountedMarkerViews":0,"os":"26.6","visibleMarkerViews":0,"applicationActive":true},"durationMs":6067.054041661322,"environmentBefore":{"thermalState":1,"os":"26.6","mountedMarkerViews":0,"lowPowerMode":false,"visibleMarkerViews":0,"applicationActive":true},"refreshRateHz":120,"expectedMs":[8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526]},
+{"kind":"marker-view-benchmark","suite":"control","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-transform","count":200,"pass":2,"beforeBytes":393020672,"afterBytes":502433024,"refreshRateHz":120,"expectedMs":[8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526],"environmentBefore":{"thermalState":1,"lowPowerMode":false,"os":"26.6","mountedMarkerViews":200,"visibleMarkerViews":200,"applicationActive":true},"durationMs":6100.525041663786,"intervalsMs":[16.669999997247942,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,40.7908333290834,17.554166668560356,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.367583330255002,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,16.669999997247942,8.334999991348013,16.670000011799857,8.334999991348013,16.904125004657544,8.100874998490326,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,16.669999997247942,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,16.669999997247942,8.335000005899929,16.21570832503494,8.789291678112932,8.334999991348013,15.706291669630446,9.298708333517425,8.335000005899929,19.801624992396683,13.538375002099201,16.669999997247942,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,16.669999997247942,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013],"environmentAfter":{"thermalState":1,"lowPowerMode":false,"os":"26.6","mountedMarkerViews":200,"applicationActive":true,"visibleMarkerViews":190}},
+{"kind":"marker-view-benchmark","suite":"control","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"overlay-layout","count":200,"pass":2,"beforeBytes":436569344,"afterBytes":517080344,"durationMs":6130.958166671917,"intervalsMs":[21.171999993384816,23.046500005875714,30.796499995631166,22.337375005008653,11.002625004039146,8.334999991348013,8.335000005899929,8.334999991348013,22.934250009711832,10.405749999335967,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,18.991791672306135,27.76320833072532,11.590000009164214,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,20.066666664206423,13.27333333028946,8.335000005899929,8.334999991348013,16.670000011799857,24.23008333425969,17.444916666136123,24.415541658527218,20.45949999592267,21.80495833454188,21.782750001875684,25.194500005454756,26.374791661510244,24.560250007198192,22.256625001318753,29.016958331339993,24.43841665808577,22.38995833613444,27.50445833953563,26.574958334094845,24.286375002702698,21.609874995192513,24.051208325545304,28.885583335068077,24.505916677298956,22.516999990330078,29.424458334688097,26.94708333001472,30.237583341659047,25.150375004159287,24.500999992596917,20.016083333757706,22.921458337805234,20.189999995636754,28.677499998593703,25.88179166195914,24.846291678841226,19.04437498888001,21.122666672454216,22.118749999208376,28.5615833272459,9.59704167325981,8.335000005899929,8.334999991348013,8.335000005899929,19.258416665252298,14.081583329243585,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,16.669999997247942,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,24.569000001065433,8.771000007982366,16.669999997247942,8.335000005899929,8.334999991348013,22.00733333302196,23.231416664202698,38.111250003566965,33.339999994495884,28.545750014018267,30.086749990005046,26.834416668862104,32.00608333281707,26.74674999434501,33.388875002856366,28.12775000347756,27.578249995713122,24.601333338068798,24.64970832807012,26.54554166656453,23.83679167542141,8.786999998847023,23.40399999229703,9.936000002198853,23.817416673409753,20.14549999148585,29.338416672544554,25.77433333499357,24.388708334299736,21.65283332578838,28.19945833471138,24.874666676623747,25.704416664666496,34.48924999975134,24.892208326491527,22.113166662165895,11.339625008986332,29.119999991962686,12.555000008433126,33.339999994495884,17.203666662680916,7.801333340466954,24.620249998406507,8.719749996089377,18.76670833735261,14.573291671695188,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,18.886833335272968,28.006083332002163,11.452083330368623,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,16.669999997247942,22.631833344348706,10.708166664699093,8.334999991348013,16.670000011799857,22.382791663403623,19.29220833699219,24.451916659018025,8.888083335477859,31.667166666011326,27.15666666335892,23.930499999551103,21.448958330438472,20.821708341827616,23.410916663124226,23.747250001179054,28.758375003235415,26.900416662101634,33.18141667114105,31.14974999334663,32.89187500195112,24.6880416671047,22.784208340453915,28.217291663167998,27.346125003532507,38.65933332417626,33.3400000090478,27.900124987354502,38.779875001637265,26.027375002740882,32.31762500945479,24.263374987640418,17.41162499820348,25.314541679108515,33.030458333087154,33.339999994495884,25.00500000314787,24.928291662945412,25.081708328798413,8.335000005899929,33.339999994495884,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,16.416291662608273,8.588708340539597,8.334999991348013,25.00500000314787,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,23.20308334310539,10.136916665942408,16.669999997247942,8.334999991348013,8.335000005899929,23.75916666642297,17.91583333397284,24.57404167216737,16.758749989094213,25.83712500927504,19.312833333970048,25.092958327149972,30.6527916691266,32.80649999214802,27.90320833446458,30.946791666792706,26.981083341524936,31.248250001226552,25.226999990991317,24.884333339286968,29.511208325857297,26.587541666231118,29.148000001441687,36.73283333773725,35.894750006264076,33.339999994495884,28.23891666776035,32.61166666925419,35.076208325335756,30.604666666476987,28.853125011664815,32.242749992292374,29.603874994791113,18.765541666653007,14.053250008146279,25.571624995791353,27.210833330173045,23.102750012185425,7.464791662641801,23.052541670040227,10.287458324455656,8.335000005899929,16.669999997247942,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,22.417874992243014,21.76674999645911,14.160375008941628,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,16.669999997247942,8.335000005899929,8.334999991348013,25.166499995975755,8.173500013072044,16.640624991850927,8.364374996745028,24.460750006255694,17.21424999414012,24.519208338460885,8.820791670586914,32.05504166544415,27.133208335726522,32.496749990968965,22.54795833141543,25.05287500389386,26.45329166261945,26.909708336461335,27.433166673290543,38.30299999390263,33.3400000090478,25.463708327151835,32.88129167049192,33.339999994495884,29.294458334334195,31.186666659777984,32.12316667486448,27.32799999648705,31.076250001206063,32.394083333201706,27.413958334363997,30.785124996327795,27.77608334145043,25.12337500229478,30.392666667466983,33.54379166557919,33.339999994495884],"environmentBefore":{"lowPowerMode":false,"visibleMarkerViews":0,"mountedMarkerViews":0,"os":"26.6","applicationActive":true,"thermalState":1},"expectedMs":[8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013],"environmentAfter":{"lowPowerMode":false,"mountedMarkerViews":0,"visibleMarkerViews":0,"os":"26.6","thermalState":1,"applicationActive":true},"refreshRateHz":120},
+{"kind":"marker-view-benchmark","suite":"control","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-layout","count":200,"pass":2,"beforeBytes":453395712,"afterBytes":516769024,"durationMs":6077.561750003952,"environmentBefore":{"lowPowerMode":false,"thermalState":1,"mountedMarkerViews":200,"os":"26.6","visibleMarkerViews":200,"applicationActive":true},"expectedMs":[8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013],"refreshRateHz":120,"environmentAfter":{"mountedMarkerViews":200,"thermalState":1,"lowPowerMode":false,"os":"26.6","visibleMarkerViews":190,"applicationActive":true},"intervalsMs":[7.403625000733882,8.335000005899929,21.178541661356576,12.161458333139308,8.335000005899929,24.615916670882143,8.72408332361374,8.335000005899929,8.334999991348013,22.734416677849367,10.605583331198432,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,25.631833326769993,26.702166665927507,14.346000010846183,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,27.15033332060557,14.524666665238328,8.335000005899929,8.335000005899929,20.6062083307188,12.733791663777083,8.335000005899929,24.70520832866896,8.634791665826924,25.83645832783077,7.5035416666651145,30.857375008054078,30.977125003119,32.84112499386538,32.53724999376573,39.51979168050457,33.339999994495884,27.701416664058343,33.625708339968696,38.69287499401253,25.927083333954215,26.861541671678424,34.38754165836144,37.848833337193355,24.023249992751516,20.11533333279658,31.222041667206213,32.994375011185184,24.214708333602175,22.077374989748932,28.065125006833114,33.99779165920336,27.664541674312204,39.01545832923148,24.149999997462146,9.190000011585653,21.33499999763444,12.004999996861443,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,18.830166663974524,14.509833345073275,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,25.80833333195187,7.531666662544012,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,25.30999999726191,8.029999997233972,8.335000005899929,8.334999991348013,33.3400000090478,8.334999991348013,22.445583337685093,10.894416671362706,23.505458331783302,29.18820832564961,36.91466667805798,29.659583320608363,34.161666670115665,38.27541666396428,26.93083333724644,31.305875003454275,27.904999995371327,31.461000005947426,27.321999994455837,30.717250003363006,27.417624994996004,33.47687500354368,34.13795832602773,37.7205833356129,27.131583337904885,34.580374995130114,32.259416664601304,34.723000004305504,32.076333329314366,31.089375013834797,29.747874999884516,31.143458327278495,13.968583327368833,8.335000005899929,27.609333337750286,14.065666662645526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,25.94820833473932,32.39679167745635,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,22.52266666619107,10.817333328304812,8.335000005899929,8.335000005899929,8.334999991348013,19.934833340812474,13.405166668235324,8.334999991348013,22.89950000704266,10.440499987453222,23.003416674328037,10.336583334719762,24.76166666019708,8.578333334298804,24.300291668623686,21.817916669533588,25.29104166023899,36.94575000554323,27.713375005987473,33.289499988313764,35.84279166534543,36.51433333288878,28.986333345528692,37.69366665801499,33.3400000090478,28.979708324186504,34.033958334475756,31.90420834289398,38.44212499097921,29.77054167422466,32.14749999460764,32.154875007108785,34.615916665643454,34.292833326617256,31.482541671721265,35.36429165978916,36.89149999991059,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,23.344999994151294,9.99500000034459,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,25.00283333938569,8.33716666966211,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,24.047333339694887,9.292666654800996,8.335000005899929,8.335000005899929,25.444541664910503,7.895458329585381,8.335000005899929,25.041458327905275,8.298541666590609,27.244208336924203,36.385083323693834,28.19362501031719,27.236875001108274,34.9806666636141,31.081124994670972,26.945499994326383,32.01429167529568,39.308624996920116,24.76045834191609,33.58454165572766,33.3400000090478,27.10004166874569,27.444124993053265,31.639916662243195,33.26954167278018,35.99387500435114,30.345416656928137,34.324125008424744,37.90820832364261,28.195208331453614,38.844541675643995,29.107499998644926,32.02308333129622,13.88441666495055,30.394375004107133,11.28062499628868,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,24.18891666457057,20.92195833392907,13.234124999144115,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,24.821083337883465,8.551541672204621,8.334999991348013,8.335000005899929,8.334999991348013,27.399416678235866,14.275583322159946,30.86433334101457,10.81066665938124,23.96854167454876,34.376458323094994,27.437166674644686,33.95445832575206,35.23204167140648,31.815750000532717,34.83583332854323,32.039958343375474,32.87387499585748,29.77525000460446,26.358124989201315,28.328500004136004,32.86304166249465,31.923375005135313,33.4385833266424,27.61270833434537,31.768541666679084,32.404958343249746,39.11283332854509,27.908458330784924,33.00841666350607,33.06379167770501,39.37933333509136]}
+],"summary":[
+ {
+ "mode": "overlay-transform",
+ "count": 200,
+ "pass": 0,
+ "samples": 726,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.80962152135612,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 16.669999997247942,
+ "lateCallbackPercent": 0.13774104683195593,
+ "intervalsWithin120HzBudgetPercent": 99.86225895316804,
+ "memoryDeltaMiB": 106.6875228881836,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 200,
+ "pass": 0,
+ "samples": 716,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 118.16057648296274,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 16.578416660195217,
+ "maxMs": 25.00500000314787,
+ "lateCallbackPercent": 1.5363128491620113,
+ "intervalsWithin120HzBudgetPercent": 98.46368715083798,
+ "memoryDeltaMiB": 107.453125,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "overlay-layout",
+ "count": 200,
+ "pass": 0,
+ "samples": 311,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 51.04286963007598,
+ "p50Ms": 21.89316667499952,
+ "p95Ms": 33.339999994495884,
+ "p99Ms": 38.00841666816268,
+ "maxMs": 39.3506249965867,
+ "lateCallbackPercent": 69.13183279742765,
+ "intervalsWithin120HzBudgetPercent": 30.868167202572348,
+ "memoryDeltaMiB": 92.3593978881836,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 200,
+ "pass": 0,
+ "samples": 317,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 52.242018622279005,
+ "p50Ms": 19.588291659601964,
+ "p95Ms": 35.41570833476726,
+ "p99Ms": 39.0016666642623,
+ "maxMs": 39.42783332604449,
+ "lateCallbackPercent": 60.25236593059937,
+ "intervalsWithin120HzBudgetPercent": 39.74763406940063,
+ "memoryDeltaMiB": 56.59375,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 200,
+ "pass": 1,
+ "samples": 322,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 52.704048449805384,
+ "p50Ms": 16.37454166484531,
+ "p95Ms": 34.65791666531004,
+ "p99Ms": 38.975250005023554,
+ "maxMs": 39.23558333190158,
+ "lateCallbackPercent": 58.07453416149068,
+ "intervalsWithin120HzBudgetPercent": 41.92546583850932,
+ "memoryDeltaMiB": 58.03125,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "overlay-layout",
+ "count": 200,
+ "pass": 1,
+ "samples": 319,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 52.7556383293865,
+ "p50Ms": 21.529583347728476,
+ "p95Ms": 33.03179166687187,
+ "p99Ms": 37.76412499428261,
+ "maxMs": 39.281958335777745,
+ "lateCallbackPercent": 65.51724137931035,
+ "intervalsWithin120HzBudgetPercent": 34.48275862068966,
+ "memoryDeltaMiB": 97.0625228881836,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 200,
+ "pass": 1,
+ "samples": 719,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 118.65449923540896,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335000005899929,
+ "p99Ms": 8.982750005088747,
+ "maxMs": 25.004999988595955,
+ "lateCallbackPercent": 1.2517385257301807,
+ "intervalsWithin120HzBudgetPercent": 98.74826147426982,
+ "memoryDeltaMiB": 107.375,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "overlay-transform",
+ "count": 200,
+ "pass": 1,
+ "samples": 724,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.47949763516107,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335083330166526,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 25.005250005051494,
+ "lateCallbackPercent": 0.27624309392265195,
+ "intervalsWithin120HzBudgetPercent": 99.72375690607734,
+ "memoryDeltaMiB": 108.1875228881836,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "overlay-transform",
+ "count": 200,
+ "pass": 2,
+ "samples": 726,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.80977804845863,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 16.670166660333052,
+ "lateCallbackPercent": 0.13774104683195593,
+ "intervalsWithin120HzBudgetPercent": 99.86225895316804,
+ "memoryDeltaMiB": 109.1093978881836,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 200,
+ "pass": 2,
+ "samples": 714,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 117.18523847319011,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335000005899929,
+ "p99Ms": 16.669999997247942,
+ "maxMs": 40.7908333290834,
+ "lateCallbackPercent": 2.2408963585434174,
+ "intervalsWithin120HzBudgetPercent": 97.75910364145658,
+ "memoryDeltaMiB": 104.34375,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "overlay-layout",
+ "count": 200,
+ "pass": 2,
+ "samples": 315,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 51.55803224459563,
+ "p50Ms": 21.782750001875684,
+ "p95Ms": 33.339999994495884,
+ "p99Ms": 38.111250003566965,
+ "maxMs": 38.779875001637265,
+ "lateCallbackPercent": 67.93650793650794,
+ "intervalsWithin120HzBudgetPercent": 32.06349206349206,
+ "memoryDeltaMiB": 76.7812728881836,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 200,
+ "pass": 2,
+ "samples": 320,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 52.889555437976306,
+ "p50Ms": 13.234124999144115,
+ "p95Ms": 36.51433333288878,
+ "p99Ms": 39.11283332854509,
+ "maxMs": 39.51979168050457,
+ "lateCallbackPercent": 54.375,
+ "intervalsWithin120HzBudgetPercent": 45.625,
+ "memoryDeltaMiB": 60.4375,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ }
+]}
diff --git a/experiments/custom-markers/results/iphone-15-pro-v3-primary.json b/experiments/custom-markers/results/iphone-15-pro-v3-primary.json
new file mode 100644
index 0000000..dac27b0
--- /dev/null
+++ b/experiments/custom-markers/results/iphone-15-pro-v3-primary.json
@@ -0,0 +1,615 @@
+{"raw":[
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"pins","count":10,"pass":0,"beforeBytes":320783472,"afterBytes":449234080,"environmentBefore":{"mountedMarkerViews":0,"thermalState":1,"os":"26.6","lowPowerMode":false,"visibleMarkerViews":0,"applicationActive":true},"environmentAfter":{"applicationActive":true,"os":"26.6","thermalState":1,"lowPowerMode":false,"visibleMarkerViews":0,"mountedMarkerViews":0},"refreshRateHz":120,"durationMs":6006.913624994922,"intervalsMs":[25.00524999049958,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,32.66787499887869,9.007541666505858,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.302374990307726,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929],"expectedMs":[8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929]},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-static","count":10,"pass":0,"beforeBytes":354944160,"afterBytes":429114552,"environmentAfter":{"lowPowerMode":false,"os":"26.6","visibleMarkerViews":10,"mountedMarkerViews":10,"thermalState":1,"applicationActive":true},"environmentBefore":{"os":"26.6","lowPowerMode":false,"visibleMarkerViews":10,"thermalState":1,"mountedMarkerViews":10,"applicationActive":true},"intervalsMs":[17.624375002924353,7.380625000223517,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,24.515208322554827,8.824791671941057,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.367583344806917,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929],"durationMs":6050.5924166645855,"expectedMs":[8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929],"refreshRateHz":120},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-transform","count":10,"pass":0,"beforeBytes":331203768,"afterBytes":454984888,"durationMs":6050.7472083263565,"environmentAfter":{"os":"26.6","applicationActive":true,"thermalState":1,"mountedMarkerViews":10,"visibleMarkerViews":10,"lowPowerMode":false},"intervalsMs":[24.72495833353605,8.615041675511748,8.334999991348013,49.65366667602211,8.691333321621642,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,23.998166652745567,9.341833341750316,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.367749993340112,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526],"refreshRateHz":120,"expectedMs":[8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013],"environmentBefore":{"visibleMarkerViews":10,"applicationActive":true,"thermalState":1,"lowPowerMode":false,"mountedMarkerViews":10,"os":"26.6"}},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-layout","count":10,"pass":0,"beforeBytes":334759072,"afterBytes":465503392,"intervalsMs":[23.35733333893586,9.98299999628216,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,19.157874994562007,14.182458340656012,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.302374990307726,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929],"environmentAfter":{"visibleMarkerViews":10,"mountedMarkerViews":10,"applicationActive":true,"thermalState":1,"lowPowerMode":false,"os":"26.6"},"durationMs":6050.516458344646,"environmentBefore":{"visibleMarkerViews":10,"mountedMarkerViews":10,"applicationActive":true,"thermalState":1,"lowPowerMode":false,"os":"26.6"},"refreshRateHz":120,"expectedMs":[8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441]},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"pins","count":50,"pass":0,"beforeBytes":352191648,"afterBytes":452674744,"expectedMs":[8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526],"durationMs":6007.8748333326075,"environmentBefore":{"os":"26.6","mountedMarkerViews":0,"visibleMarkerViews":0,"thermalState":1,"applicationActive":true,"lowPowerMode":false},"environmentAfter":{"os":"26.6","visibleMarkerViews":0,"mountedMarkerViews":0,"thermalState":1,"applicationActive":true,"lowPowerMode":false},"refreshRateHz":120,"intervalsMs":[16.13766666559968,8.867333337548189,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.367625006940216,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,25.26966665755026,8.070333336945623,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.367791670025326,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526]},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-static","count":50,"pass":0,"beforeBytes":347997368,"afterBytes":455263416,"environmentAfter":{"mountedMarkerViews":50,"lowPowerMode":false,"thermalState":1,"visibleMarkerViews":50,"os":"26.6","applicationActive":true},"durationMs":6049.4772083329735,"refreshRateHz":120,"environmentBefore":{"mountedMarkerViews":50,"lowPowerMode":false,"thermalState":1,"visibleMarkerViews":50,"os":"26.6","applicationActive":true},"intervalsMs":[17.265583330299705,7.739666674751788,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,35.63583333743736,14.374666672665626,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,22.769916657125577,10.570416663540527,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441],"expectedMs":[8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929]},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-transform","count":50,"pass":0,"beforeBytes":347243704,"afterBytes":461030608,"intervalsMs":[8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.367750007892027,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526],"environmentAfter":{"visibleMarkerViews":50,"os":"26.6","mountedMarkerViews":50,"lowPowerMode":false,"applicationActive":true,"thermalState":1},"expectedMs":[8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013],"environmentBefore":{"visibleMarkerViews":50,"os":"26.6","thermalState":1,"lowPowerMode":false,"mountedMarkerViews":50,"applicationActive":true},"durationMs":6051.331041671801,"refreshRateHz":120},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-layout","count":50,"pass":0,"beforeBytes":354026704,"afterBytes":467076304,"intervalsMs":[8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.302375004859641,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013],"refreshRateHz":120,"environmentBefore":{"visibleMarkerViews":50,"mountedMarkerViews":50,"applicationActive":true,"os":"26.6","lowPowerMode":false,"thermalState":1},"durationMs":6050.295499997446,"expectedMs":[8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013],"environmentAfter":{"visibleMarkerViews":50,"mountedMarkerViews":50,"applicationActive":true,"os":"26.6","lowPowerMode":false,"thermalState":1}},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"pins","count":200,"pass":0,"beforeBytes":389154000,"afterBytes":464733392,"refreshRateHz":120,"intervalsMs":[20.447833332582377,12.892166661913507,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,23.490708335884847,9.849291658611037,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.367541668121703,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013],"environmentAfter":{"mountedMarkerViews":0,"os":"26.6","lowPowerMode":false,"visibleMarkerViews":0,"thermalState":1,"applicationActive":true},"expectedMs":[8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526],"environmentBefore":{"mountedMarkerViews":0,"os":"26.6","lowPowerMode":false,"visibleMarkerViews":0,"applicationActive":true,"thermalState":1},"durationMs":6009.2669166770065},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-static","count":200,"pass":0,"beforeBytes":389383400,"afterBytes":498549992,"expectedMs":[8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929],"environmentBefore":{"thermalState":1,"mountedMarkerViews":200,"visibleMarkerViews":200,"lowPowerMode":false,"os":"26.6","applicationActive":true},"refreshRateHz":120,"durationMs":6046.119708335027,"intervalsMs":[19.411624991334975,13.928375003160909,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,22.875916663906537,10.464083330589347,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.367708331206813,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441],"environmentAfter":{"thermalState":1,"mountedMarkerViews":200,"visibleMarkerViews":190,"lowPowerMode":false,"os":"26.6","applicationActive":true}},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-transform","count":200,"pass":0,"beforeBytes":418317544,"afterBytes":521340160,"environmentAfter":{"applicationActive":true,"os":"26.6","visibleMarkerViews":190,"lowPowerMode":false,"mountedMarkerViews":200,"thermalState":1},"refreshRateHz":120,"intervalsMs":[8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,16.6085416713031,8.396708333748393,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.302375004859641,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,16.670000011799857,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,16.669999997247942,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929],"durationMs":6049.63729166775,"expectedMs":[8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526],"environmentBefore":{"applicationActive":true,"os":"26.6","visibleMarkerViews":200,"lowPowerMode":false,"mountedMarkerViews":200,"thermalState":1}},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-layout","count":200,"pass":0,"beforeBytes":410633472,"afterBytes":514770176,"intervalsMs":[8.440125006018206,8.334999991348013,21.461791679030284,11.878208330017515,8.334999991348013,23.612333345226943,9.727666663820855,8.334999991348013,8.335000005899929,22.695541672874242,10.644458321621642,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,25.0462916737888,33.29870833840687,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,21.129041677340865,12.210958331706934,8.334999991348013,8.335000005899929,20.669458332122304,12.67054166237358,8.335000005899929,25.995833333581686,7.344166660914198,27.311708341585472,31.922791662509553,30.070791661273688,35.71970833581872,24.333208333700895,19.580791660700925,30.84004166885279,33.60095834068488,25.79387500009034,27.374375000363216,33.012874991982244,38.84387500875164,23.24491666513495,26.765083326608874,23.023000001558103,26.987000004737638,23.06249999674037,26.947499995003454,22.365750002791174,27.644250003504567,23.492499996791594,26.517500009504147,23.088333327905275,26.92166666383855,24.00812500854954,19.669833331136033,22.551291665877216,20.384666669997387,13.40608332247939,19.80562500830274,13.534375000745058,8.334999991348013,23.109916670364328,10.230083338683471,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,19.509333331370726,13.830666663125157,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,28.924458325491287,12.75054166035261,8.335000005899929,8.335000005899929,8.334999991348013,21.664291663910262,11.675708345137537,8.334999991348013,28.22116666357033,13.453833336825483,25.93020834319759,28.17258331924677,33.02520833676681,32.48287500173319,33.06279167009052,39.03133333369624,27.827541664009914,38.85245833953377,28.594499992323108,26.750625009299256,30.545583329512738,39.134291670052335,28.10825000051409,33.19687499606516,31.496875002630986,30.361166660441086,35.234583338024095,27.278499997919425,34.074333336320706,32.57899999152869,33.35266666545067,29.045916671748273,35.37458332721144,29.136625002138317,29.946374997962266,29.795624999678694,11.141375012812205,8.334999991348013,33.339999994495884,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,33.3400000090478,25.095083328778856,8.244916665717028,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,20.943041672580875,12.396958336466923,8.334999991348013,8.335000005899929,20.74420833378099,12.595791660714895,8.335000005899929,22.824999992735684,10.5150000017602,22.46891666436568,10.87108334468212,23.491791667765938,23.69820832973346,26.80333332682494,34.36166666506324,27.39341667620465,34.601416657096706,33.52712500782218,32.463708324939944,34.74383334105369,37.31050000351388,27.88266666175332,33.336249995045364,33.32316667365376,38.81791666208301,27.59008333669044,33.42991667159367,38.99999998975545,33.3400000090478,25.906999988364987,26.74604167987127,39.03195832390338,25.892583333188668,26.42974999616854,14.357666674186476,23.899666659417562,9.440333335078321,23.50791667413432,9.832083334913477,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,33.339999994495884,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,22.885458325617947,10.454541668877937,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,23.00083334557712,10.339166663470678,8.334999991348013,26.127416669623926,15.547583330771886,21.663250008714385,31.313708328525536,38.70804166945163,29.00437499920372,29.36658333055675,30.858708341838792,35.795333329588175,26.26354165840894,28.543166670715436,28.589458335773088,33.293833330390044,25.450333341723308,25.021874986123294,27.216541668167338,33.338791676214896,30.420333336223848,26.270499991369434,28.025374995195307,32.81454167154152,37.10741666145623,29.002000010223128,34.57812499254942,34.28525000344962,32.61683332675602,31.823000012082048,33.87329165707342,32.95379166956991,33.580708332010545,13.396291673416272,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,33.339999994495884,25.596958337700926,7.743041656794958,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,20.993458325392567,12.346541669103317,8.335000005899929,8.334999991348013,21.666166663635522,11.673833345412277,8.334999991348013,24.276291675050743,9.063708333997056,25.05624998593703,8.283750008558854,31.097458326257765,29.873375009628944,39.04916666215286,30.049624998355284,32.94741666468326,32.456166663905606,37.906791680143215,33.339999994495884,27.36620833456982,26.23545832466334,30.550541676348075,29.806541657308117,30.619125012890436,32.78220831998624,39.34991666756105,27.216166665311903,33.79158333700616,31.071041667019017,27.96354166639503,38.322666674503125,28.08316666050814,30.67445833585225,28.87370833195746,31.439583326573484],"environmentBefore":{"applicationActive":true,"lowPowerMode":false,"visibleMarkerViews":200,"thermalState":1,"os":"26.6","mountedMarkerViews":200},"expectedMs":[8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929],"durationMs":6096.168916672468,"environmentAfter":{"os":"26.6","thermalState":1,"visibleMarkerViews":190,"applicationActive":true,"lowPowerMode":false,"mountedMarkerViews":200},"refreshRateHz":120},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-layout","count":10,"pass":1,"beforeBytes":391857384,"afterBytes":504972544,"intervalsMs":[25.00500000314787,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,21.45579167699907,11.884208332048729,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.367541668121703,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929],"durationMs":6067.3352500016335,"expectedMs":[8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929],"refreshRateHz":120,"environmentAfter":{"mountedMarkerViews":10,"visibleMarkerViews":10,"os":"26.6","thermalState":1,"applicationActive":true,"lowPowerMode":false},"environmentBefore":{"mountedMarkerViews":10,"visibleMarkerViews":10,"os":"26.6","applicationActive":true,"thermalState":1,"lowPowerMode":false}},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-transform","count":10,"pass":1,"beforeBytes":391742720,"afterBytes":504022272,"refreshRateHz":120,"durationMs":6067.366250004852,"environmentAfter":{"mountedMarkerViews":10,"visibleMarkerViews":10,"thermalState":1,"os":"26.6","applicationActive":true,"lowPowerMode":false},"intervalsMs":[18.82220833795145,14.518124997266568,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,22.56445834063925,10.775874994578771,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526],"environmentBefore":{"mountedMarkerViews":10,"visibleMarkerViews":10,"thermalState":1,"applicationActive":true,"os":"26.6","lowPowerMode":false},"expectedMs":[8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013]},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-static","count":10,"pass":1,"beforeBytes":391365864,"afterBytes":504153344,"durationMs":6067.091458331561,"environmentBefore":{"mountedMarkerViews":10,"applicationActive":true,"thermalState":1,"lowPowerMode":false,"visibleMarkerViews":10,"os":"26.6"},"environmentAfter":{"visibleMarkerViews":10,"thermalState":1,"mountedMarkerViews":10,"applicationActive":true,"lowPowerMode":false,"os":"26.6"},"expectedMs":[8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441],"intervalsMs":[17.41137501085177,7.593874994199723,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,22.423416667152196,10.916916668065824,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441],"refreshRateHz":120},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"pins","count":10,"pass":1,"beforeBytes":390907136,"afterBytes":503284992,"refreshRateHz":120,"environmentBefore":{"os":"26.6","mountedMarkerViews":0,"visibleMarkerViews":0,"applicationActive":true,"lowPowerMode":false,"thermalState":1},"environmentAfter":{"os":"26.6","mountedMarkerViews":0,"visibleMarkerViews":0,"applicationActive":true,"lowPowerMode":false,"thermalState":1},"durationMs":6007.003416671068,"expectedMs":[8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441],"intervalsMs":[25.00500000314787,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,21.609791670925915,11.730208323569968,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.367750007892027,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441]},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-layout","count":50,"pass":1,"beforeBytes":408749288,"afterBytes":508298496,"environmentAfter":{"os":"26.6","lowPowerMode":false,"thermalState":1,"mountedMarkerViews":50,"visibleMarkerViews":50,"applicationActive":true},"intervalsMs":[8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,15.74091665679589,9.26433333370369,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.302374990307726,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013],"durationMs":6067.530291664298,"refreshRateHz":120,"environmentBefore":{"os":"26.6","thermalState":1,"mountedMarkerViews":50,"lowPowerMode":false,"visibleMarkerViews":50,"applicationActive":true},"expectedMs":[8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526]},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-transform","count":50,"pass":1,"beforeBytes":396363008,"afterBytes":508380416,"refreshRateHz":120,"environmentAfter":{"applicationActive":true,"mountedMarkerViews":50,"visibleMarkerViews":50,"thermalState":1,"lowPowerMode":false,"os":"26.6"},"intervalsMs":[8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.367541668121703,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.367749993340112,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441],"durationMs":6067.393791672657,"environmentBefore":{"applicationActive":true,"mountedMarkerViews":50,"visibleMarkerViews":50,"thermalState":1,"lowPowerMode":false,"os":"26.6"},"expectedMs":[8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929]},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-static","count":50,"pass":1,"beforeBytes":392463592,"afterBytes":501417216,"refreshRateHz":120,"environmentBefore":{"thermalState":1,"visibleMarkerViews":50,"applicationActive":true,"mountedMarkerViews":50,"os":"26.6","lowPowerMode":false},"expectedMs":[8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929],"environmentAfter":{"thermalState":1,"visibleMarkerViews":50,"applicationActive":true,"mountedMarkerViews":50,"os":"26.6","lowPowerMode":false},"intervalsMs":[17.21029166947119,7.794958335580304,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,23.21845832921099,10.12187500600703,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,16.670166660333052,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526],"durationMs":6066.472208331106},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"pins","count":50,"pass":1,"beforeBytes":385467648,"afterBytes":498255104,"environmentBefore":{"applicationActive":true,"os":"26.6","lowPowerMode":false,"thermalState":1,"visibleMarkerViews":0,"mountedMarkerViews":0},"environmentAfter":{"applicationActive":true,"os":"26.6","lowPowerMode":false,"thermalState":1,"visibleMarkerViews":0,"mountedMarkerViews":0},"durationMs":6007.5637083355105,"expectedMs":[8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441],"refreshRateHz":120,"intervalsMs":[25.00500000314787,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,22.76012500806246,10.57987500098534,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.367708345758729,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441]},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-layout","count":200,"pass":1,"beforeBytes":417088744,"afterBytes":501024000,"intervalsMs":[25.00183334632311,8.33849998889491,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,20.4094166692812,28.75329167000018,9.182875000988133,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,23.36341666523367,9.976916669984348,8.335083330166526,8.335083330166526,23.40162500331644,9.93870833190158,8.335083330166526,23.37604167405516,9.96429166116286,23.6763333377894,9.663999997428618,22.043291668524034,28.955041663721204,26.819333332241513,30.76508332742378,26.863583334488794,30.88012500666082,30.016916658496484,31.106125010410324,31.390916657983325,24.192958342609927,19.75083332217764,28.66925000853371,26.20424999622628,28.743416667566635,29.60079166223295,23.52016666554846,27.242583339102566,23.01074999559205,26.999749999959022,24.663958334713243,19.271708340966143,31.252749991836026,26.215250007226132,27.038666667067446,30.72179165610578,24.142916678101756,8.399874990573153,22.97266667301301,10.36766666220501,8.335083330166526,20.622416675905697,12.717916659312323,8.335083344718441,8.335083330166526,19.309083334519528,14.031250000698492,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,25.005250005051494,8.335083330166526,8.335083330166526,8.335083330166526,25.005250005051494,8.335083330166526,8.335083330166526,20.87279167608358,12.46754165913444,19.850041673635133,13.490291661582887,20.054708336829208,29.5872083370341,33.708916656905785,22.60799999930896,21.59220834437292,29.276916655362584,27.217833339818753,30.452208331553265,26.790583331603557,33.76916666456964,29.82329166843556,36.85737500200048,27.36604167148471,33.977749990299344,32.585375010967255,35.422833330812864,37.34966665797401,27.01783334487118,27.638250001473352,37.029833329143,30.32754166633822,30.235875005018897,34.99649999139365,31.85266666696407,34.97833333676681,28.359916657791473,9.291166672483087,33.34033333521802,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,22.64462500170339,30.66866667359136,13.36737499514129,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,33.34033333521802,8.335083330166526,8.335083344718441,25.727999993250705,7.6123333419673145,16.670166660333052,24.858874996425584,28.16016666474752,38.66687499976251,28.85462500853464,37.8260416619014,25.473916670307517,29.849250000552274,28.603666665730998,27.051833327277564,39.05283333733678,28.103166667278856,33.959916661842726,32.616750002489425,38.64816666464321,27.85520833276678,31.459000005270354,29.179541670600884,30.863916661473922,39.007333340123296,25.68724998855032,30.500875000143424,30.872375005856156,32.71512499486562,38.5893750062678,28.05258333683014,30.944124999223277,25.373291660798714,7.314999995287508,8.335000005899929,25.892208330333233,7.447791664162651,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,25.598708336474374,16.076291663921438,8.335000005899929,22.078208334278315,11.261791660217568,8.335000005899929,22.79133333649952,10.548666657996364,33.3400000090478,27.91179166524671,32.87583333440125,34.02158332755789,33.547041661222465,30.919000011635944,26.92374998878222,32.8822083392879,33.285583325778134,27.724791667424142,27.557541674468666,23.199125003884546,23.181374999694526,28.523124987259507,24.134041668730788,21.27254167862702,28.347749990643933,24.080125003820285,23.469749998184852,27.891916673979722,23.8824999978533,27.818624992505647,23.195875008241273,26.814124998054467,23.243333329446614,18.927041674032807,25.03908332437277,7.805541667039506,33.339999994495884,8.335000005899929,21.57279166567605,11.767208328819834,8.335000005899929,8.335000005899929,17.501541660749353,7.503458327846602,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,16.70445833588019,21.590041666058823,11.715500004356727,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,21.2280416599242,12.111958334571682,8.335000005899929,8.334999991348013,21.477041678735986,11.862958330311812,8.334999991348013,18.878166665672325,14.461833343375474,21.05087500240188,12.289124992094003,19.511041668010876,38.83395832963288,23.237500005052425,21.527208329644054,29.95879166701343,24.456666666083038,25.84483333339449,23.144708335166797,19.578666673623957,24.697041662875563,19.329375005327165,30.954541653045453,27.60108334769029,29.3169166543521,25.15450000646524,25.13862500200048,33.46954166772775,28.48812499723863,32.313041665474884,28.7804166728165,29.961374995764345,30.628749998868443,29.83029166352935,23.854541665059514,37.85845833772328,24.83429166022688,29.308333338121884,12.537375005194917,24.910124993766658,8.429875000729226,8.335000005899929,8.334999991348013,23.81420833989978,9.52579166914802,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929],"environmentBefore":{"thermalState":1,"mountedMarkerViews":200,"visibleMarkerViews":200,"lowPowerMode":false,"os":"26.6","applicationActive":true},"refreshRateHz":120,"expectedMs":[8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083344718441,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929],"environmentAfter":{"thermalState":1,"mountedMarkerViews":200,"visibleMarkerViews":190,"lowPowerMode":false,"os":"26.6","applicationActive":true},"durationMs":6088.027166668326},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-transform","count":200,"pass":1,"beforeBytes":387220736,"afterBytes":500483328,"durationMs":6066.984208329814,"refreshRateHz":120,"environmentBefore":{"lowPowerMode":false,"visibleMarkerViews":200,"mountedMarkerViews":200,"os":"26.6","applicationActive":true,"thermalState":1},"environmentAfter":{"thermalState":1,"mountedMarkerViews":200,"visibleMarkerViews":190,"os":"26.6","lowPowerMode":false,"applicationActive":true},"expectedMs":[8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929],"intervalsMs":[8.335000005899929,16.669999997247942,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,16.669999997247942,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.367708345758729,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,16.670166674884968,8.335083330166526,16.325791671988554,8.67945833306294,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,16.670166674884968,8.335083330166526,16.670166660333052,8.335083344718441,16.670166660333052,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,17.484750002040528,22.788374990341254,9.73737500316929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,16.670166660333052,8.335083344718441,8.335083330166526,8.335083330166526,16.187791668926366,8.817458336125128,8.335083330166526,17.43791667104233,7.567333334009163,8.335083330166526,8.335083330166526,16.670166660333052,8.335083344718441,16.670166660333052,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441]},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-static","count":200,"pass":1,"beforeBytes":397460712,"afterBytes":506676480,"refreshRateHz":120,"durationMs":6063.217874994734,"environmentBefore":{"applicationActive":true,"mountedMarkerViews":200,"visibleMarkerViews":200,"thermalState":1,"lowPowerMode":false,"os":"26.6"},"environmentAfter":{"applicationActive":true,"mountedMarkerViews":200,"visibleMarkerViews":190,"lowPowerMode":false,"thermalState":1,"os":"26.6"},"expectedMs":[8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526],"intervalsMs":[19.72599999862723,13.61433333659079,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,24.982791670481674,8.357541664736345,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.302333328174427,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013]},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"pins","count":200,"pass":1,"beforeBytes":382878976,"afterBytes":492963072,"intervalsMs":[21.280874992953613,12.05912500154227,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,25.39808333676774,7.941916657728143,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.367791670025326,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441],"environmentAfter":{"applicationActive":true,"mountedMarkerViews":0,"lowPowerMode":false,"os":"26.6","thermalState":1,"visibleMarkerViews":0},"environmentBefore":{"applicationActive":true,"mountedMarkerViews":0,"lowPowerMode":false,"os":"26.6","thermalState":1,"visibleMarkerViews":0},"expectedMs":[8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441],"durationMs":6009.616541661671,"refreshRateHz":120},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"pins","count":10,"pass":2,"beforeBytes":380421376,"afterBytes":492455168,"environmentAfter":{"mountedMarkerViews":0,"os":"26.6","visibleMarkerViews":0,"lowPowerMode":false,"thermalState":1,"applicationActive":true},"refreshRateHz":120,"durationMs":6006.884833332151,"intervalsMs":[25.005250005051494,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,24.160791668691672,9.179541666526347,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.302375004859641,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013],"expectedMs":[8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013],"environmentBefore":{"applicationActive":true,"thermalState":1,"os":"26.6","visibleMarkerViews":0,"lowPowerMode":false,"mountedMarkerViews":0}},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-static","count":10,"pass":2,"beforeBytes":379831552,"afterBytes":492717312,"intervalsMs":[18.917333334684372,14.422666674363427,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,21.563375004916452,11.776625004131347,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,16.669999997247942,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.367541668121703,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929],"environmentBefore":{"visibleMarkerViews":10,"mountedMarkerViews":10,"applicationActive":true,"os":"26.6","lowPowerMode":false,"thermalState":1},"environmentAfter":{"visibleMarkerViews":10,"mountedMarkerViews":10,"applicationActive":true,"os":"26.6","lowPowerMode":false,"thermalState":1},"refreshRateHz":120,"expectedMs":[8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526],"durationMs":6067.4647916603135},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-transform","count":10,"pass":2,"beforeBytes":392561920,"afterBytes":492848384,"refreshRateHz":120,"intervalsMs":[19.033499993383884,14.30683332728222,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,25.0369166751625,8.303416660055518,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526],"environmentAfter":{"lowPowerMode":false,"mountedMarkerViews":10,"thermalState":1,"visibleMarkerViews":10,"applicationActive":true,"os":"26.6"},"durationMs":6067.192041664384,"environmentBefore":{"lowPowerMode":false,"mountedMarkerViews":10,"thermalState":1,"visibleMarkerViews":10,"os":"26.6","applicationActive":true},"expectedMs":[8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526]},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-layout","count":10,"pass":2,"beforeBytes":380273920,"afterBytes":483673344,"refreshRateHz":120,"intervalsMs":[25.00524999049958,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.302375004859641,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,16.93641667952761,8.06858332362026,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.367583330255002,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013],"environmentAfter":{"thermalState":1,"mountedMarkerViews":10,"visibleMarkerViews":10,"lowPowerMode":false,"os":"26.6","applicationActive":true},"expectedMs":[8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526],"environmentBefore":{"thermalState":1,"mountedMarkerViews":10,"visibleMarkerViews":10,"lowPowerMode":false,"os":"26.6","applicationActive":true},"durationMs":6071.8602083361475},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"pins","count":50,"pass":2,"beforeBytes":380929280,"afterBytes":492832000,"environmentBefore":{"thermalState":1,"visibleMarkerViews":0,"lowPowerMode":false,"os":"26.6","applicationActive":true,"mountedMarkerViews":0},"environmentAfter":{"thermalState":1,"visibleMarkerViews":0,"lowPowerMode":false,"os":"26.6","applicationActive":true,"mountedMarkerViews":0},"expectedMs":[8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013],"refreshRateHz":120,"durationMs":6007.473874997231,"intervalsMs":[17.465708340751007,7.5395416643004864,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,23.28887500334531,10.051458331872709,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526]},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-static","count":50,"pass":2,"beforeBytes":395789568,"afterBytes":495420672,"expectedMs":[8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929],"intervalsMs":[16.803083330160007,8.202166660339572,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.302375004859641,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,21.642958337906748,11.697041656589136,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,16.670000011799857,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.367791670025326,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526],"environmentAfter":{"os":"26.6","thermalState":1,"mountedMarkerViews":50,"applicationActive":true,"lowPowerMode":false,"visibleMarkerViews":50},"durationMs":6066.7009166645585,"environmentBefore":{"os":"26.6","thermalState":1,"lowPowerMode":false,"applicationActive":true,"visibleMarkerViews":50,"mountedMarkerViews":50},"refreshRateHz":120},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-transform","count":50,"pass":2,"beforeBytes":381076712,"afterBytes":494388456,"environmentAfter":{"os":"26.6","applicationActive":true,"thermalState":1,"lowPowerMode":false,"mountedMarkerViews":50,"visibleMarkerViews":50},"durationMs":6067.740291662631,"expectedMs":[8.334999991348013,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013],"environmentBefore":{"os":"26.6","mountedMarkerViews":50,"thermalState":1,"lowPowerMode":false,"applicationActive":true,"visibleMarkerViews":50},"intervalsMs":[8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526],"refreshRateHz":120},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-layout","count":50,"pass":2,"beforeBytes":380617960,"afterBytes":493028608,"expectedMs":[8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526],"intervalsMs":[8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.367749993340112,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526],"environmentBefore":{"lowPowerMode":false,"thermalState":1,"mountedMarkerViews":50,"visibleMarkerViews":50,"os":"26.6","applicationActive":true},"refreshRateHz":120,"durationMs":6066.51770832832,"environmentAfter":{"applicationActive":true,"mountedMarkerViews":50,"thermalState":1,"visibleMarkerViews":50,"os":"26.6","lowPowerMode":false}},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"pins","count":200,"pass":2,"beforeBytes":376571112,"afterBytes":488522984,"environmentAfter":{"mountedMarkerViews":0,"lowPowerMode":false,"thermalState":1,"visibleMarkerViews":0,"os":"26.6","applicationActive":true},"refreshRateHz":120,"durationMs":6010.002583338064,"environmentBefore":{"mountedMarkerViews":0,"lowPowerMode":false,"thermalState":1,"visibleMarkerViews":0,"os":"26.6","applicationActive":true},"expectedMs":[8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013],"intervalsMs":[19.003249995876104,14.337083339341916,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,24.128083343384787,9.212249991833232,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.302375004859641,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013]},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-static","count":200,"pass":2,"beforeBytes":391906560,"afterBytes":503973120,"expectedMs":[8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929],"intervalsMs":[18.981416666065343,14.358583342982456,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,22.943083342397586,10.396916666650213,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.367791670025326,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526],"refreshRateHz":120,"environmentBefore":{"lowPowerMode":false,"mountedMarkerViews":200,"visibleMarkerViews":200,"thermalState":1,"os":"26.6","applicationActive":true},"durationMs":6062.368083323236,"environmentAfter":{"applicationActive":true,"visibleMarkerViews":190,"mountedMarkerViews":200,"thermalState":1,"os":"26.6","lowPowerMode":false}},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-transform","count":200,"pass":2,"beforeBytes":398247168,"afterBytes":498025728,"expectedMs":[8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083330166526,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.335083344718441,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.334999991348013],"environmentBefore":{"lowPowerMode":false,"mountedMarkerViews":200,"thermalState":1,"visibleMarkerViews":200,"os":"26.6","applicationActive":true},"durationMs":6067.54379166523,"refreshRateHz":120,"intervalsMs":[8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,15.991041669622064,9.01420833542943,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,16.670166660333052,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,16.229791668592952,8.775458336458541,8.335083330166526,8.335083330166526,8.335083330166526,20.165000009001233,13.175333326216787,16.399541666032746,8.605708339018747,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.302374990307726,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013],"environmentAfter":{"lowPowerMode":false,"mountedMarkerViews":200,"thermalState":1,"visibleMarkerViews":190,"os":"26.6","applicationActive":true}},
+{"kind":"marker-view-benchmark","suite":"primary","workloadVersion":3,"cameraAnimationSeconds":1.2,"cameraBefore":{"center":{"latitude":52.229699999999994,"longitude":21.01220000000001},"zoom":14.000000000000023,"heading":0,"pitch":0,"altitude":2996.3187130528286},"cameraAfter":{"center":{"latitude":52.22870000000001,"longitude":21.01220000000001},"zoom":14,"heading":36,"pitch":0,"altitude":2996.386203923062},"cameraRouteCompleted":true,"provider":"apple","mode":"live-layout","count":200,"pass":2,"beforeBytes":410780928,"afterBytes":495158528,"expectedMs":[8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083344718441,8.334999991348013,8.335083344718441,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.335083344718441,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.334999991348013,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.335083344718441,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.335000005899929,8.335083344718441,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.334999991348013,8.335083330166526,8.335000005899929,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083344718441,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.335083344718441,8.335000005899929,8.334999991348013,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335083330166526,8.335083330166526,8.334999991348013,8.335000005899929,8.335083330166526,8.335000005899929,8.335000005899929,8.334999991348013,8.334999991348013,8.335083344718441,8.335000005899929,8.335000005899929,8.335083344718441,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.335083330166526,8.334999991348013,8.335083330166526,8.335083330166526,8.335000005899929,8.334999991348013,8.335000005899929,8.335083344718441],"durationMs":6081.952291671769,"refreshRateHz":120,"environmentBefore":{"lowPowerMode":false,"os":"26.6","applicationActive":true,"mountedMarkerViews":200,"visibleMarkerViews":200,"thermalState":1},"intervalsMs":[33.07233333180193,32.334083327441476,13.82312500209082,24.769791663857177,8.570208330638707,8.335000005899929,8.335000005899929,20.516666656476445,12.823333338019438,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,19.500583337503485,30.50829166022595,16.671125005814247,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,27.243583332165144,14.431416668230668,8.334999991348013,8.335000005899929,19.227625001803972,14.112374992691912,23.104875013814308,10.235124995233491,22.271083333180286,11.068916661315598,23.794374996214174,29.822708340361714,32.9280416626716,32.696750000468455,39.12312501051929,26.00954165973235,32.335458337911405,33.339999994495884,25.94520834099967,27.951833326369524,30.31537499919068,26.549541667918675,31.342250003945082,25.270041660405695,32.698416674975306,29.04787499574013,28.793958335882053,25.26870832662098,23.562958333059214,20.498500001849607,30.668624996906146,25.461208337219432,26.070166670251638,24.56333332520444,17.207875003805384,15.57679167308379,22.49341666174587,10.846583332750015,21.12995833158493,12.210041662910953,8.335000005899929,8.335000005899929,19.239583329181187,14.100416665314697,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,16.669999997247942,8.335000005899929,8.334999991348013,8.335000005899929,23.188124992884696,10.151875001611188,8.335000005899929,8.334999991348013,22.984916664427146,10.355083344620652,8.334999991348013,20.123833339312114,13.216166669735685,24.74279166199267,8.597208332503214,28.35012499417644,38.32987500936724,28.40483332693111,30.946333339670673,29.144083324354142,28.60266667266842,28.576208336744457,37.695874998462386,28.165875002741814,30.742791655939072,27.657083337544464,27.210625004954636,31.10066665976774,31.35491667489987,32.13812499598134,29.93929166404996,28.519541665446013,29.10491666989401,32.53370833408553,30.903458333341405,29.94774999388028,29.386708338279277,29.490750006516464,30.067749990848824,13.501041670679115,30.226874994696118,11.448125005699694,8.335000005899929,8.334999991348013,22.137250009109266,11.202749999938533,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,21.91937500901986,28.401249990565702,8.024375012610108,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,22.160749998874962,11.179250010172836,8.334999991348013,8.335000005899929,8.335000005899929,20.775458324351348,12.564541670144536,24.21683333523106,9.123166659264825,22.657791676465422,10.682208332582377,21.95687498897314,28.562750012497418,32.830374999321066,27.35424999264069,35.01229167159181,32.83291666593868,34.30474999186117,31.65991666901391,34.412875000271015,32.27937500923872,33.44041666423436,38.763208329328336,33.339999994495884,28.490125012467615,32.078208329039626,39.45166667108424,25.272249986301176,33.07275001134258,24.04124999884516,22.209999995538965,31.208083339151926,33.341999995172955,33.21204167150427,33.60412499750964,39.09249999560416,8.335000005899929,22.531499998876825,10.808499995619059,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,24.839083329425193,16.83591667097062,8.335000005899929,27.09387498907745,14.581125011318363,23.760583324474283,9.579416670021601,33.339999994495884,31.443416664842516,27.27495833823923,25.484124998911284,28.200916669447906,34.12679166649468,29.637958330567926,26.871875001234002,31.09208332898561,32.58787500089966,33.3400000090478,25.35104166599922,25.353333330713212,27.29029166221153,33.0648750095861,30.64362499571871,28.690124992863275,33.7042916653445,31.79587500926573,33.04904166725464,39.45250000106171,27.564499992877245,39.11549999611452,27.306458345265128,33.712666656356305,33.92641666869167,13.40945833362639,8.335000005899929,8.334999991348013,22.510583337862045,10.829416671185754,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,21.428333333460614,36.91666666418314,8.334999991348013,8.335000005899929,8.335000005899929,8.334999991348013,8.335000005899929,8.334999991348013,8.335000005899929,8.335000005899929,24.08929166267626,9.250708331819624,8.335000005899929,8.334999991348013,8.335000005899929,21.541875001275912,11.798124993219972,27.2149166703457,14.46008333005011,27.26079167041462,34.135666661313735,38.62354166631121,30.622916674474254,32.05383333261125,25.983083323808387,31.267333339201286,32.38604166836012,34.618249992490746,33.10433334263507,34.836416656617075,31.919583343551494,33.78058332600631,37.86529166973196,28.819750004913658,32.14629166177474,34.82962500129361,27.843125004437752,25.587833326426335,28.57945833238773,34.254916667123325,30.213000005460344,27.744124992750585,13.37187500030268,24.27933333092369],"environmentAfter":{"lowPowerMode":false,"os":"26.6","applicationActive":true,"mountedMarkerViews":200,"visibleMarkerViews":190,"thermalState":1}}
+],"summary":[
+ {
+ "mode": "pins",
+ "count": 10,
+ "pass": 0,
+ "samples": 714,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.14171658990033,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 32.66787499887869,
+ "lateCallbackPercent": 0.42016806722689076,
+ "intervalsWithin120HzBudgetPercent": 99.5798319327731,
+ "memoryDeltaMiB": 122.50004577636719,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-static",
+ "count": 10,
+ "pass": 0,
+ "samples": 722,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.47890813203011,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335000005899929,
+ "p99Ms": 8.335000005899929,
+ "maxMs": 24.515208322554827,
+ "lateCallbackPercent": 0.4155124653739612,
+ "intervalsWithin120HzBudgetPercent": 99.58448753462604,
+ "memoryDeltaMiB": 70.7343978881836,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 10,
+ "pass": 0,
+ "samples": 716,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 118.48561810468252,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 49.65366667602211,
+ "lateCallbackPercent": 0.5586592178770949,
+ "intervalsWithin120HzBudgetPercent": 99.44134078212291,
+ "memoryDeltaMiB": 118.046875,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 10,
+ "pass": 0,
+ "samples": 721,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.31364453627889,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 23.35733333893586,
+ "lateCallbackPercent": 0.5547850208044383,
+ "intervalsWithin120HzBudgetPercent": 99.44521497919555,
+ "memoryDeltaMiB": 124.6875,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "pins",
+ "count": 50,
+ "pass": 0,
+ "samples": 717,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.4745967140029,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335083330166526,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 25.26966665755026,
+ "lateCallbackPercent": 0.41841004184100417,
+ "intervalsWithin120HzBudgetPercent": 99.581589958159,
+ "memoryDeltaMiB": 95.8281478881836,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-static",
+ "count": 50,
+ "pass": 0,
+ "samples": 718,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 118.81642786042988,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 35.63583333743736,
+ "lateCallbackPercent": 0.6963788300835655,
+ "intervalsWithin120HzBudgetPercent": 99.30362116991644,
+ "memoryDeltaMiB": 102.296875,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 50,
+ "pass": 0,
+ "samples": 725,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.9744049085515,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 8.367750007892027,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 108.5156478881836,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 50,
+ "pass": 0,
+ "samples": 725,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.97613467830054,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 8.335083344718441,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 107.8125,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "pins",
+ "count": 200,
+ "pass": 0,
+ "samples": 716,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.30882448388289,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335000005899929,
+ "p99Ms": 8.335000005899929,
+ "maxMs": 23.490708335884847,
+ "lateCallbackPercent": 0.5586592178770949,
+ "intervalsWithin120HzBudgetPercent": 99.44134078212291,
+ "memoryDeltaMiB": 72.078125,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-static",
+ "count": 200,
+ "pass": 0,
+ "samples": 721,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.31259973533041,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 22.875916663906537,
+ "lateCallbackPercent": 0.5547850208044383,
+ "intervalsWithin120HzBudgetPercent": 99.44521497919555,
+ "memoryDeltaMiB": 104.109375,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 200,
+ "pass": 0,
+ "samples": 722,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.4795614274366,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 16.670000011799857,
+ "lateCallbackPercent": 0.4155124653739612,
+ "intervalsWithin120HzBudgetPercent": 99.58448753462604,
+ "memoryDeltaMiB": 98.2500228881836,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 200,
+ "pass": 0,
+ "samples": 312,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 51.39695277161075,
+ "p50Ms": 20.669458332122304,
+ "p95Ms": 35.71970833581872,
+ "p99Ms": 39.03195832390338,
+ "maxMs": 39.34991666756105,
+ "lateCallbackPercent": 60.57692307692308,
+ "intervalsWithin120HzBudgetPercent": 39.42307692307692,
+ "memoryDeltaMiB": 99.3125,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 10,
+ "pass": 1,
+ "samples": 723,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.31524846868466,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335000005899929,
+ "p99Ms": 8.335000005899929,
+ "maxMs": 25.00500000314787,
+ "lateCallbackPercent": 0.4149377593360996,
+ "intervalsWithin120HzBudgetPercent": 99.5850622406639,
+ "memoryDeltaMiB": 107.8750228881836,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 10,
+ "pass": 1,
+ "samples": 723,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.31469632098566,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 22.56445834063925,
+ "lateCallbackPercent": 0.5532503457814661,
+ "intervalsWithin120HzBudgetPercent": 99.44674965421854,
+ "memoryDeltaMiB": 107.078125,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-static",
+ "count": 10,
+ "pass": 1,
+ "samples": 724,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.47972356318972,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 22.423416667152196,
+ "lateCallbackPercent": 0.4143646408839779,
+ "intervalsWithin120HzBudgetPercent": 99.58563535911603,
+ "memoryDeltaMiB": 107.5625228881836,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "pins",
+ "count": 10,
+ "pass": 1,
+ "samples": 715,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.30760374467205,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 25.00500000314787,
+ "lateCallbackPercent": 0.4195804195804196,
+ "intervalsWithin120HzBudgetPercent": 99.58041958041959,
+ "memoryDeltaMiB": 107.171875,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 50,
+ "pass": 1,
+ "samples": 726,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.81044452918846,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 15.74091665679589,
+ "lateCallbackPercent": 0.27548209366391185,
+ "intervalsWithin120HzBudgetPercent": 99.72451790633609,
+ "memoryDeltaMiB": 94.9375228881836,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 50,
+ "pass": 1,
+ "samples": 727,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.97459327557108,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335083330166526,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 8.367749993340112,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 106.828125,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-static",
+ "count": 50,
+ "pass": 1,
+ "samples": 723,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.31469632098566,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 23.21845832921099,
+ "lateCallbackPercent": 0.5532503457814661,
+ "intervalsWithin120HzBudgetPercent": 99.44674965421854,
+ "memoryDeltaMiB": 103.9062728881836,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "pins",
+ "count": 50,
+ "pass": 1,
+ "samples": 716,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.30796796208666,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 25.00500000314787,
+ "lateCallbackPercent": 0.41899441340782123,
+ "intervalsWithin120HzBudgetPercent": 99.58100558659218,
+ "memoryDeltaMiB": 107.5625,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 200,
+ "pass": 1,
+ "samples": 333,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 54.80386757301686,
+ "p50Ms": 16.70445833588019,
+ "p95Ms": 33.959916661842726,
+ "p99Ms": 38.66687499976251,
+ "maxMs": 39.05283333733678,
+ "lateCallbackPercent": 57.35735735735736,
+ "intervalsWithin120HzBudgetPercent": 42.64264264264264,
+ "memoryDeltaMiB": 80.0468978881836,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 200,
+ "pass": 1,
+ "samples": 712,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 117.49926819085913,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 16.670166660333052,
+ "maxMs": 22.788374990341254,
+ "lateCallbackPercent": 2.247191011235955,
+ "intervalsWithin120HzBudgetPercent": 97.75280898876404,
+ "memoryDeltaMiB": 108.015625,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-static",
+ "count": 200,
+ "pass": 1,
+ "samples": 723,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.315753036348,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 24.982791670481674,
+ "lateCallbackPercent": 0.4149377593360996,
+ "intervalsWithin120HzBudgetPercent": 99.5850622406639,
+ "memoryDeltaMiB": 104.1562728881836,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "pins",
+ "count": 200,
+ "pass": 1,
+ "samples": 716,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.30798287252806,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 25.39808333676774,
+ "lateCallbackPercent": 0.41899441340782123,
+ "intervalsWithin120HzBudgetPercent": 99.58100558659218,
+ "memoryDeltaMiB": 104.984375,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "pins",
+ "count": 10,
+ "pass": 2,
+ "samples": 715,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.30855851259179,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 25.005250005051494,
+ "lateCallbackPercent": 0.4195804195804196,
+ "intervalsWithin120HzBudgetPercent": 99.58041958041959,
+ "memoryDeltaMiB": 106.84375,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-static",
+ "count": 10,
+ "pass": 2,
+ "samples": 722,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.1502204625039,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335000005899929,
+ "p99Ms": 8.335000005899929,
+ "maxMs": 21.563375004916452,
+ "lateCallbackPercent": 0.6925207756232687,
+ "intervalsWithin120HzBudgetPercent": 99.30747922437673,
+ "memoryDeltaMiB": 107.65625,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 10,
+ "pass": 2,
+ "samples": 723,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.31469632098566,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 25.0369166751625,
+ "lateCallbackPercent": 0.4149377593360996,
+ "intervalsWithin120HzBudgetPercent": 99.5850622406639,
+ "memoryDeltaMiB": 95.640625,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 10,
+ "pass": 2,
+ "samples": 724,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.48088608043122,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335000005899929,
+ "p99Ms": 8.335083330166526,
+ "maxMs": 25.00524999049958,
+ "lateCallbackPercent": 0.27624309392265195,
+ "intervalsWithin120HzBudgetPercent": 99.72375690607734,
+ "memoryDeltaMiB": 98.609375,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "pins",
+ "count": 50,
+ "pass": 2,
+ "samples": 717,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.47491026875296,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 23.28887500334531,
+ "lateCallbackPercent": 0.41841004184100417,
+ "intervalsWithin120HzBudgetPercent": 99.581589958159,
+ "memoryDeltaMiB": 106.71875,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-static",
+ "count": 50,
+ "pass": 2,
+ "samples": 723,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.3156037169273,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 21.642958337906748,
+ "lateCallbackPercent": 0.5532503457814661,
+ "intervalsWithin120HzBudgetPercent": 99.44674965421854,
+ "memoryDeltaMiB": 95.015625,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 50,
+ "pass": 2,
+ "samples": 727,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.97480529094962,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 8.335083344718441,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 108.0625,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 50,
+ "pass": 2,
+ "samples": 727,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.9745924507008,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 8.367749993340112,
+ "lateCallbackPercent": 0.0,
+ "intervalsWithin120HzBudgetPercent": 100.0,
+ "memoryDeltaMiB": 107.2031478881836,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "pins",
+ "count": 200,
+ "pass": 2,
+ "samples": 716,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.30941262469808,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 24.128083343384787,
+ "lateCallbackPercent": 0.5586592178770949,
+ "intervalsWithin120HzBudgetPercent": 99.44134078212291,
+ "memoryDeltaMiB": 106.765625,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-static",
+ "count": 200,
+ "pass": 2,
+ "samples": 723,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 119.31494983245624,
+ "p50Ms": 8.335000005899929,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.335083344718441,
+ "maxMs": 22.943083342397586,
+ "lateCallbackPercent": 0.5532503457814661,
+ "intervalsWithin120HzBudgetPercent": 99.44674965421854,
+ "memoryDeltaMiB": 106.875,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-transform",
+ "count": 200,
+ "pass": 2,
+ "samples": 721,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 118.9853135446843,
+ "p50Ms": 8.335083330166526,
+ "p95Ms": 8.335083344718441,
+ "p99Ms": 8.775458336458541,
+ "maxMs": 20.165000009001233,
+ "lateCallbackPercent": 1.1095700416088765,
+ "intervalsWithin120HzBudgetPercent": 98.89042995839112,
+ "memoryDeltaMiB": 95.15625,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ },
+ {
+ "mode": "live-layout",
+ "count": 200,
+ "pass": 2,
+ "samples": 316,
+ "reportedMaximumHz": 120,
+ "callbackRateHz": 52.047010501541465,
+ "p50Ms": 17.207875003805384,
+ "p95Ms": 34.412875000271015,
+ "p99Ms": 39.11549999611452,
+ "maxMs": 39.45250000106171,
+ "lateCallbackPercent": 60.44303797468354,
+ "intervalsWithin120HzBudgetPercent": 39.55696202531646,
+ "memoryDeltaMiB": 80.46875,
+ "measurement": "main-thread display callback intervals; not map/GPU presentation"
+ }
+]}
diff --git a/experiments/custom-markers/results/iphone-15-pro-v3-surface-diagnostics.json b/experiments/custom-markers/results/iphone-15-pro-v3-surface-diagnostics.json
new file mode 100644
index 0000000..f2c6f14
--- /dev/null
+++ b/experiments/custom-markers/results/iphone-15-pro-v3-surface-diagnostics.json
@@ -0,0 +1 @@
+{"runs":[{"name":"moving-camera-unlabeled","traceTemplate":"Metal System Trace","measurement":"app-associated displayed surface intervals, including idle periods; not whole-screen JSX presentation","rows":[{"startMs":1535.708291,"durationMs":25.005209},{"startMs":1560.7135,"durationMs":41.675291},{"startMs":1602.388791,"durationMs":16.670084},{"startMs":1619.058875,"durationMs":8.335041},{"startMs":1627.393916,"durationMs":16.670167},{"startMs":1644.064083,"durationMs":16.670125},{"startMs":1660.734208,"durationMs":16.670083},{"startMs":1677.404291,"durationMs":16.670167},{"startMs":1694.074458,"durationMs":16.670083},{"startMs":1710.744541,"durationMs":16.670125},{"startMs":1727.414666,"durationMs":16.670125},{"startMs":1744.084791,"durationMs":16.670084},{"startMs":1760.754875,"durationMs":16.670125},{"startMs":1777.425,"durationMs":16.670125},{"startMs":1794.095125,"durationMs":16.670125},{"startMs":1810.76525,"durationMs":16.670166},{"startMs":1827.435416,"durationMs":16.670084},{"startMs":1844.1055,"durationMs":16.670166},{"startMs":1860.775666,"durationMs":16.670042},{"startMs":1877.445708,"durationMs":16.670125},{"startMs":1894.115833,"durationMs":16.670125},{"startMs":1910.785958,"durationMs":16.670083},{"startMs":1927.456041,"durationMs":16.670167},{"startMs":1944.126208,"durationMs":16.670083},{"startMs":1960.796291,"durationMs":16.670125},{"startMs":1977.466416,"durationMs":16.670125},{"startMs":1994.136541,"durationMs":16.670125},{"startMs":2010.806666,"durationMs":16.670125},{"startMs":2027.476791,"durationMs":16.670125},{"startMs":2044.146916,"durationMs":16.670125},{"startMs":2060.817041,"durationMs":16.670125},{"startMs":2077.487166,"durationMs":16.670125},{"startMs":2094.157291,"durationMs":16.670084},{"startMs":2110.827375,"durationMs":16.670166},{"startMs":2127.497541,"durationMs":16.670125},{"startMs":2144.167666,"durationMs":16.670084},{"startMs":2160.83775,"durationMs":16.670083},{"startMs":2177.507833,"durationMs":16.670125},{"startMs":2194.177958,"durationMs":16.670125},{"startMs":2210.848083,"durationMs":16.670125},{"startMs":2227.518208,"durationMs":16.670083},{"startMs":2244.188291,"durationMs":16.670125},{"startMs":2260.858416,"durationMs":16.670125},{"startMs":2277.528541,"durationMs":16.670125},{"startMs":2294.198666,"durationMs":16.670125},{"startMs":2310.868791,"durationMs":16.670125},{"startMs":2327.538916,"durationMs":16.670125},{"startMs":2344.209041,"durationMs":16.670084},{"startMs":2360.879125,"durationMs":16.670166},{"startMs":2377.549291,"durationMs":16.670084},{"startMs":2394.219375,"durationMs":16.670166},{"startMs":2410.889541,"durationMs":16.670084},{"startMs":2427.559625,"durationMs":25.005208},{"startMs":2452.564833,"durationMs":8.335},{"startMs":2460.899833,"durationMs":16.670125},{"startMs":2477.569958,"durationMs":16.670125},{"startMs":2494.240083,"durationMs":16.670125},{"startMs":2510.910208,"durationMs":16.670125},{"startMs":2527.580333,"durationMs":16.670125},{"startMs":2544.250458,"durationMs":16.670083},{"startMs":2560.920541,"durationMs":16.670167},{"startMs":2577.590708,"durationMs":16.670042},{"startMs":2594.26075,"durationMs":16.670166},{"startMs":2610.930916,"durationMs":16.670084},{"startMs":2627.601,"durationMs":16.670125},{"startMs":2644.271125,"durationMs":16.670125},{"startMs":2660.94125,"durationMs":16.670125},{"startMs":2677.611375,"durationMs":16.670166},{"startMs":2694.281541,"durationMs":16.670125},{"startMs":2710.951666,"durationMs":16.670042},{"startMs":2727.621708,"durationMs":16.670167},{"startMs":2744.291875,"durationMs":16.670083},{"startMs":2760.961958,"durationMs":183.371292},{"startMs":2944.33325,"durationMs":8.335041},{"startMs":2952.668291,"durationMs":100.02075},{"startMs":3052.689041,"durationMs":16.670125},{"startMs":3069.359166,"durationMs":8.335042},{"startMs":3077.694208,"durationMs":16.670125},{"startMs":3094.364333,"durationMs":16.670083},{"startMs":3111.034416,"durationMs":16.670125},{"startMs":3127.704541,"durationMs":16.670167},{"startMs":3144.374708,"durationMs":16.670083},{"startMs":3161.044791,"durationMs":16.670125},{"startMs":3177.714916,"durationMs":16.670084},{"startMs":3194.385,"durationMs":16.670166},{"startMs":3211.055166,"durationMs":16.670125},{"startMs":3227.725291,"durationMs":16.670084},{"startMs":3244.395375,"durationMs":16.670083},{"startMs":3261.065458,"durationMs":16.670208},{"startMs":3277.735666,"durationMs":16.670084},{"startMs":3294.40575,"durationMs":16.670125},{"startMs":3311.075875,"durationMs":16.670083},{"startMs":3327.745958,"durationMs":16.670083},{"startMs":3344.416041,"durationMs":16.670167},{"startMs":3361.086208,"durationMs":16.670125},{"startMs":3377.756333,"durationMs":16.670125},{"startMs":3394.426458,"durationMs":16.670083},{"startMs":3411.096541,"durationMs":16.670125},{"startMs":3427.766666,"durationMs":16.670125},{"startMs":3444.436791,"durationMs":16.670125},{"startMs":3461.106916,"durationMs":16.670167},{"startMs":3477.777083,"durationMs":16.670083},{"startMs":3494.447166,"durationMs":16.670125},{"startMs":3511.117291,"durationMs":16.670084},{"startMs":3527.787375,"durationMs":16.670125},{"startMs":3544.4575,"durationMs":16.670125},{"startMs":3561.127625,"durationMs":16.670125},{"startMs":3577.79775,"durationMs":16.670083},{"startMs":3594.467833,"durationMs":16.670167},{"startMs":3611.138,"durationMs":16.670083},{"startMs":3627.808083,"durationMs":16.670125},{"startMs":3644.478208,"durationMs":16.670125},{"startMs":3661.148333,"durationMs":16.670125},{"startMs":3677.818458,"durationMs":16.670208},{"startMs":3694.488666,"durationMs":16.670042},{"startMs":3711.158708,"durationMs":16.670083},{"startMs":3727.828791,"durationMs":16.670125},{"startMs":3744.498916,"durationMs":16.670084},{"startMs":3761.169,"durationMs":16.670125},{"startMs":3777.839125,"durationMs":16.670166},{"startMs":3794.509291,"durationMs":16.670084},{"startMs":3811.179375,"durationMs":16.670125},{"startMs":3827.8495,"durationMs":16.670125},{"startMs":3844.519625,"durationMs":25.005166},{"startMs":3869.524791,"durationMs":8.335042},{"startMs":3877.859833,"durationMs":16.670167},{"startMs":3894.53,"durationMs":16.670083},{"startMs":3911.200083,"durationMs":16.670083},{"startMs":3927.870166,"durationMs":16.670209},{"startMs":3944.540375,"durationMs":16.670041},{"startMs":3961.210416,"durationMs":16.670125},{"startMs":3977.880541,"durationMs":16.670167},{"startMs":3994.550708,"durationMs":16.670083},{"startMs":4011.220791,"durationMs":16.670084},{"startMs":4027.890875,"durationMs":16.670208},{"startMs":4044.561083,"durationMs":16.670083},{"startMs":4061.231166,"durationMs":16.670084},{"startMs":4077.90125,"durationMs":16.670166},{"startMs":4094.571416,"durationMs":16.670084},{"startMs":4111.2415,"durationMs":16.670125},{"startMs":4127.911625,"durationMs":16.670125},{"startMs":4144.58175,"durationMs":16.670083},{"startMs":4161.251833,"durationMs":16.670167},{"startMs":4177.922,"durationMs":16.670083},{"startMs":4194.592083,"durationMs":16.670125},{"startMs":4211.262208,"durationMs":16.670125},{"startMs":4227.932333,"durationMs":16.670083},{"startMs":4244.602416,"durationMs":16.670167},{"startMs":4261.272583,"durationMs":16.670125},{"startMs":4277.942708,"durationMs":16.670083},{"startMs":4294.612791,"durationMs":16.670125},{"startMs":4311.282916,"durationMs":16.670084},{"startMs":4327.953,"durationMs":16.670125},{"startMs":4344.623125,"durationMs":16.670166},{"startMs":4361.293291,"durationMs":16.670042},{"startMs":4377.963333,"durationMs":16.670167},{"startMs":4394.6335,"durationMs":16.670083},{"startMs":4411.303583,"durationMs":16.670167},{"startMs":4427.97375,"durationMs":16.670083},{"startMs":4444.643833,"durationMs":16.670167},{"startMs":4461.314,"durationMs":16.670083},{"startMs":4477.984083,"durationMs":16.670125},{"startMs":4494.654208,"durationMs":16.670125},{"startMs":4511.324333,"durationMs":16.670125},{"startMs":4527.994458,"durationMs":16.670125},{"startMs":4544.664583,"durationMs":16.670083},{"startMs":4561.334666,"durationMs":16.670125},{"startMs":4578.004791,"durationMs":16.670084},{"startMs":4594.674875,"durationMs":16.670166},{"startMs":4611.345041,"durationMs":16.670084},{"startMs":4628.015125,"durationMs":16.670166},{"startMs":4644.685291,"durationMs":16.670084},{"startMs":4661.355375,"durationMs":16.670125},{"startMs":4678.0255,"durationMs":16.670166},{"startMs":4694.695666,"durationMs":16.670042},{"startMs":4711.365708,"durationMs":16.670125},{"startMs":4728.035833,"durationMs":16.670125},{"startMs":4744.705958,"durationMs":16.670125},{"startMs":4761.376083,"durationMs":16.670125},{"startMs":4778.046208,"durationMs":16.670125},{"startMs":4794.716333,"durationMs":16.670125},{"startMs":4811.386458,"durationMs":16.670083},{"startMs":4828.056541,"durationMs":16.670125},{"startMs":4844.726666,"durationMs":16.670084},{"startMs":4861.39675,"durationMs":16.670166},{"startMs":4878.066916,"durationMs":16.670084},{"startMs":4894.737,"durationMs":16.670166},{"startMs":4911.407166,"durationMs":16.670125},{"startMs":4928.077291,"durationMs":16.670125},{"startMs":4944.747416,"durationMs":16.670084},{"startMs":4961.4175,"durationMs":16.670125},{"startMs":4978.087625,"durationMs":16.670125},{"startMs":4994.75775,"durationMs":16.670083},{"startMs":5011.427833,"durationMs":16.670167},{"startMs":5028.098,"durationMs":16.670041},{"startMs":5044.768041,"durationMs":16.670167},{"startMs":5061.438208,"durationMs":16.670083},{"startMs":5078.108291,"durationMs":16.670125},{"startMs":5094.778416,"durationMs":16.670167},{"startMs":5111.448583,"durationMs":16.670125},{"startMs":5128.118708,"durationMs":16.670125},{"startMs":5144.788833,"durationMs":16.670042},{"startMs":5161.458875,"durationMs":16.670166},{"startMs":5178.129041,"durationMs":16.670084},{"startMs":5194.799125,"durationMs":16.670166},{"startMs":5211.469291,"durationMs":16.670125},{"startMs":5228.139416,"durationMs":16.670042},{"startMs":5244.809458,"durationMs":16.670167},{"startMs":5261.479625,"durationMs":16.670125},{"startMs":5278.14975,"durationMs":16.670125},{"startMs":5294.819875,"durationMs":16.670083},{"startMs":5311.489958,"durationMs":16.670125},{"startMs":5328.160083,"durationMs":16.670125},{"startMs":5344.830208,"durationMs":16.670167},{"startMs":5361.500375,"durationMs":16.670083},{"startMs":5378.170458,"durationMs":16.670125},{"startMs":5394.840583,"durationMs":16.670083},{"startMs":5411.510666,"durationMs":16.670125},{"startMs":5428.180791,"durationMs":16.670167},{"startMs":5444.850958,"durationMs":16.670083},{"startMs":5461.521041,"durationMs":16.670125},{"startMs":5478.191166,"durationMs":16.670084},{"startMs":5494.86125,"durationMs":16.670125},{"startMs":5511.531375,"durationMs":16.670125},{"startMs":5528.2015,"durationMs":16.670166},{"startMs":5544.871666,"durationMs":16.670042},{"startMs":5561.541708,"durationMs":16.670125},{"startMs":5578.211833,"durationMs":16.670167},{"startMs":5594.882,"durationMs":16.670083},{"startMs":5611.552083,"durationMs":16.670125},{"startMs":5628.222208,"durationMs":16.670125},{"startMs":5644.892333,"durationMs":16.670083},{"startMs":5661.562416,"durationMs":16.670125},{"startMs":5678.232541,"durationMs":16.670209},{"startMs":5694.90275,"durationMs":16.670083},{"startMs":5711.572833,"durationMs":16.670083},{"startMs":5728.242916,"durationMs":16.670125},{"startMs":5744.913041,"durationMs":16.670125},{"startMs":5761.583166,"durationMs":16.670084},{"startMs":5778.25325,"durationMs":16.670166},{"startMs":5794.923416,"durationMs":16.670084},{"startMs":5811.5935,"durationMs":16.670083},{"startMs":5828.263583,"durationMs":16.670167},{"startMs":5844.93375,"durationMs":16.670083},{"startMs":5861.603833,"durationMs":16.670125},{"startMs":5878.273958,"durationMs":16.670125},{"startMs":5894.944083,"durationMs":16.670125},{"startMs":5911.614208,"durationMs":16.670125},{"startMs":5928.284333,"durationMs":16.670125},{"startMs":5944.954458,"durationMs":16.670125},{"startMs":5961.624583,"durationMs":16.670083},{"startMs":5978.294666,"durationMs":16.670167},{"startMs":5994.964833,"durationMs":16.670042},{"startMs":6011.634875,"durationMs":16.670166},{"startMs":6028.305041,"durationMs":16.670125},{"startMs":6044.975166,"durationMs":16.670125},{"startMs":6061.645291,"durationMs":16.670084},{"startMs":6078.315375,"durationMs":16.670125},{"startMs":6094.9855,"durationMs":16.670166},{"startMs":6111.655666,"durationMs":16.670125},{"startMs":6128.325791,"durationMs":16.670084},{"startMs":6144.995875,"durationMs":16.670083},{"startMs":6161.665958,"durationMs":16.670167},{"startMs":6178.336125,"durationMs":16.670083},{"startMs":6195.006208,"durationMs":16.670125},{"startMs":6211.676333,"durationMs":16.670125},{"startMs":6228.346458,"durationMs":16.670083},{"startMs":6245.016541,"durationMs":16.670125},{"startMs":6261.686666,"durationMs":16.670084},{"startMs":6278.35675,"durationMs":16.670166},{"startMs":6295.026916,"durationMs":16.670125},{"startMs":6311.697041,"durationMs":16.670125},{"startMs":6328.367166,"durationMs":16.670084},{"startMs":6345.03725,"durationMs":16.670125},{"startMs":6361.707375,"durationMs":16.670125},{"startMs":6378.3775,"durationMs":16.670125},{"startMs":6395.047625,"durationMs":16.670125},{"startMs":6411.71775,"durationMs":16.670083},{"startMs":6428.387833,"durationMs":16.670125},{"startMs":6445.057958,"durationMs":16.670125},{"startMs":6461.728083,"durationMs":16.670167},{"startMs":6478.39825,"durationMs":16.670083},{"startMs":6495.068333,"durationMs":16.670125},{"startMs":6511.738458,"durationMs":16.670083},{"startMs":6528.408541,"durationMs":16.670167},{"startMs":6545.078708,"durationMs":16.670125},{"startMs":6561.748833,"durationMs":16.670042},{"startMs":6578.418875,"durationMs":16.670166},{"startMs":6595.089041,"durationMs":16.670084},{"startMs":6611.759125,"durationMs":16.670166},{"startMs":6628.429291,"durationMs":16.670084},{"startMs":6645.099375,"durationMs":16.670166},{"startMs":6661.769541,"durationMs":16.670167},{"startMs":6678.439708,"durationMs":16.670042},{"startMs":6695.10975,"durationMs":16.67025},{"startMs":6711.78,"durationMs":16.670041},{"startMs":6728.450041,"durationMs":16.670042},{"startMs":6745.120083,"durationMs":16.670125},{"startMs":6761.790208,"durationMs":16.670125},{"startMs":6778.460333,"durationMs":16.670083},{"startMs":6795.130416,"durationMs":16.670125},{"startMs":6811.800541,"durationMs":16.670125},{"startMs":6828.470666,"durationMs":16.670125},{"startMs":6845.140791,"durationMs":16.670125},{"startMs":6861.810916,"durationMs":16.670125},{"startMs":6878.481041,"durationMs":16.670125},{"startMs":6895.151166,"durationMs":16.670084},{"startMs":6911.82125,"durationMs":16.670166},{"startMs":6928.491416,"durationMs":16.670084},{"startMs":6945.1615,"durationMs":16.670125},{"startMs":6961.831625,"durationMs":16.670083},{"startMs":6978.501708,"durationMs":16.670125},{"startMs":6995.171833,"durationMs":16.670125},{"startMs":7011.841958,"durationMs":16.670167},{"startMs":7028.512125,"durationMs":16.670083},{"startMs":7045.182208,"durationMs":16.670125},{"startMs":7061.852333,"durationMs":16.670125},{"startMs":7078.522458,"durationMs":16.670083},{"startMs":7095.192541,"durationMs":16.670167},{"startMs":7111.862708,"durationMs":16.670083},{"startMs":7128.532791,"durationMs":16.670125},{"startMs":7145.202916,"durationMs":16.670125},{"startMs":7161.873041,"durationMs":16.670167},{"startMs":7178.543208,"durationMs":16.670083},{"startMs":7195.213291,"durationMs":16.670125},{"startMs":7211.883416,"durationMs":16.670125},{"startMs":7228.553541,"durationMs":16.670084},{"startMs":7245.223625,"durationMs":16.670166},{"startMs":7261.893791,"durationMs":16.670084},{"startMs":7278.563875,"durationMs":16.670083},{"startMs":7295.233958,"durationMs":25.005167},{"startMs":7320.239125,"durationMs":8.335041},{"startMs":7328.574166,"durationMs":16.670125},{"startMs":7345.244291,"durationMs":16.670209},{"startMs":7361.9145,"durationMs":258.386791},{"startMs":7653.6415,"durationMs":8.335083},{"startMs":7661.976583,"durationMs":16.670125},{"startMs":7678.646708,"durationMs":16.670125},{"startMs":7695.316833,"durationMs":16.670083},{"startMs":7711.986916,"durationMs":16.670125},{"startMs":7728.657041,"durationMs":16.670125},{"startMs":7745.327166,"durationMs":16.670084},{"startMs":7761.99725,"durationMs":16.670166},{"startMs":7778.667416,"durationMs":16.670084},{"startMs":7795.3375,"durationMs":16.670125},{"startMs":7812.007625,"durationMs":16.670125},{"startMs":7828.67775,"durationMs":16.670125},{"startMs":7845.347875,"durationMs":16.670125},{"startMs":7862.018,"durationMs":16.670083},{"startMs":7878.688083,"durationMs":16.670125},{"startMs":7895.358208,"durationMs":58.345417},{"startMs":7953.703625,"durationMs":25.005208},{"startMs":7978.708833,"durationMs":16.670083},{"startMs":7995.378916,"durationMs":16.670125},{"startMs":8012.049041,"durationMs":25.005209},{"startMs":8037.05425,"durationMs":8.335},{"startMs":8045.38925,"durationMs":33.340291},{"startMs":8078.729541,"durationMs":16.670084},{"startMs":8095.399625,"durationMs":33.34025},{"startMs":8128.739875,"durationMs":33.34025},{"startMs":8162.080125,"durationMs":33.340208},{"startMs":8195.420333,"durationMs":33.340208},{"startMs":8228.760541,"durationMs":33.340292},{"startMs":8262.100833,"durationMs":75.0155},{"startMs":8337.116333,"durationMs":8.335083},{"startMs":8345.451416,"durationMs":650.134542},{"startMs":8995.585958,"durationMs":208.3765},{"startMs":9203.962458,"durationMs":16.670083},{"startMs":9220.632541,"durationMs":2017.084292},{"startMs":11237.716833,"durationMs":16.670125},{"startMs":11254.386958,"durationMs":8.335},{"startMs":11262.721958,"durationMs":16.670167},{"startMs":11279.392125,"durationMs":16.670083},{"startMs":11296.062208,"durationMs":16.670167},{"startMs":11312.732375,"durationMs":16.670083},{"startMs":11329.402458,"durationMs":16.670125},{"startMs":11346.072583,"durationMs":16.670125},{"startMs":11362.742708,"durationMs":16.670125},{"startMs":11379.412833,"durationMs":16.670083},{"startMs":11396.082916,"durationMs":16.670125},{"startMs":11412.753041,"durationMs":16.670167},{"startMs":11429.423208,"durationMs":16.670042},{"startMs":11446.09325,"durationMs":16.670125},{"startMs":11462.763375,"durationMs":16.670125},{"startMs":11479.4335,"durationMs":16.670125},{"startMs":11496.103625,"durationMs":16.670125},{"startMs":11512.77375,"durationMs":16.670125},{"startMs":11529.443875,"durationMs":16.670083},{"startMs":11546.113958,"durationMs":16.670125},{"startMs":11562.784083,"durationMs":16.670167},{"startMs":11579.45425,"durationMs":16.670083},{"startMs":11596.124333,"durationMs":16.670125},{"startMs":11612.794458,"durationMs":16.670125},{"startMs":11629.464583,"durationMs":16.670125},{"startMs":11646.134708,"durationMs":16.670125},{"startMs":11662.804833,"durationMs":66.680458},{"startMs":11729.485291,"durationMs":16.670084},{"startMs":11746.155375,"durationMs":16.670166},{"startMs":11762.825541,"durationMs":16.670084},{"startMs":11779.495625,"durationMs":16.670125},{"startMs":11796.16575,"durationMs":16.670125},{"startMs":11812.835875,"durationMs":16.670125},{"startMs":11829.506,"durationMs":16.670125},{"startMs":11846.176125,"durationMs":16.670083},{"startMs":11862.846208,"durationMs":16.670125},{"startMs":11879.516333,"durationMs":16.670083},{"startMs":11896.186416,"durationMs":16.670167},{"startMs":11912.856583,"durationMs":16.670125},{"startMs":11929.526708,"durationMs":16.670083},{"startMs":11946.196791,"durationMs":16.670125},{"startMs":11962.866916,"durationMs":16.670125},{"startMs":11979.537041,"durationMs":16.670125},{"startMs":11996.207166,"durationMs":16.670125},{"startMs":12012.877291,"durationMs":16.670125},{"startMs":12029.547416,"durationMs":16.670084},{"startMs":12046.2175,"durationMs":16.670166},{"startMs":12062.887666,"durationMs":16.670042},{"startMs":12079.557708,"durationMs":16.670167},{"startMs":12096.227875,"durationMs":16.670125},{"startMs":12112.898,"durationMs":16.670083},{"startMs":12129.568083,"durationMs":16.670167},{"startMs":12146.23825,"durationMs":16.670083},{"startMs":12162.908333,"durationMs":16.670125},{"startMs":12179.578458,"durationMs":16.670125},{"startMs":12196.248583,"durationMs":16.670125},{"startMs":12212.918708,"durationMs":16.670083},{"startMs":12229.588791,"durationMs":16.670125},{"startMs":12246.258916,"durationMs":16.670125},{"startMs":12262.929041,"durationMs":16.670084},{"startMs":12279.599125,"durationMs":16.670166},{"startMs":12296.269291,"durationMs":16.670125},{"startMs":12312.939416,"durationMs":16.670084},{"startMs":12329.6095,"durationMs":16.670125},{"startMs":12346.279625,"durationMs":16.670125},{"startMs":12362.94975,"durationMs":16.670125},{"startMs":12379.619875,"durationMs":16.670125},{"startMs":12396.29,"durationMs":16.670125},{"startMs":12412.960125,"durationMs":16.670125},{"startMs":12429.63025,"durationMs":16.670083},{"startMs":12446.300333,"durationMs":16.670125},{"startMs":12462.970458,"durationMs":200.041417},{"startMs":12663.011875,"durationMs":91.685666},{"startMs":12754.697541,"durationMs":16.670084},{"startMs":12771.367625,"durationMs":8.335083},{"startMs":12779.702708,"durationMs":16.670083},{"startMs":12796.372791,"durationMs":16.670125},{"startMs":12813.042916,"durationMs":16.670167},{"startMs":12829.713083,"durationMs":16.670125},{"startMs":12846.383208,"durationMs":16.670042},{"startMs":12863.05325,"durationMs":16.670166},{"startMs":12879.723416,"durationMs":16.670084},{"startMs":12896.3935,"durationMs":16.670166},{"startMs":12913.063666,"durationMs":16.670084},{"startMs":12929.73375,"durationMs":16.670083},{"startMs":12946.403833,"durationMs":16.670167},{"startMs":12963.074,"durationMs":16.670125},{"startMs":12979.744125,"durationMs":16.670083},{"startMs":12996.414208,"durationMs":16.670125},{"startMs":13013.084333,"durationMs":16.670125},{"startMs":13029.754458,"durationMs":16.670125},{"startMs":13046.424583,"durationMs":16.670167},{"startMs":13063.09475,"durationMs":16.670041},{"startMs":13079.764791,"durationMs":16.670167},{"startMs":13096.434958,"durationMs":16.670083},{"startMs":13113.105041,"durationMs":16.670125},{"startMs":13129.775166,"durationMs":16.670125},{"startMs":13146.445291,"durationMs":16.670084},{"startMs":13163.115375,"durationMs":16.670166},{"startMs":13179.785541,"durationMs":16.670125},{"startMs":13196.455666,"durationMs":16.670084},{"startMs":13213.12575,"durationMs":16.670125},{"startMs":13229.795875,"durationMs":16.670125},{"startMs":13246.466,"durationMs":16.670125},{"startMs":13263.136125,"durationMs":16.670083},{"startMs":13279.806208,"durationMs":16.670125},{"startMs":13296.476333,"durationMs":16.670125},{"startMs":13313.146458,"durationMs":16.670125},{"startMs":13329.816583,"durationMs":16.670125},{"startMs":13346.486708,"durationMs":16.670125},{"startMs":13363.156833,"durationMs":16.670083},{"startMs":13379.826916,"durationMs":16.670167},{"startMs":13396.497083,"durationMs":16.670083},{"startMs":13413.167166,"durationMs":16.670125},{"startMs":13429.837291,"durationMs":16.670125},{"startMs":13446.507416,"durationMs":16.670084},{"startMs":13463.1775,"durationMs":16.670166},{"startMs":13479.847666,"durationMs":16.670084},{"startMs":13496.51775,"durationMs":16.670125},{"startMs":13513.187875,"durationMs":16.670083},{"startMs":13529.857958,"durationMs":16.670167},{"startMs":13546.528125,"durationMs":16.670125},{"startMs":13563.19825,"durationMs":16.670083},{"startMs":13579.868333,"durationMs":16.670125},{"startMs":13596.538458,"durationMs":16.670083},{"startMs":13613.208541,"durationMs":16.670167},{"startMs":13629.878708,"durationMs":16.670125},{"startMs":13646.548833,"durationMs":16.670083},{"startMs":13663.218916,"durationMs":16.670125},{"startMs":13679.889041,"durationMs":16.670084},{"startMs":13696.559125,"durationMs":16.670166},{"startMs":13713.229291,"durationMs":16.670167},{"startMs":13729.899458,"durationMs":16.670083},{"startMs":13746.569541,"durationMs":16.670084},{"startMs":13763.239625,"durationMs":16.670125},{"startMs":13779.90975,"durationMs":16.670125},{"startMs":13796.579875,"durationMs":16.670125},{"startMs":13813.25,"durationMs":16.670083},{"startMs":13829.920083,"durationMs":16.670167},{"startMs":13846.59025,"durationMs":16.670083},{"startMs":13863.260333,"durationMs":16.670083},{"startMs":13879.930416,"durationMs":16.670209},{"startMs":13896.600625,"durationMs":16.670083},{"startMs":13913.270708,"durationMs":16.670125},{"startMs":13929.940833,"durationMs":16.670125},{"startMs":13946.610958,"durationMs":16.670125},{"startMs":13963.281083,"durationMs":16.670083},{"startMs":13979.951166,"durationMs":16.670125},{"startMs":13996.621291,"durationMs":16.670125},{"startMs":14013.291416,"durationMs":16.670084},{"startMs":14029.9615,"durationMs":16.670125},{"startMs":14046.631625,"durationMs":16.670166},{"startMs":14063.301791,"durationMs":16.670084},{"startMs":14079.971875,"durationMs":16.670083},{"startMs":14096.641958,"durationMs":16.670167},{"startMs":14113.312125,"durationMs":16.670125},{"startMs":14129.98225,"durationMs":25.005125},{"startMs":14154.987375,"durationMs":25.005208},{"startMs":14179.992583,"durationMs":16.670125},{"startMs":14196.662708,"durationMs":16.670125},{"startMs":14213.332833,"durationMs":16.670083},{"startMs":14230.002916,"durationMs":16.670167},{"startMs":14246.673083,"durationMs":16.670083},{"startMs":14263.343166,"durationMs":16.670125},{"startMs":14280.013291,"durationMs":16.670125},{"startMs":14296.683416,"durationMs":16.670084},{"startMs":14313.3535,"durationMs":16.670166},{"startMs":14330.023666,"durationMs":16.670125},{"startMs":14346.693791,"durationMs":16.670042},{"startMs":14363.363833,"durationMs":16.670167},{"startMs":14380.034,"durationMs":16.670125},{"startMs":14396.704125,"durationMs":16.670125},{"startMs":14413.37425,"durationMs":16.670083},{"startMs":14430.044333,"durationMs":16.670125},{"startMs":14446.714458,"durationMs":16.670125},{"startMs":14463.384583,"durationMs":16.670167},{"startMs":14480.05475,"durationMs":16.670041},{"startMs":14496.724791,"durationMs":16.670125},{"startMs":14513.394916,"durationMs":16.670125},{"startMs":14530.065041,"durationMs":16.670125},{"startMs":14546.735166,"durationMs":16.670167},{"startMs":14563.405333,"durationMs":16.670042},{"startMs":14580.075375,"durationMs":16.670166},{"startMs":14596.745541,"durationMs":16.670084},{"startMs":14613.415625,"durationMs":16.670208},{"startMs":14630.085833,"durationMs":16.670167},{"startMs":14646.756,"durationMs":16.67},{"startMs":14663.426,"durationMs":16.670125},{"startMs":14680.096125,"durationMs":16.670083},{"startMs":14696.766208,"durationMs":16.670167},{"startMs":14713.436375,"durationMs":16.670125},{"startMs":14730.1065,"durationMs":16.670083},{"startMs":14746.776583,"durationMs":16.670125},{"startMs":14763.446708,"durationMs":16.670167},{"startMs":14780.116875,"durationMs":16.670041},{"startMs":14796.786916,"durationMs":16.670167},{"startMs":14813.457083,"durationMs":16.670083},{"startMs":14830.127166,"durationMs":16.670125},{"startMs":14846.797291,"durationMs":16.670125},{"startMs":14863.467416,"durationMs":16.670084},{"startMs":14880.1375,"durationMs":16.670166},{"startMs":14896.807666,"durationMs":16.670125},{"startMs":14913.477791,"durationMs":16.670084},{"startMs":14930.147875,"durationMs":16.670125},{"startMs":14946.818,"durationMs":16.670125},{"startMs":14963.488125,"durationMs":16.670083},{"startMs":14980.158208,"durationMs":16.670167},{"startMs":14996.828375,"durationMs":16.670125},{"startMs":15013.4985,"durationMs":16.670083},{"startMs":15030.168583,"durationMs":16.670125},{"startMs":15046.838708,"durationMs":16.670083},{"startMs":15063.508791,"durationMs":16.670167},{"startMs":15080.178958,"durationMs":16.670083},{"startMs":15096.849041,"durationMs":16.670125},{"startMs":15113.519166,"durationMs":16.670125},{"startMs":15130.189291,"durationMs":16.670125},{"startMs":15146.859416,"durationMs":16.670084},{"startMs":15163.5295,"durationMs":16.670125},{"startMs":15180.199625,"durationMs":16.670166},{"startMs":15196.869791,"durationMs":16.670042},{"startMs":15213.539833,"durationMs":16.670167},{"startMs":15230.21,"durationMs":16.670125},{"startMs":15246.880125,"durationMs":16.670083},{"startMs":15263.550208,"durationMs":16.670125},{"startMs":15280.220333,"durationMs":16.670167},{"startMs":15296.8905,"durationMs":16.670083},{"startMs":15313.560583,"durationMs":16.670125},{"startMs":15330.230708,"durationMs":16.670125},{"startMs":15346.900833,"durationMs":16.670083},{"startMs":15363.570916,"durationMs":16.670167},{"startMs":15380.241083,"durationMs":16.670083},{"startMs":15396.911166,"durationMs":16.670125},{"startMs":15413.581291,"durationMs":16.670125},{"startMs":15430.251416,"durationMs":16.670125},{"startMs":15446.921541,"durationMs":16.670084},{"startMs":15463.591625,"durationMs":16.670166},{"startMs":15480.261791,"durationMs":16.670084},{"startMs":15496.931875,"durationMs":16.670083},{"startMs":15513.601958,"durationMs":16.670167},{"startMs":15530.272125,"durationMs":16.670125},{"startMs":15546.94225,"durationMs":16.670083},{"startMs":15563.612333,"durationMs":16.670125},{"startMs":15580.282458,"durationMs":16.670167},{"startMs":15596.952625,"durationMs":16.670041},{"startMs":15613.622666,"durationMs":16.67025},{"startMs":15630.292916,"durationMs":16.670042},{"startMs":15646.962958,"durationMs":33.340208},{"startMs":15680.303166,"durationMs":16.670125},{"startMs":15696.973291,"durationMs":16.670125},{"startMs":15713.643416,"durationMs":16.670125},{"startMs":15730.313541,"durationMs":16.670125},{"startMs":15746.983666,"durationMs":16.670084},{"startMs":15763.65375,"durationMs":16.670125},{"startMs":15780.323875,"durationMs":16.670125},{"startMs":15796.994,"durationMs":16.670125},{"startMs":15813.664125,"durationMs":16.670125},{"startMs":15830.33425,"durationMs":16.670083},{"startMs":15847.004333,"durationMs":16.670167},{"startMs":15863.6745,"durationMs":16.670083},{"startMs":15880.344583,"durationMs":16.670125},{"startMs":15897.014708,"durationMs":16.670125},{"startMs":15913.684833,"durationMs":16.670083},{"startMs":15930.354916,"durationMs":16.670125},{"startMs":15947.025041,"durationMs":16.670167},{"startMs":15963.695208,"durationMs":16.670083},{"startMs":15980.365291,"durationMs":16.670084},{"startMs":15997.035375,"durationMs":16.670166},{"startMs":16013.705541,"durationMs":16.670125},{"startMs":16030.375666,"durationMs":16.670084},{"startMs":16047.04575,"durationMs":16.670125},{"startMs":16063.715875,"durationMs":16.670125},{"startMs":16080.386,"durationMs":16.670125},{"startMs":16097.056125,"durationMs":16.670083},{"startMs":16113.726208,"durationMs":16.670125},{"startMs":16130.396333,"durationMs":16.670167},{"startMs":16147.0665,"durationMs":16.670083},{"startMs":16163.736583,"durationMs":16.670083},{"startMs":16180.406666,"durationMs":16.670167},{"startMs":16197.076833,"durationMs":16.670083},{"startMs":16213.746916,"durationMs":16.670125},{"startMs":16230.417041,"durationMs":16.670125},{"startMs":16247.087166,"durationMs":16.670125},{"startMs":16263.757291,"durationMs":16.670084},{"startMs":16280.427375,"durationMs":16.670166},{"startMs":16297.097541,"durationMs":16.670125},{"startMs":16313.767666,"durationMs":16.670084},{"startMs":16330.43775,"durationMs":16.670125},{"startMs":16347.107875,"durationMs":16.670125},{"startMs":16363.778,"durationMs":16.670125},{"startMs":16380.448125,"durationMs":16.670083},{"startMs":16397.118208,"durationMs":16.670167},{"startMs":16413.788375,"durationMs":16.670083},{"startMs":16430.458458,"durationMs":16.670083},{"startMs":16447.128541,"durationMs":16.670167},{"startMs":16463.798708,"durationMs":16.670167},{"startMs":16480.468875,"durationMs":16.670041},{"startMs":16497.138916,"durationMs":16.670125},{"startMs":16513.809041,"durationMs":16.670167},{"startMs":16530.479208,"durationMs":16.670042},{"startMs":16547.14925,"durationMs":16.670166},{"startMs":16563.819416,"durationMs":16.670125},{"startMs":16580.489541,"durationMs":16.670084},{"startMs":16597.159625,"durationMs":16.670125},{"startMs":16613.82975,"durationMs":16.670166},{"startMs":16630.499916,"durationMs":16.670084},{"startMs":16647.17,"durationMs":16.670166},{"startMs":16663.840166,"durationMs":16.670167},{"startMs":16680.510333,"durationMs":16.67}]},{"name":"pins-gesture","traceTemplate":"Metal System Trace","measurement":"app-associated displayed surface intervals, including idle periods; not whole-screen JSX presentation","rows":[{"startMs":11696.79125,"durationMs":8.335041},{"startMs":13522.169083,"durationMs":16.670167},{"startMs":13538.83925,"durationMs":16.670083},{"startMs":13555.509333,"durationMs":16.670125},{"startMs":13572.179458,"durationMs":16.670125},{"startMs":13588.849583,"durationMs":16.670125},{"startMs":13605.519708,"durationMs":16.670125},{"startMs":13622.189833,"durationMs":16.670083},{"startMs":13638.859916,"durationMs":16.670125},{"startMs":13655.530041,"durationMs":16.670125},{"startMs":13672.200166,"durationMs":16.670125},{"startMs":13688.870291,"durationMs":16.670084},{"startMs":13705.540375,"durationMs":16.670125},{"startMs":13722.2105,"durationMs":16.670125},{"startMs":13738.880625,"durationMs":16.670125},{"startMs":13755.55075,"durationMs":16.670125},{"startMs":13772.220875,"durationMs":16.670125},{"startMs":13788.891,"durationMs":16.670083},{"startMs":13805.561083,"durationMs":16.670125},{"startMs":13822.231208,"durationMs":16.670167},{"startMs":13838.901375,"durationMs":16.670083},{"startMs":13855.571458,"durationMs":16.670125},{"startMs":13872.241583,"durationMs":16.670125},{"startMs":13888.911708,"durationMs":16.670083},{"startMs":13905.581791,"durationMs":16.670125},{"startMs":13922.251916,"durationMs":16.670167},{"startMs":13938.922083,"durationMs":16.670083},{"startMs":13955.592166,"durationMs":16.670084},{"startMs":13972.26225,"durationMs":16.670166},{"startMs":13988.932416,"durationMs":16.670084},{"startMs":14005.6025,"durationMs":16.670125},{"startMs":14022.272625,"durationMs":16.670125},{"startMs":14038.94275,"durationMs":16.670125},{"startMs":14055.612875,"durationMs":16.670083},{"startMs":14072.282958,"durationMs":16.670125},{"startMs":14088.953083,"durationMs":16.670167},{"startMs":14105.62325,"durationMs":16.670083},{"startMs":14122.293333,"durationMs":16.670125},{"startMs":14138.963458,"durationMs":16.670125},{"startMs":14155.633583,"durationMs":16.670125},{"startMs":14172.303708,"durationMs":16.670083},{"startMs":14188.973791,"durationMs":16.670167},{"startMs":14205.643958,"durationMs":16.670083},{"startMs":14222.314041,"durationMs":16.670084},{"startMs":14238.984125,"durationMs":16.670166},{"startMs":14255.654291,"durationMs":16.670125},{"startMs":14272.324416,"durationMs":16.670084},{"startMs":14288.9945,"durationMs":16.670125},{"startMs":14305.664625,"durationMs":16.670166},{"startMs":14322.334791,"durationMs":16.670042},{"startMs":14339.004833,"durationMs":16.670167},{"startMs":14355.675,"durationMs":16.670125},{"startMs":14372.345125,"durationMs":16.670083},{"startMs":14389.015208,"durationMs":16.670125},{"startMs":14405.685333,"durationMs":16.670125},{"startMs":14422.355458,"durationMs":16.670125},{"startMs":14439.025583,"durationMs":16.670083},{"startMs":14455.695666,"durationMs":16.670125},{"startMs":14472.365791,"durationMs":16.670125},{"startMs":14489.035916,"durationMs":16.670125},{"startMs":14505.706041,"durationMs":16.670125},{"startMs":14522.376166,"durationMs":16.670125},{"startMs":14539.046291,"durationMs":16.670125},{"startMs":14555.716416,"durationMs":16.670084},{"startMs":14572.3865,"durationMs":16.670125},{"startMs":14589.056625,"durationMs":16.670125},{"startMs":14605.72675,"durationMs":16.670125},{"startMs":14622.396875,"durationMs":16.670083},{"startMs":14639.066958,"durationMs":16.670167},{"startMs":14655.737125,"durationMs":16.670125},{"startMs":14672.40725,"durationMs":16.670083},{"startMs":14689.077333,"durationMs":16.670125},{"startMs":14705.747458,"durationMs":16.670125},{"startMs":14722.417583,"durationMs":16.670125},{"startMs":14739.087708,"durationMs":16.670083},{"startMs":14755.757791,"durationMs":16.670209},{"startMs":14772.428,"durationMs":16.670041},{"startMs":14789.098041,"durationMs":16.670167},{"startMs":14805.768208,"durationMs":16.670042},{"startMs":14822.43825,"durationMs":16.670166},{"startMs":14839.108416,"durationMs":16.670125},{"startMs":14855.778541,"durationMs":16.670084},{"startMs":14872.448625,"durationMs":16.670125},{"startMs":14889.11875,"durationMs":16.670166},{"startMs":14905.788916,"durationMs":16.670084},{"startMs":14922.459,"durationMs":16.670125},{"startMs":14939.129125,"durationMs":16.670083},{"startMs":14955.799208,"durationMs":16.670125},{"startMs":14972.469333,"durationMs":16.670167},{"startMs":14989.1395,"durationMs":16.670041},{"startMs":15005.809541,"durationMs":16.670167},{"startMs":15022.479708,"durationMs":16.670125},{"startMs":15039.149833,"durationMs":16.670083},{"startMs":15055.819916,"durationMs":16.670167},{"startMs":15072.490083,"durationMs":16.670042},{"startMs":15089.160125,"durationMs":16.670166},{"startMs":15105.830291,"durationMs":16.670125},{"startMs":15122.500416,"durationMs":16.670084},{"startMs":15139.1705,"durationMs":16.670083},{"startMs":15155.840583,"durationMs":16.670167},{"startMs":15172.51075,"durationMs":16.670125},{"startMs":15189.180875,"durationMs":16.670125},{"startMs":15205.851,"durationMs":16.670083},{"startMs":15222.521083,"durationMs":16.670125},{"startMs":15239.191208,"durationMs":16.670125},{"startMs":15255.861333,"durationMs":16.670125},{"startMs":15272.531458,"durationMs":16.670125},{"startMs":15289.201583,"durationMs":16.670083},{"startMs":15305.871666,"durationMs":16.670167},{"startMs":15322.541833,"durationMs":16.670125},{"startMs":15339.211958,"durationMs":16.670125},{"startMs":15355.882083,"durationMs":16.670083},{"startMs":15372.552166,"durationMs":16.670084},{"startMs":15389.22225,"durationMs":16.670166},{"startMs":15405.892416,"durationMs":16.670084},{"startMs":15422.5625,"durationMs":16.670125},{"startMs":15439.232625,"durationMs":16.670125},{"startMs":15455.90275,"durationMs":16.670083},{"startMs":15472.572833,"durationMs":16.670125},{"startMs":15489.242958,"durationMs":16.670167},{"startMs":15505.913125,"durationMs":16.670125},{"startMs":15522.58325,"durationMs":16.670083},{"startMs":15539.253333,"durationMs":16.670167},{"startMs":15555.9235,"durationMs":16.670041},{"startMs":15572.593541,"durationMs":16.670167},{"startMs":15589.263708,"durationMs":16.670083},{"startMs":15605.933791,"durationMs":150.031084},{"startMs":15755.964875,"durationMs":25.005166}]}]}
diff --git a/experiments/custom-markers/summarize-rn-benchmark.py b/experiments/custom-markers/summarize-rn-benchmark.py
index 01e6308..c6c079c 100644
--- a/experiments/custom-markers/summarize-rn-benchmark.py
+++ b/experiments/custom-markers/summarize-rn-benchmark.py
@@ -39,6 +39,7 @@ def main():
parser.add_argument('log', type=Path)
parser.add_argument('--output', type=Path, required=True)
parser.add_argument('--suite', choices=['primary', 'control', 'selected'])
+ parser.add_argument('--workload-version', type=int)
args = parser.parse_args()
rows = []
for line in args.log.read_text(errors='replace').splitlines():
@@ -48,10 +49,14 @@ def main():
payload = line.split(marker, 1)[1].strip()
if payload.startswith('{'):
row = json.loads(payload)
+ if args.workload_version is not None and row.get('workloadVersion') != args.workload_version:
+ continue
if args.suite is None or row.get('suite', 'primary') == args.suite:
rows.append(row)
if not rows:
raise SystemExit('No complete marker benchmark rows found')
+ if any(row.get('workloadVersion', 1) >= 3 and not row.get('cameraRouteCompleted') for row in rows):
+ raise SystemExit('Camera route validation failed; do not summarize as completed motion')
summary = [summarize(row) for row in rows]
# Keep raw sample arrays compact so the review diff is not tens of thousands
# of lines of numbers; the human-readable summary remains expanded.
From 7bb077582733d9364380fa4e5709e9b67a9eb225 Mon Sep 17 00:00:00 2001
From: Piotr Graczyk
Date: Fri, 11 Sep 2026 14:47:58 +0200
Subject: [PATCH 08/10] feat: cluster live JSX markers with custom cluster
renderers
---
docs/adr/0004-custom-view-markers.md | 10 +-
docs/custom-marker-views.md | 54 ++++++--
docs/roadmap.md | 18 +--
.../MarkerViewBenchmark.tsx | 118 ++++++++++++++----
experiments/custom-markers/README.md | 6 +
.../custom-markers/summarize-rn-benchmark.py | 2 +-
.../nitromaps/GoogleMapProviderAdapter.kt | 12 ++
.../margelo/nitro/nitromaps/HybridMapView.kt | 15 +++
.../nitro/nitromaps/MapOverlayController.kt | 32 ++++-
.../nitro/nitromaps/MapProviderAdapter.kt | 2 +
.../MarkerDescriptor+DisplayedIdentity.kt | 1 +
.../nitromaps/MarkerViewRenderRegistry.kt | 77 ++++++++++++
.../nitromaps/MarkerDescriptorFixture.kt | 2 +
.../nitromaps/MarkerViewRenderRegistryTest.kt | 72 +++++++++++
package/ios/AppleMapProviderAdapter.swift | 9 ++
package/ios/GoogleMapOverlayController.swift | 24 +++-
package/ios/GoogleMapProviderAdapter.swift | 9 ++
package/ios/HybridMapView.swift | 10 ++
package/ios/MapOverlayController.swift | 27 +++-
package/ios/MapProviderAdapter.swift | 4 +
package/ios/MapViewState.swift | 4 +
.../ios/MarkerDescriptor+Fingerprint.swift | 1 +
package/ios/MarkerViewRenderRegistry.swift | 74 +++++++++++
package/src/components/MapView.tsx | 110 +++++++++++++++-
package/src/components/MarkerView.tsx | 34 +++--
package/src/index.ts | 1 +
package/src/native/specs/MapView.nitro.ts | 18 +++
package/src/native/specs/overlays.ts | 3 +
.../__tests__/collectMarkerViews.test.ts | 61 ++++++---
.../__tests__/markerViewRenderState.test.ts | 34 +++++
package/src/overlays/collectMarkerViews.ts | 52 +++++---
package/src/overlays/markerViewRenderState.ts | 28 +++++
package/src/types/index.ts | 1 +
package/src/types/map.ts | 15 ++-
34 files changed, 838 insertions(+), 102 deletions(-)
create mode 100644 package/android/src/main/java/com/margelo/nitro/nitromaps/MarkerViewRenderRegistry.kt
create mode 100644 package/android/src/test/java/com/margelo/nitro/nitromaps/MarkerViewRenderRegistryTest.kt
create mode 100644 package/ios/MarkerViewRenderRegistry.swift
create mode 100644 package/src/overlays/__tests__/markerViewRenderState.test.ts
create mode 100644 package/src/overlays/markerViewRenderState.ts
diff --git a/docs/adr/0004-custom-view-markers.md b/docs/adr/0004-custom-view-markers.md
index e7b9ff6..795b229 100644
--- a/docs/adr/0004-custom-view-markers.md
+++ b/docs/adr/0004-custom-view-markers.md
@@ -32,7 +32,7 @@ The native spec carries `coordinate` and optional `anchor`; standard Fabric layo
- iOS components explicitly forward Fabric mount/unmount into Swift containers. Hosts mount within the SDK surface so SDK map gestures remain ancestors; provider replacement preserves the existing Fabric hosts.
- Android components use ViewGroup managers with separate Fabric child indexing. Native gesture dispatch gives descendants a chance to claim a gesture before forwarding unclaimed map gestures to the SDK surface.
- The Nitrogen compatibility script validates generated patch targets and supports repeated execution without duplicate methods.
-- Fixed bounds define anchors, clipping, and touch regions. JSX order defines host order. Offscreen hosts are hidden; application-owned timers/worklet work are not automatically suspended.
+- Fixed bounds define anchors, clipping, and touch regions. JSX order defines host order. Offscreen hosts are hidden; the native display set unmounts clustered-away/filtered subtrees. External application timers still need cleanup.
See the [public contract](../custom-marker-views.md) for exact API and limitations.
@@ -45,10 +45,14 @@ See the [public contract](../custom-marker-views.md) for exact API and limitatio
## Consequences and acceptance
-Live hosts do not participate in SDK clustering, collision, depth occlusion, dragging, callouts, or ground-plane rotation. Their explicit dimensions and finite number are part of the workload. The package cannot remove the intrinsic rendering cost of arbitrary user JSX.
+Live descriptors participate in the shared native cluster engine. Their Fabric hosts do not participate in SDK collision, depth occlusion, dragging, callouts, or ground-plane rotation. Their explicit dimensions and finite number are part of the workload. The package cannot remove the intrinsic rendering cost of arbitrary user JSX.
The target is no material regression against the same provider/device baseline for an explicitly measured workload. Google iOS documents a 60 FPS maximum for its map renderer; a 120 Hz display callback does not override that limit. Provider acceptance must be separate.
-The first physical iPhone experiment retained near-120 Hz callback cadence for static hosts and the 10/50-marker animation cases, but 200 animated-layout markers regressed, as did transformed markers in the hottest pass. These callback results are not presented-frame evidence. The unrestricted 120 FPS condition is therefore not accepted. Follow-up controls compare identical JSX outside geographic hosts, and presentation/thermal traces remain required.
+The corrected v3 physical runs retained near-120 Hz callback cadence for static/transform hosts, while 200 animated-width hosts and the same JSX in ordinary overlays both fell to about 51–55 callbacks/s. Earlier duration-error runs are excluded from moving-camera acceptance. Actual surface traces did not establish a sustained 120 FPS map baseline in these device conditions. These are pre-clustering results; custom cluster expansion/collapse needs separate physical validation before accepting the performance condition.
[Experiments and reproduction](../../experiments/custom-markers/README.md) · [Physical device results](../research/custom-marker-device-results.md)
+
+## Cluster integration
+
+Live marker descriptors share the existing native cluster engine with SDK markers. A render registry separates SDK objects from the visible Fabric display set. `renderCluster` supplies a live `MarkerView` for cluster badges; otherwise existing native badges remain available. Clustered-away React subtrees unmount to remove their animation/layout work. Persistent marker state therefore belongs in application data. The performance gate includes cluster expansion/collapse and fully expanded markers, not just a zoomed-out clustered screenshot.
diff --git a/docs/custom-marker-views.md b/docs/custom-marker-views.md
index 7145942..cf2b5c4 100644
--- a/docs/custom-marker-views.md
+++ b/docs/custom-marker-views.md
@@ -24,18 +24,56 @@ Give every item a stable React key when rendering a list. Direct `MarkerView` ch
## Contract
-| Property | Behavior |
-| ----------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
-| `coordinate` | Required finite latitude −90…90 and longitude −180…180. Changing it repositions only that host. |
-| `width`, `height` | Required positive finite dimensions in points/dp. They define layout, clipping, hit-testing, and the anchor reference. |
-| `anchor` | Defaults to bottom-center (`{ x: 0.5, y: 1 }`). Components are finite fractions of the bounds; values outside 0…1 deliberately offset the host. |
-| `children` | Live React Native tree. Animate child views inside the fixed bounds; the native host reserves its own transform for geographic position. |
+| Property | Behavior |
+| ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `id` | Stable identifier for cluster membership and `onClusterPress`; defaults to the scoped React key path. Must be unique across descriptor and live markers. |
+| `clusterable` | Defaults to true when map clustering is enabled; false keeps this point separate. |
+| `coordinate` | Required finite latitude −90…90 and longitude −180…180. Changes reposition the host and update cluster membership when enabled. |
+| `width`, `height` | Required positive finite dimensions in points/dp. They define layout, clipping, hit-testing, and the anchor reference. |
+| `anchor` | Defaults to bottom-center (`{ x: 0.5, y: 1 }`). Components are finite fractions of the bounds; values outside 0…1 deliberately offset the host. |
+| `children` | Live React Native tree. Animate child views inside the fixed bounds; the native host reserves its own transform for geographic position. |
-Content is screen-aligned and clipped to its bounds and the map viewport. Marker views are composed above the SDK surface, including its annotations and controls. Use map padding/placement to avoid covering controls. Their order follows JSX order. They do not participate in SDK clustering, annotation collision, depth occlusion, dragging, callouts, or flat/ground-plane rotation. Use `Marker` descriptors for those SDK marker features and for large static datasets.
+Content is screen-aligned and clipped to its bounds and the map viewport. Marker views are composed above the SDK surface, including its annotations and controls. Use map padding/placement to avoid covering controls. Their order follows JSX order. Native clustering is shared with descriptor markers, as described below. Live hosts do not participate in SDK annotation collision, depth occlusion, dragging, callouts, or flat/ground-plane rotation. Use `Marker` descriptors for those SDK marker features and for large static datasets.
The same live-host mechanism is implemented for MapKit, Google iOS, and Google Android. The host stays in Fabric's hierarchy: the library does not steal/reparent RN children into SDK annotation views. On iOS, the generated component explicitly forwards Fabric mount/unmount into the Swift content container. On Android, ViewGroup managers keep the SDK surface out of Fabric child indices. The Nitrogen compatibility script validates its patch targets and fails if the generated shape changes.
-Provider camera callbacks update positions synchronously on the native UI thread. Idle maps do not run a projection timer. Empty maps have no marker projection loop. Layout/coordinate changes update affected hosts; provider/map lifecycle tears down the association. Hosts outside the viewport are hidden from drawing/hit-testing, but this does not cancel application-owned timers or worklet animations.
+Provider camera callbacks update positions synchronously on the native UI thread. Idle maps do not run a projection timer. Empty maps have no marker projection loop. Layout/coordinate changes update affected hosts; provider/map lifecycle tears down the association. Host projection hides offscreen content from drawing/hit-testing. The native clustering/large-dataset pipeline additionally controls which React subtrees are mounted. Unmounting releases their React/Reanimated subscriptions; application-owned external timers still require application cleanup.
+
+## Clusters with arbitrary JSX
+
+Enable `clusteringEnabled` to group nearby points. Marker count alone does not enable clustering. Descriptor markers and `MarkerView` children feed the same native engine and can belong to the same cluster. Without a renderer, clusters use the existing SDK badge. Supply `renderCluster` to replace those badges with live JSX:
+
+```tsx
+ (
+
+
+
+ {cluster.count} places
+
+
+ )}
+>
+ {places.map((place) => (
+
+
+
+ ))}
+
+```
+
+`renderCluster` must return a `MarkerView`. It receives the cluster `id`, `coordinate`, `count`, `markerIds`, and an async `onPress` helper that calls the map's `onClusterPress` and fits its camera to the cluster bounds. Use your own child `Pressable` for interaction; individual live marker presses are application-owned and do not automatically call `MapView.onMarkerPress`. Geographic position and React identity of the returned cluster host are assigned by the map.
+
+Clustering runs in the existing native pipeline, off the UI thread for the clustered path. React receives a changed display set, rather than per-frame projected coordinates. Camera movement still positions mounted hosts natively. Points inside a cluster are **unmounted**, so hundreds of hidden animated subtrees do not continue running. Keep selection, editable content, and other persistent point state in application data outside the marker; local child state restarts after cluster expansion. A retained cluster keeps its React key while its count/membership updates.
+
+The current native grid and badge-merging metrics remain in use; clustering does not measure arbitrary JSX bounds. Very large custom badges can overlap. Expansion/collapse is asynchronous, and coincident points may remain clustered. Benchmark the clustered view, zoom transitions, and fully expanded/sparse views: clustering cannot guarantee that every viewport has only a few rendered elements.
## Performance contract and validation status
diff --git a/docs/roadmap.md b/docs/roadmap.md
index cb8da3d..f5ed280 100644
--- a/docs/roadmap.md
+++ b/docs/roadmap.md
@@ -80,19 +80,21 @@ Delivered incrementally during Phases 3–5; polished for platform consistency i
## Open decisions
-| Decision | Options | Status |
-| --------------------- | ------------------------------------------ | -------------------------------------------------- |
-| Overlay architecture | Per-view native vs data-driven descriptors | Data-driven (Option B) |
-| Clustering library | Custom vs platform-native | Platform-native (MKClusterAnnotation / maps-utils) |
-| Provider architecture | In-place SDK switching vs adapter remount | Provider adapter + React remount |
-| Overlay animations | Reanimated core path vs native descriptors | Native descriptor animations; Reanimated optional |
-| Custom view markers | Snapshot-only vs live/hybrid native views | Native projected live Fabric hosts; validation pending (ADR 0004) |
-| Offline support | Tile caching strategy | Future consideration |
+| Decision | Options | Status |
+| --------------------- | ------------------------------------------ | ----------------------------------------------------------------- |
+| Overlay architecture | Per-view native vs data-driven descriptors | Data-driven (Option B) |
+| Clustering library | Custom vs platform-native | Platform-native (MKClusterAnnotation / maps-utils) |
+| Provider architecture | In-place SDK switching vs adapter remount | Provider adapter + React remount |
+| Overlay animations | Reanimated core path vs native descriptors | Native descriptor animations; Reanimated optional |
+| Custom view markers | Snapshot-only vs live/hybrid native views | Native projected live Fabric hosts; validation pending (ADR 0004) |
+| Offline support | Tile caching strategy | Future consideration |
## Custom view markers (ADR 0004)
- [x] Phase 0: apply `MarkerDescriptor` image, anchor, centerOffset, rotation, flat, and opacity on iOS Google
- [x] Implement separate `MarkerView` with live Fabric content and native camera projection
+- [x] Integrate live markers with native clustering and expose JSX cluster renderers
+- [ ] Validate custom cluster expansion/collapse and performance on physical devices
- [ ] Accept provider-specific performance and gesture behavior on physical devices; see [results](research/custom-marker-device-results.md)
## Future provider work
diff --git a/example/marker-view-benchmark/MarkerViewBenchmark.tsx b/example/marker-view-benchmark/MarkerViewBenchmark.tsx
index a12415d..2668a4d 100644
--- a/example/marker-view-benchmark/MarkerViewBenchmark.tsx
+++ b/example/marker-view-benchmark/MarkerViewBenchmark.tsx
@@ -34,7 +34,11 @@ type Mode =
| 'live-transform'
| 'live-layout'
| 'overlay-transform'
- | 'overlay-layout';
+ | 'overlay-layout'
+ | 'cluster-pins'
+ | 'cluster-static'
+ | 'cluster-transform'
+ | 'cluster-layout';
const MODES: Mode[] = [
'pins',
'live-static',
@@ -42,6 +46,10 @@ const MODES: Mode[] = [
'live-layout',
'overlay-transform',
'overlay-layout',
+ 'cluster-pins',
+ 'cluster-static',
+ 'cluster-transform',
+ 'cluster-layout',
];
const PRIMARY_MODES: Mode[] = [
'pins',
@@ -55,6 +63,12 @@ const CONTROL_MODES: Mode[] = [
'overlay-layout',
'live-layout',
];
+const CLUSTER_MODES: Mode[] = [
+ 'cluster-pins',
+ 'cluster-static',
+ 'cluster-transform',
+ 'cluster-layout',
+];
const sleep = (ms: number) =>
new Promise((resolve) => setTimeout(resolve, ms));
@@ -62,10 +76,14 @@ function Badge({
progress,
mode,
index,
+ clusterCount,
+ onClusterPress,
}: {
progress: SharedValue;
mode: Mode;
index: number;
+ clusterCount?: number;
+ onClusterPress?: () => Promise;
}) {
const [presses, setPresses] = useState(0);
const animation = useAnimatedStyle(() => {
@@ -77,13 +95,20 @@ function Badge({
});
return (
setPresses((value) => value + 1)}
+ accessibilityLabel={
+ clusterCount == null
+ ? `Marker ${index}, presses ${presses}`
+ : `Cluster ${clusterCount} points`
+ }
+ onPress={() => {
+ if (onClusterPress) void onClusterPress();
+ else setPresses((value) => value + 1);
+ }}
style={styles.badge}
>
- {presses > 0 ? `Tap ${presses}` : `$${100 + index}`}
+ {clusterCount ?? (presses > 0 ? `Tap ${presses}` : `$${100 + index}`)}
);
@@ -92,8 +117,8 @@ function Badge({
export default function MarkerViewBenchmark() {
const map = useRef(null);
const { width: screenWidth, height: screenHeight } = useWindowDimensions();
- const [mode, setMode] = useState('live-transform');
- const [count, setCount] = useState(10);
+ const [mode, setMode] = useState('cluster-transform');
+ const [count, setCount] = useState(200);
const [mapGeneration, setMapGeneration] = useState(0);
const [running, setRunning] = useState(false);
const [status, setStatus] = useState('Ready');
@@ -129,7 +154,9 @@ export default function MarkerViewBenchmark() {
latitude: CENTER.latitude + ((i % 10) - 4.5) * 0.0005,
longitude:
CENTER.longitude +
- (Math.floor(i / 10) - Math.floor(count / 20)) * 0.00065,
+ (Math.floor(i / 10) - Math.floor(count / 20)) *
+ 0.00065 *
+ Math.min(1, 200 / count),
},
enteringAnimation: false as const,
})),
@@ -137,11 +164,15 @@ export default function MarkerViewBenchmark() {
);
const children = useMemo(
() =>
- !mode.startsWith('live-')
+ !(
+ mode.startsWith('live-') ||
+ (mode.startsWith('cluster-') && mode !== 'cluster-pins')
+ )
? null
: markers.map((marker, index) => (
(
+
+
+
+ )
+ : undefined
+ }
onPress={() => setMapPresses((value) => value + 1)}
>
{children}
@@ -289,7 +354,7 @@ export default function MarkerViewBenchmark() {
{status}
- {mode}, {count} hosts, map presses {mapPresses}
+ {mode}, {count} points, map presses {mapPresses}
Run selected
+ {
+ void run('cluster');
+ }}
+ style={styles.button}
+ >
+ Clusters
+
diff --git a/experiments/custom-markers/README.md b/experiments/custom-markers/README.md
index 121e08d..0a88867 100644
--- a/experiments/custom-markers/README.md
+++ b/experiments/custom-markers/README.md
@@ -93,3 +93,9 @@ python3 experiments/custom-markers/summarize-rn-benchmark.py /tmp/marker-view-be
The raw file intentionally appends across runs and can survive app upgrades. Separate repeated runs before summarizing; the suite/version filters prevent mixing different workloads but do not identify individual runs. The summarizer rejects version-3 rows whose camera endpoint validation failed. Preserve raw samples, workload parameters, device/OS/build identity, and Instruments evidence before drawing a performance conclusion.
The initial `iphone-15-pro-run-1.json` and `iphone-15-pro-control.json` used an incorrect camera duration of 1200 seconds. They are retained as faulty-workload diagnostics, **not moving-camera acceptance evidence**. Harness version 3 uses 1.2 seconds and saves camera endpoints. The v2 control separates transform and width properties and compares ordinary fixed screen overlays against geographic hosts.
+
+### Cluster workload (v4)
+
+The **Clusters** button runs three alternating passes of descriptor clusters and static/transform/layout JSX clusters at 200 and 1000 input points. Each route moves through zoom 14 → 17 → 17 → 14 while panning/rotating, exercising expansion and regrouping. At 1000 points the longitude spacing is reduced to keep the dataset footprint comparable to 200 points. Native endpoint host counts describe the rendered display set; the input count no longer equals mounted JSX views.
+
+Use `--suite cluster --workload-version 4` when extracting these runs. The renderer's cluster Pressable calls the supplied `onPress` helper to expand bounds. Separately verify expansion, individual interaction, regrouping, removal and provider replacement outside recorded timing windows. v3 results predate this integration and remain the unclustered design checkpoint.
diff --git a/experiments/custom-markers/summarize-rn-benchmark.py b/experiments/custom-markers/summarize-rn-benchmark.py
index c6c079c..00a53b7 100644
--- a/experiments/custom-markers/summarize-rn-benchmark.py
+++ b/experiments/custom-markers/summarize-rn-benchmark.py
@@ -38,7 +38,7 @@ def main():
parser = argparse.ArgumentParser()
parser.add_argument('log', type=Path)
parser.add_argument('--output', type=Path, required=True)
- parser.add_argument('--suite', choices=['primary', 'control', 'selected'])
+ parser.add_argument('--suite', choices=['primary', 'control', 'selected', 'cluster'])
parser.add_argument('--workload-version', type=int)
args = parser.parse_args()
rows = []
diff --git a/package/android/src/main/java/com/margelo/nitro/nitromaps/GoogleMapProviderAdapter.kt b/package/android/src/main/java/com/margelo/nitro/nitromaps/GoogleMapProviderAdapter.kt
index 890158d..651a46a 100644
--- a/package/android/src/main/java/com/margelo/nitro/nitromaps/GoogleMapProviderAdapter.kt
+++ b/package/android/src/main/java/com/margelo/nitro/nitromaps/GoogleMapProviderAdapter.kt
@@ -196,6 +196,17 @@ class GoogleMapProviderAdapter(
}
}
+ override var customClusterViews: Boolean? = null
+ set(value) {
+ field = value
+ overlayController.setCustomClusterViews(value == true)
+ }
+ override var onMarkerViewRenderState: ((NativeMarkerViewRenderState) -> Unit)? = null
+ set(value) {
+ field = value
+ overlayController.onMarkerViewRenderState = value
+ }
+
private var _clusteringEnabled: Boolean? = null
override var clusteringEnabled: Boolean?
get() = _clusteringEnabled
@@ -761,6 +772,7 @@ class GoogleMapProviderAdapter(
onPolygonPress = null
onCirclePress = null
onClusterPress = null
+ onMarkerViewRenderState = null
overlayController.clear()
destroyMapView()
diff --git a/package/android/src/main/java/com/margelo/nitro/nitromaps/HybridMapView.kt b/package/android/src/main/java/com/margelo/nitro/nitromaps/HybridMapView.kt
index 55b095a..078e58a 100644
--- a/package/android/src/main/java/com/margelo/nitro/nitromaps/HybridMapView.kt
+++ b/package/android/src/main/java/com/margelo/nitro/nitromaps/HybridMapView.kt
@@ -157,6 +157,17 @@ class HybridMapView(private val context: ThemedReactContext) :
}
}
+ override var customClusterViews: Boolean? = null
+ set(value) {
+ field = value
+ adapter?.customClusterViews = value
+ }
+ override var onMarkerViewRenderState: ((NativeMarkerViewRenderState) -> Unit)? = null
+ set(value) {
+ field = value
+ adapter?.onMarkerViewRenderState = value
+ }
+
override var clusteringEnabled: Boolean?
get() = _clusteringEnabled
set(value) {
@@ -336,6 +347,8 @@ class HybridMapView(private val context: ThemedReactContext) :
_customMapStyle = null
_googleMapId = null
_clusteringEnabled = null
+ customClusterViews = null
+ onMarkerViewRenderState = null
_mapPadding = null
_markerEnteringAnimation = null
_clusterEnteringAnimation = null
@@ -423,6 +436,8 @@ class HybridMapView(private val context: ThemedReactContext) :
adapter.showsScale = _showsScale
adapter.customMapStyle = _customMapStyle
adapter.googleMapId = _googleMapId
+ adapter.customClusterViews = customClusterViews
+ adapter.onMarkerViewRenderState = onMarkerViewRenderState
adapter.clusteringEnabled = _clusteringEnabled
adapter.markerEnteringAnimation = _markerEnteringAnimation
adapter.clusterEnteringAnimation = _clusterEnteringAnimation
diff --git a/package/android/src/main/java/com/margelo/nitro/nitromaps/MapOverlayController.kt b/package/android/src/main/java/com/margelo/nitro/nitromaps/MapOverlayController.kt
index ed08196..fd06ed8 100644
--- a/package/android/src/main/java/com/margelo/nitro/nitromaps/MapOverlayController.kt
+++ b/package/android/src/main/java/com/margelo/nitro/nitromaps/MapOverlayController.kt
@@ -27,6 +27,24 @@ class MapOverlayController(
private val density: Float = context.resources.displayMetrics.density
private val markerIconFactory = MarkerIconFactory(context, density) { markers }
private val markerVersions = HashMap()
+ private val markerViews = MarkerViewRenderRegistry()
+ private val renderedVersions: Map get() = markerVersions + markerViews.versions
+ var onMarkerViewRenderState: ((NativeMarkerViewRenderState) -> Unit)?
+ get() = markerViews.onChange
+ set(value) { markerViews.onChange = value }
+
+ fun setCustomClusterViews(enabled: Boolean) {
+ if (markerViews.customClusters == enabled) return
+ markerViews.customClusters = enabled
+ markerEnterAnimators.values.toSet().forEach { it.cancel() }
+ markerEnterAnimators.clear()
+ markers.values.forEach { it.remove() }
+ markers.clear()
+ markerVersions.clear()
+ clusterByKey.clear()
+ markerViews.reset()
+ reapplyMarkers()
+ }
private val clusterByKey = HashMap()
private val polylines = LinkedHashMap()
private val polygons = LinkedHashMap()
@@ -88,6 +106,7 @@ class MapOverlayController(
}
fun clear() {
+ markerViews.reset()
markerEnterAnimators.values.toSet().forEach { it.cancel() }
cancelIdleRefresh()
cancelLiveRefresh()
@@ -158,7 +177,7 @@ class MapOverlayController(
val clustering = clusteringEnabled
val widthPx = viewWidthPx
val heightPx = viewHeightPx
- val displayedVersions = HashMap(markerVersions)
+ val displayedVersions = HashMap(renderedVersions)
refreshGeneration += 1
val generation = refreshGeneration
@@ -200,12 +219,13 @@ class MapOverlayController(
}
private fun applyDiff(
- diff: MarkerRenderDiff,
+ incoming: MarkerRenderDiff,
animateEntering: Boolean = true,
maxAnimatedMarkers: Int = MAX_ANIMATED_MARKERS_PER_DIFF,
) {
val map = googleMap ?: return
+ val diff = markerViews.consume(incoming)
for (key in diff.removedKeys) {
cancelEnteringAnimation(key)
markers.remove(key)?.remove()
@@ -377,6 +397,14 @@ class MapOverlayController(
}
private fun applyMarkersSync(descriptors: Array) {
+ if (descriptors.any { it.customViewId != null } || markerViews.versions.isNotEmpty()) {
+ cancelIdleRefresh()
+ cancelLiveRefresh()
+ refreshGeneration += 1
+ applyDiff(computeMarkerRenderDiff(descriptors.map { ClusterElement.Single(it) }, renderedVersions))
+ return
+ }
+
val map = googleMap ?: return
refreshGeneration += 1
cancelIdleRefresh()
diff --git a/package/android/src/main/java/com/margelo/nitro/nitromaps/MapProviderAdapter.kt b/package/android/src/main/java/com/margelo/nitro/nitromaps/MapProviderAdapter.kt
index 7735a39..a3c7c7b 100644
--- a/package/android/src/main/java/com/margelo/nitro/nitromaps/MapProviderAdapter.kt
+++ b/package/android/src/main/java/com/margelo/nitro/nitromaps/MapProviderAdapter.kt
@@ -22,6 +22,8 @@ interface MapProviderAdapter {
var customMapStyle: String?
var googleMapId: String?
var clusteringEnabled: Boolean?
+ var customClusterViews: Boolean?
+ var onMarkerViewRenderState: ((NativeMarkerViewRenderState) -> Unit)?
var mapPadding: EdgePadding?
var markerEnteringAnimation: OverlayEnteringAnimationDescriptor?
var clusterEnteringAnimation: OverlayEnteringAnimationDescriptor?
diff --git a/package/android/src/main/java/com/margelo/nitro/nitromaps/MarkerDescriptor+DisplayedIdentity.kt b/package/android/src/main/java/com/margelo/nitro/nitromaps/MarkerDescriptor+DisplayedIdentity.kt
index 84ca771..7c3b8f6 100644
--- a/package/android/src/main/java/com/margelo/nitro/nitromaps/MarkerDescriptor+DisplayedIdentity.kt
+++ b/package/android/src/main/java/com/margelo/nitro/nitromaps/MarkerDescriptor+DisplayedIdentity.kt
@@ -4,6 +4,7 @@ package com.margelo.nitro.nitromaps
internal fun MarkerDescriptor.displayedIdentityVersion(): Long =
renderSignature(
id,
+ customViewId,
coordinate.latitude,
coordinate.longitude,
title,
diff --git a/package/android/src/main/java/com/margelo/nitro/nitromaps/MarkerViewRenderRegistry.kt b/package/android/src/main/java/com/margelo/nitro/nitromaps/MarkerViewRenderRegistry.kt
new file mode 100644
index 0000000..7322a30
--- /dev/null
+++ b/package/android/src/main/java/com/margelo/nitro/nitromaps/MarkerViewRenderRegistry.kt
@@ -0,0 +1,77 @@
+package com.margelo.nitro.nitromaps
+
+/** Splits the native cluster display set between SDK objects and Fabric hosts. */
+internal class MarkerViewRenderRegistry {
+ var customClusters = false
+ var onChange: ((NativeMarkerViewRenderState) -> Unit)? = null
+ set(value) {
+ field = value
+ publish()
+ }
+ private val entries = HashMap()
+ val versions: Map get() = entries.mapValues { it.value.renderVersion }
+
+ fun reset() {
+ if (entries.isEmpty()) return
+ entries.clear()
+ publish()
+ }
+
+ fun consume(diff: MarkerRenderDiff): MarkerRenderDiff {
+ val removed = diff.removedKeys.toMutableSet()
+ val added = ArrayList()
+ val retained = ArrayList()
+ var changed = false
+ for (key in diff.removedKeys) {
+ if (entries.remove(key) != null) changed = true
+ }
+ fun consumeEntry(element: ClusterElement, isNew: Boolean) {
+ val live = when (element) {
+ is ClusterElement.Single -> element.descriptor.customViewId != null
+ is ClusterElement.Cluster -> customClusters
+ }
+ if (live) {
+ entries[element.diffKey] = element
+ removed.add(element.diffKey)
+ changed = true
+ } else if (entries.remove(element.diffKey) != null) {
+ added.add(element)
+ changed = true
+ } else if (isNew) {
+ added.add(element)
+ } else {
+ retained.add(element)
+ }
+ }
+ diff.added.forEach { consumeEntry(it, true) }
+ diff.retained.forEach { consumeEntry(it, false) }
+ if (changed) publish()
+ return MarkerRenderDiff(removed, added, retained)
+ }
+
+ private fun publish() {
+ val callback = onChange ?: return
+ val ids = ArrayList()
+ val clusters = ArrayList()
+ for (key in entries.keys.sorted()) {
+ when (val element = entries[key]) {
+ is ClusterElement.Single -> element.descriptor.customViewId?.let { ids.add(it) }
+ is ClusterElement.Cluster -> {
+ val sw = element.bounds.southwest
+ val ne = element.bounds.northeast
+ val longitudeSpan = (ne.longitude - sw.longitude + 360.0) % 360.0
+ val longitude = ((sw.longitude + longitudeSpan / 2 + 540.0) % 360.0) - 180.0
+ clusters.add(NativeMarkerViewCluster(
+ key,
+ Coordinate(element.position.latitude, element.position.longitude),
+ element.memberIds.sorted().toTypedArray(),
+ Region((sw.latitude + ne.latitude) / 2, longitude,
+ (ne.latitude - sw.latitude).coerceAtLeast(0.0001), longitudeSpan.coerceAtLeast(0.0001)),
+ ))
+ }
+ null -> Unit
+ }
+ }
+ callback(NativeMarkerViewRenderState(ids.toTypedArray(), clusters.toTypedArray()))
+ }
+}
diff --git a/package/android/src/test/java/com/margelo/nitro/nitromaps/MarkerDescriptorFixture.kt b/package/android/src/test/java/com/margelo/nitro/nitromaps/MarkerDescriptorFixture.kt
index 34d8aa7..166a74c 100644
--- a/package/android/src/test/java/com/margelo/nitro/nitromaps/MarkerDescriptorFixture.kt
+++ b/package/android/src/test/java/com/margelo/nitro/nitromaps/MarkerDescriptorFixture.kt
@@ -2,6 +2,7 @@ package com.margelo.nitro.nitromaps
internal fun marker(
id: String = "marker-1",
+ customViewId: String? = null,
image: MarkerImage? = null,
markerColor: String? = null,
anchor: MarkerAnchor? = null,
@@ -14,6 +15,7 @@ internal fun marker(
): MarkerDescriptor {
return MarkerDescriptor(
id,
+ customViewId,
Coordinate(37.77, -122.41),
"Title",
"Subtitle",
diff --git a/package/android/src/test/java/com/margelo/nitro/nitromaps/MarkerViewRenderRegistryTest.kt b/package/android/src/test/java/com/margelo/nitro/nitromaps/MarkerViewRenderRegistryTest.kt
new file mode 100644
index 0000000..844cbf3
--- /dev/null
+++ b/package/android/src/test/java/com/margelo/nitro/nitromaps/MarkerViewRenderRegistryTest.kt
@@ -0,0 +1,72 @@
+package com.margelo.nitro.nitromaps
+
+import com.google.android.gms.maps.model.LatLng
+import com.google.android.gms.maps.model.LatLngBounds
+import org.junit.Assert.*
+import org.junit.Test
+
+class MarkerViewRenderRegistryTest {
+ private fun cluster() = ClusterElement.Cluster(
+ "grid", LatLng(52.0, 21.0), 2, listOf("b", "a"),
+ LatLngBounds(LatLng(51.99, 20.99), LatLng(52.01, 21.01)),
+ )
+
+ @Test fun `mixed native and Fabric markers share the display set`() {
+ val registry = MarkerViewRenderRegistry()
+ var state: NativeMarkerViewRenderState? = null
+ registry.onChange = { state = it }
+ val live = ClusterElement.Single(marker(id = "a", customViewId = "view-a"))
+ val native = ClusterElement.Single(marker(id = "b"))
+ val sdk = registry.consume(computeMarkerRenderDiff(listOf(live, native), emptyMap()))
+ assertEquals(listOf(native), sdk.added)
+ assertEquals(listOf("view-a"), state!!.markerViewIds.toList())
+ assertEquals(mapOf(live.diffKey to live.renderVersion), registry.versions)
+ }
+
+ @Test fun `collapsing and expanding a cluster replaces the mounted JSX set`() {
+ val registry = MarkerViewRenderRegistry().apply { customClusters = true }
+ var state: NativeMarkerViewRenderState? = null
+ registry.onChange = { state = it }
+ val live = ClusterElement.Single(marker(id = "a", customViewId = "view-a"))
+ registry.consume(computeMarkerRenderDiff(listOf(live), emptyMap()))
+ val collapsed = registry.consume(computeMarkerRenderDiff(listOf(cluster()), registry.versions))
+ assertTrue(collapsed.added.isEmpty())
+ assertTrue(state!!.markerViewIds.isEmpty())
+ assertEquals(listOf("a", "b"), state!!.clusters.single().markerIds.toList())
+ registry.consume(computeMarkerRenderDiff(listOf(live), registry.versions))
+ assertTrue(state!!.clusters.isEmpty())
+ assertEquals(listOf("view-a"), state!!.markerViewIds.toList())
+ }
+
+ @Test fun `default cluster badges stay in the SDK`() {
+ val registry = MarkerViewRenderRegistry()
+ assertEquals(listOf(cluster()), registry.consume(
+ computeMarkerRenderDiff(listOf(cluster()), emptyMap()),
+ ).added)
+ assertTrue(registry.versions.isEmpty())
+ }
+
+ @Test fun `unchanged display membership does not emit camera-frame JS work`() {
+ val registry = MarkerViewRenderRegistry()
+ var updates = 0
+ registry.onChange = { updates++ }
+ val live = ClusterElement.Single(marker(customViewId = "view-a"))
+ registry.consume(computeMarkerRenderDiff(listOf(live), emptyMap()))
+ val before = updates
+ repeat(120) { registry.consume(computeMarkerRenderDiff(listOf(live), registry.versions)) }
+ assertEquals(before, updates)
+ registry.reset()
+ assertTrue(registry.versions.isEmpty())
+ assertEquals(before + 1, updates)
+ }
+
+ @Test fun `switching a retained marker back to SDK creates its native object`() {
+ val registry = MarkerViewRenderRegistry()
+ val live = ClusterElement.Single(marker(customViewId = "view-a"))
+ registry.consume(computeMarkerRenderDiff(listOf(live), emptyMap()))
+ val native = ClusterElement.Single(marker())
+ val sdk = registry.consume(computeMarkerRenderDiff(listOf(native), registry.versions))
+ assertEquals(listOf(native), sdk.added)
+ assertTrue(registry.versions.isEmpty())
+ }
+}
diff --git a/package/ios/AppleMapProviderAdapter.swift b/package/ios/AppleMapProviderAdapter.swift
index 2a6bb31..80894ce 100644
--- a/package/ios/AppleMapProviderAdapter.swift
+++ b/package/ios/AppleMapProviderAdapter.swift
@@ -125,6 +125,13 @@ final class AppleMapProviderAdapter: MapProviderAdapter {
var googleMapId: String?
+ var customClusterViews: Bool? {
+ didSet { overlayController.setCustomClusterViews(customClusterViews == true) }
+ }
+ var onMarkerViewRenderState: ((NativeMarkerViewRenderState) -> Void)? {
+ didSet { overlayController.onMarkerViewRenderState = onMarkerViewRenderState }
+ }
+
var clusteringEnabled: Bool? {
didSet {
overlayController.setClusteringEnabled(clusteringEnabled == true)
@@ -425,6 +432,7 @@ final class AppleMapProviderAdapter: MapProviderAdapter {
onPolygonPress = nil
onCirclePress = nil
onClusterPress = nil
+ onMarkerViewRenderState = nil
markers = nil
polylines = nil
polygons = nil
@@ -444,6 +452,7 @@ final class AppleMapProviderAdapter: MapProviderAdapter {
customMapStyle = nil
googleMapId = nil
clusteringEnabled = nil
+ customClusterViews = nil
mapPadding = nil
markerEnteringAnimation = nil
clusterEnteringAnimation = nil
diff --git a/package/ios/GoogleMapOverlayController.swift b/package/ios/GoogleMapOverlayController.swift
index 6636451..4e680f7 100644
--- a/package/ios/GoogleMapOverlayController.swift
+++ b/package/ios/GoogleMapOverlayController.swift
@@ -35,6 +35,20 @@ final class GoogleMapOverlayController {
private var polygons: [String: GMSPolygon] = [:]
private var circles: [String: GMSCircle] = [:]
private let markerPipeline: MarkerRenderPipeline
+ private let markerViews = MarkerViewRenderRegistry()
+ private var renderedVersions: [String: Int] {
+ markerVersions.merging(markerViews.versions) { _, live in live }
+ }
+ var onMarkerViewRenderState: ((NativeMarkerViewRenderState) -> Void)? {
+ get { markerViews.onChange }
+ set { markerViews.onChange = newValue }
+ }
+ func setCustomClusterViews(_ enabled: Bool) {
+ guard markerViews.customClusters != enabled else { return }
+ markerViews.customClusters = enabled
+ clearMarkers()
+ reapplyMarkers()
+ }
private let visualApplier = GoogleMarkerVisualApplier()
private var clusterIconCache: [String: UIImage] = [:]
@@ -86,7 +100,7 @@ final class GoogleMapOverlayController {
}
markerPipeline.refreshNow(
- displayedVersions: markerVersions,
+ displayedVersions: renderedVersions,
region: mapView.currentNitroRegion().toMKCoordinateRegion(),
viewSize: mapView.bounds.size,
apply: { [weak self] diff in
@@ -109,7 +123,7 @@ final class GoogleMapOverlayController {
}
markerPipeline.scheduleViewportRefresh(
- displayedVersions: markerVersions,
+ displayedVersions: renderedVersions,
region: mapView.currentNitroRegion().toMKCoordinateRegion(),
viewSize: mapView.bounds.size,
immediate: immediate,
@@ -198,7 +212,7 @@ final class GoogleMapOverlayController {
}
markerPipeline.reapply(
- displayedVersions: markerVersions,
+ displayedVersions: renderedVersions,
region: mapView.currentNitroRegion().toMKCoordinateRegion(),
viewSize: mapView.bounds.size,
apply: { [weak self] diff in
@@ -208,7 +222,7 @@ final class GoogleMapOverlayController {
}
private func applyDiff(
- _ diff: MarkerRenderDiff,
+ _ incoming: MarkerRenderDiff,
animateEntering: Bool = true,
animationBudget: Int = maximumAnimatedMarkersPerDiff
) {
@@ -216,6 +230,7 @@ final class GoogleMapOverlayController {
return
}
+ let diff = markerViews.consume(incoming)
for key in diff.removedKeys {
markers.removeValue(forKey: key)?.map = nil
markerVersions.removeValue(forKey: key)
@@ -365,6 +380,7 @@ final class GoogleMapOverlayController {
}
private func clearMarkers() {
+ markerViews.reset()
for marker in markers.values {
marker.map = nil
}
diff --git a/package/ios/GoogleMapProviderAdapter.swift b/package/ios/GoogleMapProviderAdapter.swift
index 1ef24d7..04fb779 100644
--- a/package/ios/GoogleMapProviderAdapter.swift
+++ b/package/ios/GoogleMapProviderAdapter.swift
@@ -145,6 +145,13 @@ final class GoogleMapProviderAdapter: NSObject, MapProviderAdapter {
set { _googleMapId = newValue }
}
+ var customClusterViews: Bool? {
+ didSet { overlayController.setCustomClusterViews(customClusterViews == true) }
+ }
+ var onMarkerViewRenderState: ((NativeMarkerViewRenderState) -> Void)? {
+ didSet { overlayController.onMarkerViewRenderState = onMarkerViewRenderState }
+ }
+
var clusteringEnabled: Bool? {
didSet {
overlayController.setClusteringEnabled(clusteringEnabled == true)
@@ -284,6 +291,7 @@ final class GoogleMapProviderAdapter: NSObject, MapProviderAdapter {
onPolygonPress = nil
onCirclePress = nil
onClusterPress = nil
+ onMarkerViewRenderState = nil
markers = nil
polylines = nil
polygons = nil
@@ -302,6 +310,7 @@ final class GoogleMapProviderAdapter: NSObject, MapProviderAdapter {
customMapStyle = nil
googleMapId = nil
clusteringEnabled = nil
+ customClusterViews = nil
mapPadding = nil
markerEnteringAnimation = nil
clusterEnteringAnimation = nil
diff --git a/package/ios/HybridMapView.swift b/package/ios/HybridMapView.swift
index a923f03..7114757 100644
--- a/package/ios/HybridMapView.swift
+++ b/package/ios/HybridMapView.swift
@@ -132,6 +132,16 @@ final class HybridMapView: HybridMapViewSpec {
}
}
+ var customClusterViews: Bool? {
+ get { getBacked(\.customClusterViews) }
+ set { setBackedOnMain(newValue, store: \.customClusterViews) { $0.customClusterViews = $1 } }
+ }
+
+ var onMarkerViewRenderState: ((NativeMarkerViewRenderState) -> Void)? {
+ get { getBacked(\.onMarkerViewRenderState) }
+ set { setBackedOnMain(newValue, store: \.onMarkerViewRenderState) { $0.onMarkerViewRenderState = $1 } }
+ }
+
var clusteringEnabled: Bool? {
get { getBacked(\.clusteringEnabled) }
set {
diff --git a/package/ios/MapOverlayController.swift b/package/ios/MapOverlayController.swift
index 73a6378..e5ca45e 100644
--- a/package/ios/MapOverlayController.swift
+++ b/package/ios/MapOverlayController.swift
@@ -23,6 +23,23 @@ final class MapOverlayController {
private var displayedAnnotations: [String: MKAnnotation] = [:]
private var displayedAnnotationVersions: [String: Int] = [:]
private let markerPipeline = MarkerRenderPipeline()
+ private let markerViews = MarkerViewRenderRegistry()
+ private var renderedVersions: [String: Int] {
+ displayedAnnotationVersions.merging(markerViews.versions) { _, live in live }
+ }
+ var onMarkerViewRenderState: ((NativeMarkerViewRenderState) -> Void)? {
+ get { markerViews.onChange }
+ set { markerViews.onChange = newValue }
+ }
+ func setCustomClusterViews(_ enabled: Bool) {
+ guard markerViews.customClusters != enabled else { return }
+ markerViews.customClusters = enabled
+ mapView?.removeAnnotations(Array(displayedAnnotations.values))
+ displayedAnnotations.removeAll()
+ displayedAnnotationVersions.removeAll()
+ markerViews.reset()
+ reapplyMarkers()
+ }
private var shapeOverlays: [String: MKOverlay] = [:]
private var overlayStyles: [ObjectIdentifier: OverlayStyle] = [:]
@@ -46,6 +63,7 @@ final class MapOverlayController {
func reset() {
markerPipeline.reset()
+ markerViews.reset()
guard let mapView else {
return
}
@@ -71,7 +89,7 @@ final class MapOverlayController {
}
markerPipeline.reapply(
- displayedVersions: displayedAnnotationVersions,
+ displayedVersions: renderedVersions,
region: mapView.region,
viewSize: mapView.bounds.size,
apply: { [weak self] diff in
@@ -86,7 +104,7 @@ final class MapOverlayController {
return
}
markerPipeline.refreshNow(
- displayedVersions: displayedAnnotationVersions,
+ displayedVersions: renderedVersions,
region: mapView.region,
viewSize: mapView.bounds.size,
apply: { [weak self] diff in
@@ -102,7 +120,7 @@ final class MapOverlayController {
}
markerPipeline.scheduleViewportRefresh(
- displayedVersions: displayedAnnotationVersions,
+ displayedVersions: renderedVersions,
region: mapView.region,
viewSize: mapView.bounds.size,
immediate: immediate,
@@ -112,11 +130,12 @@ final class MapOverlayController {
)
}
- private func applyDiff(_ diff: MarkerRenderDiff) {
+ private func applyDiff(_ incoming: MarkerRenderDiff) {
guard let mapView else {
return
}
+ let diff = markerViews.consume(incoming)
if !diff.removedKeys.isEmpty {
let removed = diff.removedKeys.compactMap { key in
displayedAnnotationVersions.removeValue(forKey: key)
diff --git a/package/ios/MapProviderAdapter.swift b/package/ios/MapProviderAdapter.swift
index c29d25a..5b83e7a 100644
--- a/package/ios/MapProviderAdapter.swift
+++ b/package/ios/MapProviderAdapter.swift
@@ -20,6 +20,8 @@ protocol MapProviderAdapter: AnyObject {
var customMapStyle: String? { get set }
var googleMapId: String? { get set }
var clusteringEnabled: Bool? { get set }
+ var customClusterViews: Bool? { get set }
+ var onMarkerViewRenderState: ((NativeMarkerViewRenderState) -> Void)? { get set }
var mapPadding: EdgePadding? { get set }
var markerEnteringAnimation: OverlayEnteringAnimationDescriptor? { get set }
var clusterEnteringAnimation: OverlayEnteringAnimationDescriptor? { get set }
@@ -71,6 +73,8 @@ final class UnavailableMapProviderAdapter: MapProviderAdapter {
var customMapStyle: String?
var googleMapId: String?
var clusteringEnabled: Bool?
+ var customClusterViews: Bool?
+ var onMarkerViewRenderState: ((NativeMarkerViewRenderState) -> Void)?
var mapPadding: EdgePadding?
var markerEnteringAnimation: OverlayEnteringAnimationDescriptor?
var clusterEnteringAnimation: OverlayEnteringAnimationDescriptor?
diff --git a/package/ios/MapViewState.swift b/package/ios/MapViewState.swift
index 0793c9f..4f8072c 100644
--- a/package/ios/MapViewState.swift
+++ b/package/ios/MapViewState.swift
@@ -15,6 +15,8 @@ struct MapViewState {
var showsScale: Bool?
var customMapStyle: String?
var googleMapId: String?
+ var customClusterViews: Bool?
+ var onMarkerViewRenderState: ((NativeMarkerViewRenderState) -> Void)?
var clusteringEnabled: Bool?
var mapPadding: EdgePadding?
var markerEnteringAnimation: OverlayEnteringAnimationDescriptor?
@@ -50,6 +52,8 @@ struct MapViewState {
adapter.showsScale = showsScale
adapter.customMapStyle = customMapStyle
adapter.googleMapId = googleMapId
+ adapter.customClusterViews = customClusterViews
+ adapter.onMarkerViewRenderState = onMarkerViewRenderState
adapter.clusteringEnabled = clusteringEnabled
adapter.mapPadding = mapPadding
adapter.markerEnteringAnimation = markerEnteringAnimation
diff --git a/package/ios/MarkerDescriptor+Fingerprint.swift b/package/ios/MarkerDescriptor+Fingerprint.swift
index 26ebe04..6cdbe39 100644
--- a/package/ios/MarkerDescriptor+Fingerprint.swift
+++ b/package/ios/MarkerDescriptor+Fingerprint.swift
@@ -2,6 +2,7 @@ extension MarkerDescriptor {
/// Combines optionals as-is so `nil` stays distinguishable from a present value.
private func hashDisplayedIdentity(into hasher: inout Hasher) {
hasher.combine(id)
+ hasher.combine(customViewId)
hasher.combine(coordinate.latitude)
hasher.combine(coordinate.longitude)
hasher.combine(title)
diff --git a/package/ios/MarkerViewRenderRegistry.swift b/package/ios/MarkerViewRenderRegistry.swift
new file mode 100644
index 0000000..650920a
--- /dev/null
+++ b/package/ios/MarkerViewRenderRegistry.swift
@@ -0,0 +1,74 @@
+import MapKit
+
+/// Splits one native clustering result between SDK objects and live Fabric hosts.
+final class MarkerViewRenderRegistry {
+ var customClusters = false
+ var onChange: ((NativeMarkerViewRenderState) -> Void)? {
+ didSet { publish() }
+ }
+ private var entries: [String: MarkerRenderEntry] = [:]
+
+ var versions: [String: Int] { entries.mapValues { $0.version } }
+
+ func reset() {
+ guard !entries.isEmpty else { return }
+ entries.removeAll()
+ publish()
+ }
+
+ func consume(_ diff: MarkerRenderDiff) -> MarkerRenderDiff {
+ var removed = diff.removedKeys
+ var added: [MarkerRenderEntry] = []
+ var retained: [MarkerRenderEntry] = []
+ var changed = false
+ for key in diff.removedKeys {
+ if entries.removeValue(forKey: key) != nil { changed = true }
+ }
+ func consumeEntry(_ entry: MarkerRenderEntry, isNew: Bool) {
+ let live: Bool
+ switch entry.element {
+ case let .single(descriptor): live = descriptor.customViewId != nil
+ case .cluster: live = customClusters
+ }
+ if live {
+ entries[entry.key] = entry
+ removed.insert(entry.key)
+ changed = true
+ } else if entries.removeValue(forKey: entry.key) != nil {
+ added.append(entry)
+ changed = true
+ } else if isNew {
+ added.append(entry)
+ } else {
+ retained.append(entry)
+ }
+ }
+ for entry in diff.added { consumeEntry(entry, isNew: true) }
+ for entry in diff.retained { consumeEntry(entry, isNew: false) }
+ if changed { publish() }
+ return MarkerRenderDiff(removedKeys: removed, added: added, retained: retained)
+ }
+
+ private func publish() {
+ guard let onChange else { return }
+ var ids: [String] = []
+ var clusters: [NativeMarkerViewCluster] = []
+ for key in entries.keys.sorted() {
+ guard let entry = entries[key] else { continue }
+ switch entry.element {
+ case let .single(descriptor):
+ if let id = descriptor.customViewId { ids.append(id) }
+ case let .cluster(_, coordinate, _, memberIds, region):
+ let longitude = ((coordinate.longitude + 180).truncatingRemainder(dividingBy: 360) + 360)
+ .truncatingRemainder(dividingBy: 360) - 180
+ clusters.append(NativeMarkerViewCluster(
+ id: key,
+ coordinate: Coordinate(latitude: coordinate.latitude, longitude: longitude),
+ markerIds: memberIds.sorted(),
+ region: region.toRegion()
+ ))
+ }
+ }
+ onChange(NativeMarkerViewRenderState(markerViewIds: ids, clusters: clusters))
+ }
+}
diff --git a/package/src/components/MapView.tsx b/package/src/components/MapView.tsx
index 92cbae7..caaacf5 100644
--- a/package/src/components/MapView.tsx
+++ b/package/src/components/MapView.tsx
@@ -1,6 +1,11 @@
+import { MarkerView } from './MarkerView';
import { MapChildrenContext } from './MapChildrenContext';
-import { collectMarkerViews } from '../overlays/collectMarkerViews';
+import { collectMarkerViewEntries } from '../overlays/collectMarkerViews';
+import { markerViewRenderStatesEqual } from '../overlays/markerViewRenderState';
import {
+ cloneElement,
+ isValidElement,
+ useState,
useCallback,
useImperativeHandle,
useMemo,
@@ -14,6 +19,7 @@ import { NativeMapView } from '../native/MapViewNative';
import type {
MapView as NativeMapViewHybrid,
NativePoiPressEvent,
+ NativeMarkerViewRenderState,
} from '../native/specs/MapView.nitro';
import { OverlayType, overlayCallbackKey } from '../overlays/overlayType';
import { normalizeMarkerDescriptors } from '../overlays/normalizeMarkerDescriptors';
@@ -41,6 +47,7 @@ export function MapView({
ref,
style,
children,
+ renderCluster,
provider,
googleMapId,
region,
@@ -77,7 +84,24 @@ export function MapView({
onCirclePress: onCirclePressProp,
}: MapViewProps & { ref?: Ref }) {
const resolvedProvider = resolveMapProvider(provider);
- const markerViews = useMemo(() => collectMarkerViews(children), [children]);
+ const markerViewEntries = useMemo(
+ () => collectMarkerViewEntries(children),
+ [children],
+ );
+ const [markerViewState, setMarkerViewState] =
+ useState(null);
+ const handleMarkerViewRenderState = useCallback(
+ (state: NativeMarkerViewRenderState) => {
+ setMarkerViewState((previous) =>
+ markerViewRenderStatesEqual(previous, state) ? previous : state,
+ );
+ },
+ [],
+ );
+ const markerViewRenderCallback = useMemo(
+ () => callback(handleMarkerViewRenderState),
+ [handleMarkerViewRenderState],
+ );
const hybridRef = useRef(null);
const {
markers: collectedMarkers,
@@ -99,6 +123,77 @@ export function MapView({
const markers =
normalizedBulkMarkers != null ? normalizedBulkMarkers : collectedMarkers;
+ const nativeMarkers = useMemo(() => {
+ if (markerViewEntries.length === 0) return markers;
+ const ids = new Set(markers.map((marker) => marker.id));
+ const liveDescriptors = markerViewEntries.map(
+ ({ markerId, viewId, element }) => {
+ if (ids.has(markerId))
+ throw new Error(`Duplicate map marker id: ${markerId}`);
+ ids.add(markerId);
+ return {
+ id: markerId,
+ customViewId: viewId,
+ coordinate: element.props.coordinate,
+ clusterable: element.props.clusterable,
+ };
+ },
+ );
+ return [...markers, ...liveDescriptors];
+ }, [markers, markerViewEntries]);
+ const visibleMarkerViews = useMemo(() => {
+ const ids = new Set(markerViewState?.markerViewIds);
+ return markerViewEntries
+ .filter((entry) => ids.has(entry.viewId))
+ .map((entry) => entry.element);
+ }, [markerViewState, markerViewEntries]);
+ const clusterViews = useMemo(() => {
+ if (!renderCluster || clusteringEnabled !== true) return [];
+ return (markerViewState?.clusters ?? []).map((cluster) => {
+ const element = renderCluster({
+ id: cluster.id,
+ coordinate: cluster.coordinate,
+ markerIds: cluster.markerIds,
+ count: cluster.markerIds.length,
+ onPress: () => {
+ onClusterPress?.(cluster.markerIds, cluster.coordinate);
+ const bounds = cluster.region;
+ const wrap = (longitude: number) =>
+ ((((longitude + 180) % 360) + 360) % 360) - 180;
+ return withHybridRef(hybridRef, (hybrid) =>
+ hybrid.fitToCoordinates(
+ [
+ {
+ latitude: Math.max(
+ -90,
+ bounds.latitude - bounds.latitudeDelta / 2,
+ ),
+ longitude: wrap(bounds.longitude - bounds.longitudeDelta / 2),
+ },
+ {
+ latitude: Math.min(
+ 90,
+ bounds.latitude + bounds.latitudeDelta / 2,
+ ),
+ longitude: wrap(bounds.longitude + bounds.longitudeDelta / 2),
+ },
+ ],
+ { top: 32, right: 32, bottom: 32, left: 32 },
+ true,
+ ),
+ );
+ },
+ });
+ if (!isValidElement(element) || element.type !== MarkerView) {
+ throw new Error('renderCluster must return a MarkerView');
+ }
+ return cloneElement(element, {
+ key: `cluster:${cluster.id}`,
+ coordinate: cluster.coordinate,
+ });
+ });
+ }, [renderCluster, clusteringEnabled, markerViewState, onClusterPress]);
+
const polylines = polylinesProp != null ? polylinesProp : collectedPolylines;
const polygons = polygonsProp != null ? polygonsProp : collectedPolygons;
const circles = circlesProp != null ? circlesProp : collectedCircles;
@@ -238,6 +333,12 @@ export function MapView({
showsScale={showsScale}
customMapStyle={customMapStyle}
clusteringEnabled={clusteringEnabled}
+ customClusterViews={renderCluster != null}
+ onMarkerViewRenderState={
+ markerViewEntries.length > 0 || renderCluster != null
+ ? markerViewRenderCallback
+ : undefined
+ }
mapPadding={mapPadding}
markerEnteringAnimation={normalizeEnteringAnimation(
markerEnteringAnimation,
@@ -245,7 +346,7 @@ export function MapView({
clusterEnteringAnimation={normalizeEnteringAnimation(
clusterEnteringAnimation,
)}
- markers={markers}
+ markers={nativeMarkers}
polylines={polylines}
polygons={polygons}
circles={circles}
@@ -278,7 +379,8 @@ export function MapView({
hasCirclePressHandler ? callback(handleCirclePress) : undefined
}
>
- {markerViews}
+ {visibleMarkerViews}
+ {clusterViews}
);
diff --git a/package/src/components/MarkerView.tsx b/package/src/components/MarkerView.tsx
index 56ff398..93599c6 100644
--- a/package/src/components/MarkerView.tsx
+++ b/package/src/components/MarkerView.tsx
@@ -6,7 +6,11 @@ import type { MarkerAnchor } from '../types/overlays';
import { MapChildrenContext } from './MapChildrenContext';
export interface MarkerViewProps {
+ /** Stable identity used in cluster membership and onClusterPress. */
+ id?: string;
coordinate: Coordinate;
+ /** Defaults to true when clustering is enabled on the map. */
+ clusterable?: boolean;
/** Fixed layout bounds in points/dp. Animate content inside these bounds. */
width: number;
height: number;
@@ -18,7 +22,8 @@ export interface MarkerViewProps {
/**
* A live, screen-aligned marker. Its JSX stays in Fabric; no snapshots or
- * per-frame JS camera updates are used. Does not participate in clustering.
+ * per-frame JS camera updates are used. Native clustering mounts only the
+ * visible display set; keep persistent application state outside the marker.
*/
export function MarkerView({
coordinate,
@@ -31,6 +36,24 @@ export function MarkerView({
if (!isInsideMap) {
throw new Error('MarkerView must be a child of MapView');
}
+ validateMarkerViewProps({ coordinate, width, height, anchor, children });
+ return (
+
+ {children}
+
+ );
+}
+
+export function validateMarkerViewProps({
+ coordinate,
+ width,
+ height,
+ anchor,
+}: MarkerViewProps) {
if (
!Number.isFinite(width) ||
width <= 0 ||
@@ -57,13 +80,4 @@ export function MarkerView({
) {
throw new Error('MarkerView anchor must contain finite values');
}
- return (
-
- {children}
-
- );
}
diff --git a/package/src/index.ts b/package/src/index.ts
index f62a207..bc7cdc3 100644
--- a/package/src/index.ts
+++ b/package/src/index.ts
@@ -23,6 +23,7 @@ export type {
MapViewProps,
MapViewPropsForProvider,
PoiPressEvent,
+ MarkerViewCluster,
MarkerAnchor,
MarkerImage,
MarkerImageSource,
diff --git a/package/src/native/specs/MapView.nitro.ts b/package/src/native/specs/MapView.nitro.ts
index 8c997c5..2dcdeb3 100644
--- a/package/src/native/specs/MapView.nitro.ts
+++ b/package/src/native/specs/MapView.nitro.ts
@@ -102,6 +102,18 @@ export interface NativePoiPressEvent {
placeId?: string;
}
+export interface NativeMarkerViewCluster {
+ id: string;
+ coordinate: Coordinate;
+ markerIds: string[];
+ region: Region;
+}
+
+export interface NativeMarkerViewRenderState {
+ markerViewIds: string[];
+ clusters: NativeMarkerViewCluster[];
+}
+
/**
* Native props for the {@linkcode MapView} Nitro HybridView.
*
@@ -157,6 +169,12 @@ export interface MapViewProps extends HybridViewProps {
/** Whether to cluster nearby markers. */
clusteringEnabled?: boolean;
+ /** Use live Fabric hosts for cluster badges. */
+ customClusterViews?: boolean;
+
+ /** Emitted only when the native display set changes, not for camera frames. */
+ onMarkerViewRenderState?: (state: NativeMarkerViewRenderState) => void;
+
/** Padding applied to map edges, in density-independent pixels. */
mapPadding?: EdgePadding;
diff --git a/package/src/native/specs/overlays.ts b/package/src/native/specs/overlays.ts
index fe516c1..55a17f1 100644
--- a/package/src/native/specs/overlays.ts
+++ b/package/src/native/specs/overlays.ts
@@ -53,6 +53,9 @@ export interface MarkerDescriptor {
/** Unique identifier for the marker. */
id: string;
+ /** Internal Fabric host identity; omitted for SDK-rendered markers. */
+ customViewId?: string;
+
/** Geographic position of the marker. */
coordinate: Coordinate;
diff --git a/package/src/overlays/__tests__/collectMarkerViews.test.ts b/package/src/overlays/__tests__/collectMarkerViews.test.ts
index 7e2c3a1..47ac86a 100644
--- a/package/src/overlays/__tests__/collectMarkerViews.test.ts
+++ b/package/src/overlays/__tests__/collectMarkerViews.test.ts
@@ -5,7 +5,7 @@ mock.module('../../native/MarkerViewNative', () => ({
NativeMarkerView: 'NativeMarkerView',
}));
const { MarkerView } = await import('../../components/MarkerView');
-const { collectMarkerViews } = await import('../collectMarkerViews');
+const { collectMarkerViewEntries } = await import('../collectMarkerViews');
const marker = (key: string) =>
createElement(MarkerView, {
key,
@@ -17,33 +17,56 @@ const marker = (key: string) =>
describe('live marker collection', () => {
test('keeps descriptor and unrelated children out of the native child hierarchy', () => {
- const result = collectMarkerViews([
+ const result = collectMarkerViewEntries([
null,
false,
createElement('unrelated'),
marker('live'),
]);
expect(result).toHaveLength(1);
- expect(result[0].type).toBe(MarkerView);
+ expect(result[0].element.type).toBe(MarkerView);
});
- test('preserves separate fragment key scopes and reuses marker props', () => {
- const first = marker('same');
- const second = marker('same');
- const result = collectMarkerViews([
- createElement(Fragment, { key: 'first' }, first),
- createElement(Fragment, { key: 'second' }, second),
- ]);
- expect(result).toHaveLength(2);
- expect(result[0].type).toBe(Fragment);
- expect(result[0].key).not.toBe(result[1].key);
- const nested = (result[0].props as { children: { props: unknown }[] })
- .children;
- expect(nested[0].props).toBe(first.props);
+ test('returns an empty collection for descriptor-only maps and empty fragments', () => {
+ expect(collectMarkerViewEntries(createElement(Fragment, {}, null))).toEqual(
+ [],
+ );
+ expect(collectMarkerViewEntries(undefined)).toEqual([]);
});
- test('returns an empty collection for descriptor-only maps and empty fragments', () => {
- expect(collectMarkerViews(createElement(Fragment, {}, null))).toEqual([]);
- expect(collectMarkerViews(undefined)).toEqual([]);
+ test('clustering identities stay stable across reordering keyed fragments', () => {
+ const first = createElement(Fragment, { key: 'first' }, marker('same'));
+ const second = createElement(Fragment, { key: 'second' }, marker('same'));
+ const before = collectMarkerViewEntries([first, second]);
+ const after = collectMarkerViewEntries([second, first]);
+ expect(before[0].viewId).not.toBe(before[1].viewId);
+ expect(after[1].viewId).toBe(before[0].viewId);
+ expect(after[1].element.key).toBe(before[0].element.key);
+ });
+
+ test('uses explicit marker ids for cluster membership', () => {
+ const node = createElement(MarkerView, {
+ ...marker('a').props,
+ id: 'place-42',
+ });
+ expect(collectMarkerViewEntries(node)[0].markerId).toBe('place-42');
+ });
+
+ test('a slash in a local key cannot alias a nested fragment path', () => {
+ const nested = createElement(Fragment, { key: 'a' }, marker('b'));
+ const direct = marker('a/.$b');
+ const entries = collectMarkerViewEntries([nested, direct]);
+ expect(entries[0].viewId).not.toBe(entries[1].viewId);
+ expect(entries[0].markerId).not.toBe(entries[1].markerId);
+ });
+
+ test('rejects invalid coordinates before they reach the native cluster engine', () => {
+ const node = createElement(MarkerView, {
+ ...marker('a').props,
+ coordinate: { latitude: Infinity, longitude: 21 },
+ });
+ expect(() => collectMarkerViewEntries(node)).toThrow(
+ 'valid latitude and longitude',
+ );
});
});
diff --git a/package/src/overlays/__tests__/markerViewRenderState.test.ts b/package/src/overlays/__tests__/markerViewRenderState.test.ts
new file mode 100644
index 0000000..9210825
--- /dev/null
+++ b/package/src/overlays/__tests__/markerViewRenderState.test.ts
@@ -0,0 +1,34 @@
+import { expect, test } from 'bun:test';
+import { markerViewRenderStatesEqual } from '../markerViewRenderState';
+import type { NativeMarkerViewRenderState } from '../../native/specs/MapView.nitro';
+
+const state: NativeMarkerViewRenderState = {
+ markerViewIds: ['visible'],
+ clusters: [
+ {
+ id: 'cluster',
+ coordinate: { latitude: 52, longitude: 21 },
+ markerIds: ['a', 'b'],
+ region: {
+ latitude: 52,
+ longitude: 21,
+ latitudeDelta: 0.01,
+ longitudeDelta: 0.01,
+ },
+ },
+ ],
+};
+
+test('reinstalling a native callback with equivalent data does not trigger a render loop', () => {
+ expect(markerViewRenderStatesEqual(state, structuredClone(state))).toBe(true);
+ expect(markerViewRenderStatesEqual(null, state)).toBe(false);
+});
+
+test('same-count membership and expansion-bound changes refresh the JSX cluster', () => {
+ const members = structuredClone(state);
+ members.clusters[0].markerIds = ['a', 'c'];
+ expect(markerViewRenderStatesEqual(state, members)).toBe(false);
+ const bounds = structuredClone(state);
+ bounds.clusters[0].region.longitudeDelta = 0.02;
+ expect(markerViewRenderStatesEqual(state, bounds)).toBe(false);
+});
diff --git a/package/src/overlays/collectMarkerViews.ts b/package/src/overlays/collectMarkerViews.ts
index 1939e58..80c0662 100644
--- a/package/src/overlays/collectMarkerViews.ts
+++ b/package/src/overlays/collectMarkerViews.ts
@@ -1,20 +1,40 @@
import { Children, Fragment, cloneElement, isValidElement } from 'react';
import type { ReactElement, ReactNode } from 'react';
-import { MarkerView } from '../components/MarkerView';
+import {
+ MarkerView,
+ validateMarkerViewProps,
+ type MarkerViewProps,
+} from '../components/MarkerView';
-/** Keep live hosts out of descriptor serialization, preserving React keys. */
-export function collectMarkerViews(children: ReactNode): ReactElement[] {
- const result: ReactElement[] = [];
- Children.toArray(children).forEach((child) => {
- if (!isValidElement(child)) return;
- if (child.type === Fragment) {
- const fragment = child as ReactElement<{ children?: ReactNode }>;
- const nested = collectMarkerViews(fragment.props.children);
- if (nested.length > 0)
- result.push(cloneElement(fragment, { children: nested }));
- } else if (child.type === MarkerView) {
- result.push(child);
- }
- });
- return result;
+export interface MarkerViewEntry {
+ viewId: string;
+ markerId: string;
+ element: ReactElement;
+}
+
+/** Fragment paths distinguish repeated local keys while retaining host identity. */
+export function collectMarkerViewEntries(
+ children: ReactNode,
+): MarkerViewEntry[] {
+ const entries: MarkerViewEntry[] = [];
+ function visit(nodes: ReactNode, parent: string[]) {
+ Children.toArray(nodes).forEach((child) => {
+ if (!isValidElement(child)) return;
+ const segments = [...parent, String(child.key)];
+ const path = JSON.stringify(segments);
+ if (child.type === Fragment) {
+ visit((child.props as { children?: ReactNode }).children, segments);
+ } else if (child.type === MarkerView) {
+ const element = child as ReactElement;
+ validateMarkerViewProps(element.props);
+ entries.push({
+ viewId: path,
+ markerId: element.props.id ?? `marker-view:${path}`,
+ element: cloneElement(element, { key: path }),
+ });
+ }
+ });
+ }
+ visit(children, []);
+ return entries;
}
diff --git a/package/src/overlays/markerViewRenderState.ts b/package/src/overlays/markerViewRenderState.ts
new file mode 100644
index 0000000..1452ff2
--- /dev/null
+++ b/package/src/overlays/markerViewRenderState.ts
@@ -0,0 +1,28 @@
+import type { NativeMarkerViewRenderState } from '../native/specs/MapView.nitro';
+
+export function markerViewRenderStatesEqual(
+ previous: NativeMarkerViewRenderState | null,
+ next: NativeMarkerViewRenderState,
+): boolean {
+ if (!previous) return false;
+ const sameIds = (left: string[], right: string[]) =>
+ left.length === right.length &&
+ left.every((id, index) => id === right[index]);
+ return (
+ sameIds(previous.markerViewIds, next.markerViewIds) &&
+ previous.clusters.length === next.clusters.length &&
+ previous.clusters.every((cluster, index) => {
+ const other = next.clusters[index];
+ return (
+ cluster.id === other.id &&
+ cluster.coordinate.latitude === other.coordinate.latitude &&
+ cluster.coordinate.longitude === other.coordinate.longitude &&
+ cluster.region.latitude === other.region.latitude &&
+ cluster.region.longitude === other.region.longitude &&
+ cluster.region.latitudeDelta === other.region.latitudeDelta &&
+ cluster.region.longitudeDelta === other.region.longitudeDelta &&
+ sameIds(cluster.markerIds, other.markerIds)
+ );
+ })
+ );
+}
diff --git a/package/src/types/index.ts b/package/src/types/index.ts
index b6b344d..0f5e92e 100644
--- a/package/src/types/index.ts
+++ b/package/src/types/index.ts
@@ -10,6 +10,7 @@ export type {
MapViewProps,
MapViewPropsForProvider,
PoiPressEvent,
+ MarkerViewCluster,
} from './map';
export type {
MarkerAnchor,
diff --git a/package/src/types/map.ts b/package/src/types/map.ts
index 7d96db7..472f2c7 100644
--- a/package/src/types/map.ts
+++ b/package/src/types/map.ts
@@ -1,4 +1,5 @@
-import type { ReactNode } from 'react';
+import type { ReactElement, ReactNode } from 'react';
+import type { MarkerViewProps } from '../components/MarkerView';
import type { StyleProp, ViewStyle } from 'react-native';
import type { Camera } from './camera';
import type { Coordinate } from './coordinate';
@@ -38,6 +39,15 @@ export interface GooglePoiPressEvent {
export type PoiPressEvent = ApplePoiPressEvent | GooglePoiPressEvent;
+export interface MarkerViewCluster {
+ id: string;
+ coordinate: Coordinate;
+ markerIds: string[];
+ count: number;
+ /** Calls onClusterPress and fits the native map to the cluster's bounds. */
+ onPress: () => Promise;
+}
+
/**
* Props shared by all map providers.
*/
@@ -45,6 +55,9 @@ interface BaseMapViewProps {
style?: StyleProp;
children?: ReactNode;
+ /** Render native clusters as a live MarkerView containing arbitrary JSX. */
+ renderCluster?: (cluster: MarkerViewCluster) => ReactElement;
+
/** Initial or controlled region. */
region?: Region;
From 6343832e4095d75b9e6e8758e3e297b3fa671f91 Mon Sep 17 00:00:00 2001
From: Piotr Graczyk
Date: Fri, 11 Sep 2026 15:11:45 +0200
Subject: [PATCH 09/10] fix: fit custom clusters to their actual member
coordinates
---
package/src/components/MapView.tsx | 31 +++++++------------
.../__tests__/clusterCoordinates.test.ts | 26 ++++++++++++++++
package/src/overlays/clusterCoordinates.ts | 13 ++++++++
3 files changed, 50 insertions(+), 20 deletions(-)
create mode 100644 package/src/overlays/__tests__/clusterCoordinates.test.ts
create mode 100644 package/src/overlays/clusterCoordinates.ts
diff --git a/package/src/components/MapView.tsx b/package/src/components/MapView.tsx
index caaacf5..2355779 100644
--- a/package/src/components/MapView.tsx
+++ b/package/src/components/MapView.tsx
@@ -2,6 +2,7 @@ import { MarkerView } from './MarkerView';
import { MapChildrenContext } from './MapChildrenContext';
import { collectMarkerViewEntries } from '../overlays/collectMarkerViews';
import { markerViewRenderStatesEqual } from '../overlays/markerViewRenderState';
+import { clusterCoordinates } from '../overlays/clusterCoordinates';
import {
cloneElement,
isValidElement,
@@ -157,27 +158,11 @@ export function MapView({
count: cluster.markerIds.length,
onPress: () => {
onClusterPress?.(cluster.markerIds, cluster.coordinate);
- const bounds = cluster.region;
- const wrap = (longitude: number) =>
- ((((longitude + 180) % 360) + 360) % 360) - 180;
+ // The SDK cluster region has a minimum span that can prevent dense
+ // clusters from expanding. Fit the actual members on a user press.
return withHybridRef(hybridRef, (hybrid) =>
hybrid.fitToCoordinates(
- [
- {
- latitude: Math.max(
- -90,
- bounds.latitude - bounds.latitudeDelta / 2,
- ),
- longitude: wrap(bounds.longitude - bounds.longitudeDelta / 2),
- },
- {
- latitude: Math.min(
- 90,
- bounds.latitude + bounds.latitudeDelta / 2,
- ),
- longitude: wrap(bounds.longitude + bounds.longitudeDelta / 2),
- },
- ],
+ clusterCoordinates(cluster.markerIds, nativeMarkers),
{ top: 32, right: 32, bottom: 32, left: 32 },
true,
),
@@ -192,7 +177,13 @@ export function MapView({
coordinate: cluster.coordinate,
});
});
- }, [renderCluster, clusteringEnabled, markerViewState, onClusterPress]);
+ }, [
+ renderCluster,
+ clusteringEnabled,
+ markerViewState,
+ onClusterPress,
+ nativeMarkers,
+ ]);
const polylines = polylinesProp != null ? polylinesProp : collectedPolylines;
const polygons = polygonsProp != null ? polygonsProp : collectedPolygons;
diff --git a/package/src/overlays/__tests__/clusterCoordinates.test.ts b/package/src/overlays/__tests__/clusterCoordinates.test.ts
new file mode 100644
index 0000000..fe0dcdc
--- /dev/null
+++ b/package/src/overlays/__tests__/clusterCoordinates.test.ts
@@ -0,0 +1,26 @@
+import { expect, test } from 'bun:test';
+import { clusterCoordinates } from '../clusterCoordinates';
+
+test('dense cluster expansion fits only its actual members without the SDK minimum region span', () => {
+ const first = { latitude: 52.2297, longitude: 21.0122 };
+ const second = { latitude: 52.2302, longitude: 21.01285 };
+ expect(
+ clusterCoordinates(
+ ['live', 'sdk'],
+ [
+ { id: 'outside', coordinate: { latitude: 50, longitude: 20 } },
+ { id: 'live', coordinate: first },
+ { id: 'sdk', coordinate: second },
+ ],
+ ),
+ ).toEqual([first, second]);
+});
+
+test('a stale cluster never fits unrelated markers after its members disappear', () => {
+ expect(
+ clusterCoordinates(
+ ['removed'],
+ [{ id: 'new', coordinate: { latitude: 52, longitude: 21 } }],
+ ),
+ ).toEqual([]);
+});
diff --git a/package/src/overlays/clusterCoordinates.ts b/package/src/overlays/clusterCoordinates.ts
new file mode 100644
index 0000000..3da4a6a
--- /dev/null
+++ b/package/src/overlays/clusterCoordinates.ts
@@ -0,0 +1,13 @@
+import type { Coordinate } from '../types/coordinate';
+
+export function clusterCoordinates(
+ markerIds: string[],
+ markers: readonly { id: string; coordinate: Coordinate }[],
+): Coordinate[] {
+ const members = new Set(markerIds);
+ const coordinates: Coordinate[] = [];
+ for (const marker of markers) {
+ if (members.has(marker.id)) coordinates.push(marker.coordinate);
+ }
+ return coordinates;
+}
From 2a96412404e22c45f8713988d2ccb4c311b5a354 Mon Sep 17 00:00:00 2001
From: Piotr Graczyk
Date: Fri, 11 Sep 2026 15:32:07 +0200
Subject: [PATCH 10/10] docs: record custom cluster runtime validation and
remaining performance gate
---
docs/research/custom-marker-device-results.md | 24 +-
.../results/ios-simulator-v4-clusters.json | 1055 +++++++++++++++++
2 files changed, 1076 insertions(+), 3 deletions(-)
create mode 100644 experiments/custom-markers/results/ios-simulator-v4-clusters.json
diff --git a/docs/research/custom-marker-device-results.md b/docs/research/custom-marker-device-results.md
index db7b55b..ea65cdf 100644
--- a/docs/research/custom-marker-device-results.md
+++ b/docs/research/custom-marker-device-results.md
@@ -4,7 +4,7 @@ The unrestricted **arbitrary JSX at 120 FPS** target is not met. Live Fabric hos
## Corrected moving-camera workload (v3)
-- iPhone 15 Pro, iOS 26.6 beta (23G5043d), Release, RN 0.86 / Reanimated 4.5.0 / Nitro 0.35.10, MapKit. Build source: `fc8fd56`; subsequent changes only analyze/document these results.
+- iPhone 15 Pro, iOS 26.6 beta (23G5043d), Release, RN 0.86 / Reanimated 4.5.0 / Nitro 0.35.10, MapKit. Build source: `fc8fd56`. These measurements predate the clustering implementation below.
- 36 cases: 10/50/200 submitted markers, four modes, three passes with alternating mode order. Descriptor pins are the control in the same binary; this is not a separately built pre-change release comparison. SDK pin collision/culling can make the rendered count differ.
- Four camera animations per case, each **1.2 seconds**, spaced 1.5 seconds apart. Every case reached its checked final coordinate and 36-degree heading. Warmup/remount and logging are outside the recorded interval.
- Fixed 96 × 48 point JSX badges contain text, a glyph, and a stateful Pressable. Transform mode animates child rotation; layout mode animates child width. Each style returns only its animated property. No Reanimated global performance flags were enabled.
@@ -57,13 +57,31 @@ Apple documents adaptive refresh arbitration rather than a guaranteed requested
## Clustering scope
-The experiments above intentionally disable clustering to expose the cost of fully expanded markers. They do not measure a clustered production workload. The requested feature also requires custom JSX clusters, native grouping, and tests for cluster expansion/collapse; that acceptance gate remains open in this recorded build.
+The experiments above intentionally disable clustering to expose the cost of fully expanded markers. They do not measure a clustered production workload.
+
+Implementation checkpoint `7bb0775` adds shared native grouping of descriptor and live markers, custom JSX through `renderCluster`, and unmounting of clustered-away React subtrees. Workload v4 adds 24 cases: 200/1000 points, SDK/static/transform/layout cluster modes, three passes, and camera zoom transitions from 14 to 17 and back. Do not pool v3 and v4 results.
+
+At this checkpoint, both Apple-only and Google-enabled iOS Release builds passed. Android Kotlin and arm64 C++/JNI compilation passed, together with 21 native tests. The five added registry tests cover mixed SDK/live entries, collapse/expansion, default SDK clusters, unchanged display sets, and switching a retained entry back to SDK rendering. All 88 Bun tests, codegen, lint, typechecks, library build, and example TypeScript checks passed. The generated compatibility patch is idempotent across 157 files. CI quality, commitlint, and React Doctor gates passed; the latter still reports advisory findings.
+
+The physical v4 run remains pending: iOS rejected launch with a locked-device error after installation. A fresh device query at 15:26 CEST still reported `passcodeRequired: true`; the final Apple-only Release binary including `6343832` is built and ready. This build evidence does not establish preserved 120 FPS presentation.
+
+## Simulator clustering checks (v4)
+
+The iPhone 17 Pro Max simulator, iOS 26.5, Release/MapKit, reports a 60 Hz maximum. These checks establish functionality, not device performance. Source `6343832` includes the press-to-expand correction described below; all 90 Bun tests, lint, package typechecks, library build, and the simulator Release build passed.
+
+The initial 200-point custom-transform view displayed JSX cluster counts. The first press test revealed that the existing native cluster region's minimum 0.01-degree span was too large to expand dense points. The custom press helper now fits actual member coordinates, with its lookup performed only on press. Repeating the same press removed the cluster badges from the zoomed viewport and displayed individual markers. Pressing marker 83 changed its local count from 0 to 1; map presses stayed at zero.
+
+The first automated cluster series on a shared simulator includes a background interruption during warmup after the fourth case. OS logs contain `UIApplicationDidEnterBackgroundNotification`; the process remained alive and resumed without restart after foreground activation. The device was subsequently reported in use by another test session, so that partial series stopped at 19 cases and was excluded from acceptance. A separate temporary simulator was created for the final functional series. Simulator timing is not device performance evidence.
+
+The isolated series completed all **24 unique cases**. Every final coordinate/heading check passed; both zoom endpoints were 14, and the app was active at all recorded endpoints. In all 18 JSX cases, 200 and 1000 submitted points each produced 48 mounted hosts before the route and 24 afterward (including offscreen hosts). The final accessibility tree contained 24 custom cluster badges and a zero map-press count. Unmounting removed all map/cluster entries. One recorded interval lasted 6.823 seconds while the host machine also ran other work; none of these timings are used for performance acceptance.
+
+[Functional case records](../../experiments/custom-markers/results/ios-simulator-v4-clusters.json) preserve camera and host-count endpoints. Intermediate zoom targets are exercised but not independently asserted. The temporary isolated simulator was removed after collecting evidence; the shared simulator was left to its other session.
## Invalid earlier workloads
The original v1 primary and v2 JSX-control series passed `1200` to a duration measured in seconds. They cannot establish moving-camera performance. Their raw files remain available for provenance: [v1 primary](../../experiments/custom-markers/results/iphone-15-pro-run-1.json), [v2 control](../../experiments/custom-markers/results/iphone-15-pro-control.json). Version 1 also returned both width and transform in its animated style; versions 2/3 return only the animated property. Do not pool these series.
-## Functional and build checks
+## Earlier functional and build checks (before clustering)
- Physical iPhone: live JSX appeared, a marker Pressable updated its state while the map press count stayed unchanged, and unmount removed its live hosts. All 36 corrected camera routes passed endpoint validation. Exact marker/map presentation synchronization is not established by endpoints.
- Actual UIKit host sources: anchor/projection, hit testing, culling/reentry, unmount/map isolation, surface replacement, and rendered clipping checks passed.
diff --git a/experiments/custom-markers/results/ios-simulator-v4-clusters.json b/experiments/custom-markers/results/ios-simulator-v4-clusters.json
new file mode 100644
index 0000000..ca120e8
--- /dev/null
+++ b/experiments/custom-markers/results/ios-simulator-v4-clusters.json
@@ -0,0 +1,1055 @@
+{
+ "sourceCommit": "6343832",
+ "workloadVersion": 4,
+ "device": "isolated iPhone 17 Pro Max simulator",
+ "os": "iOS 26.5",
+ "provider": "MapKit",
+ "configuration": "Release",
+ "reportedMaximumHz": 60,
+ "purpose": "Functional clustering and camera-route validation. Not physical-device performance or presented-frame evidence.",
+ "limitations": [
+ "Intermediate zoom targets are exercised but only final camera endpoints are asserted.",
+ "Native host counts are endpoint measurements, not per-frame counts.",
+ "Host machine also ran other work. One recorded interval lasted 6.823 seconds; simulator timings are excluded from performance acceptance."
+ ],
+ "interactiveChecks": {
+ "clusterPress": "200-point custom cluster press expanded to individual markers; the zoomed viewport had no cluster badges.",
+ "markerPress": "Marker 83 press count changed from 0 to 1 while the map press count stayed 0.",
+ "completion": "24 cases completed; map press count 0; 24 custom cluster badges in final accessibility tree.",
+ "unmount": "Mount toggle removed all cluster/map accessibility entries; only benchmark controls remained."
+ },
+ "cases": [
+ {
+ "mode": "cluster-pins",
+ "count": 200,
+ "pass": 0,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6011.4990833099,
+ "environmentBefore": {
+ "os": "26.5",
+ "visibleMarkerViews": 0,
+ "lowPowerMode": false,
+ "applicationActive": true,
+ "thermalState": 0,
+ "mountedMarkerViews": 0
+ },
+ "environmentAfter": {
+ "applicationActive": true,
+ "os": "26.5",
+ "lowPowerMode": false,
+ "visibleMarkerViews": 0,
+ "thermalState": 0,
+ "mountedMarkerViews": 0
+ }
+ },
+ {
+ "mode": "cluster-static",
+ "count": 200,
+ "pass": 0,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6065.83358332864,
+ "environmentBefore": {
+ "applicationActive": true,
+ "thermalState": 0,
+ "mountedMarkerViews": 48,
+ "os": "26.5",
+ "lowPowerMode": false,
+ "visibleMarkerViews": 48
+ },
+ "environmentAfter": {
+ "applicationActive": true,
+ "thermalState": 0,
+ "mountedMarkerViews": 24,
+ "lowPowerMode": false,
+ "visibleMarkerViews": 22,
+ "os": "26.5"
+ }
+ },
+ {
+ "mode": "cluster-transform",
+ "count": 200,
+ "pass": 0,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6063.3725416555535,
+ "environmentBefore": {
+ "thermalState": 0,
+ "lowPowerMode": false,
+ "mountedMarkerViews": 48,
+ "os": "26.5",
+ "applicationActive": true,
+ "visibleMarkerViews": 48
+ },
+ "environmentAfter": {
+ "thermalState": 0,
+ "lowPowerMode": false,
+ "mountedMarkerViews": 24,
+ "os": "26.5",
+ "applicationActive": true,
+ "visibleMarkerViews": 22
+ }
+ },
+ {
+ "mode": "cluster-layout",
+ "count": 200,
+ "pass": 0,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6062.2295000066515,
+ "environmentBefore": {
+ "thermalState": 0,
+ "visibleMarkerViews": 48,
+ "applicationActive": true,
+ "os": "26.5",
+ "lowPowerMode": false,
+ "mountedMarkerViews": 48
+ },
+ "environmentAfter": {
+ "thermalState": 0,
+ "applicationActive": true,
+ "os": "26.5",
+ "visibleMarkerViews": 22,
+ "lowPowerMode": false,
+ "mountedMarkerViews": 24
+ }
+ },
+ {
+ "mode": "cluster-pins",
+ "count": 1000,
+ "pass": 0,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6007.412666658638,
+ "environmentBefore": {
+ "thermalState": 0,
+ "mountedMarkerViews": 0,
+ "applicationActive": true,
+ "os": "26.5",
+ "visibleMarkerViews": 0,
+ "lowPowerMode": false
+ },
+ "environmentAfter": {
+ "thermalState": 0,
+ "mountedMarkerViews": 0,
+ "applicationActive": true,
+ "os": "26.5",
+ "visibleMarkerViews": 0,
+ "lowPowerMode": false
+ }
+ },
+ {
+ "mode": "cluster-static",
+ "count": 1000,
+ "pass": 0,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6070.638000004692,
+ "environmentBefore": {
+ "visibleMarkerViews": 48,
+ "applicationActive": true,
+ "thermalState": 0,
+ "lowPowerMode": false,
+ "mountedMarkerViews": 48,
+ "os": "26.5"
+ },
+ "environmentAfter": {
+ "visibleMarkerViews": 23,
+ "os": "26.5",
+ "thermalState": 0,
+ "mountedMarkerViews": 24,
+ "applicationActive": true,
+ "lowPowerMode": false
+ }
+ },
+ {
+ "mode": "cluster-transform",
+ "count": 1000,
+ "pass": 0,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6070.5380416766275,
+ "environmentBefore": {
+ "lowPowerMode": false,
+ "thermalState": 0,
+ "visibleMarkerViews": 48,
+ "os": "26.5",
+ "applicationActive": true,
+ "mountedMarkerViews": 48
+ },
+ "environmentAfter": {
+ "lowPowerMode": false,
+ "thermalState": 0,
+ "visibleMarkerViews": 23,
+ "os": "26.5",
+ "applicationActive": true,
+ "mountedMarkerViews": 24
+ }
+ },
+ {
+ "mode": "cluster-layout",
+ "count": 1000,
+ "pass": 0,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6067.25458332221,
+ "environmentBefore": {
+ "thermalState": 0,
+ "os": "26.5",
+ "mountedMarkerViews": 48,
+ "applicationActive": true,
+ "visibleMarkerViews": 48,
+ "lowPowerMode": false
+ },
+ "environmentAfter": {
+ "thermalState": 0,
+ "os": "26.5",
+ "mountedMarkerViews": 24,
+ "applicationActive": true,
+ "visibleMarkerViews": 23,
+ "lowPowerMode": false
+ }
+ },
+ {
+ "mode": "cluster-layout",
+ "count": 200,
+ "pass": 1,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6065.64070834429,
+ "environmentBefore": {
+ "mountedMarkerViews": 48,
+ "visibleMarkerViews": 48,
+ "thermalState": 0,
+ "applicationActive": true,
+ "lowPowerMode": false,
+ "os": "26.5"
+ },
+ "environmentAfter": {
+ "mountedMarkerViews": 24,
+ "visibleMarkerViews": 22,
+ "thermalState": 0,
+ "applicationActive": true,
+ "os": "26.5",
+ "lowPowerMode": false
+ }
+ },
+ {
+ "mode": "cluster-transform",
+ "count": 200,
+ "pass": 1,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6070.488541648956,
+ "environmentBefore": {
+ "os": "26.5",
+ "lowPowerMode": false,
+ "thermalState": 0,
+ "applicationActive": true,
+ "mountedMarkerViews": 48,
+ "visibleMarkerViews": 48
+ },
+ "environmentAfter": {
+ "thermalState": 0,
+ "lowPowerMode": false,
+ "os": "26.5",
+ "visibleMarkerViews": 22,
+ "mountedMarkerViews": 24,
+ "applicationActive": true
+ }
+ },
+ {
+ "mode": "cluster-static",
+ "count": 200,
+ "pass": 1,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6066.4352500170935,
+ "environmentBefore": {
+ "os": "26.5",
+ "visibleMarkerViews": 48,
+ "thermalState": 0,
+ "lowPowerMode": false,
+ "applicationActive": true,
+ "mountedMarkerViews": 48
+ },
+ "environmentAfter": {
+ "mountedMarkerViews": 24,
+ "visibleMarkerViews": 22,
+ "os": "26.5",
+ "applicationActive": true,
+ "lowPowerMode": false,
+ "thermalState": 0
+ }
+ },
+ {
+ "mode": "cluster-pins",
+ "count": 200,
+ "pass": 1,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6010.145249980269,
+ "environmentBefore": {
+ "visibleMarkerViews": 0,
+ "os": "26.5",
+ "applicationActive": true,
+ "thermalState": 0,
+ "lowPowerMode": false,
+ "mountedMarkerViews": 0
+ },
+ "environmentAfter": {
+ "visibleMarkerViews": 0,
+ "os": "26.5",
+ "applicationActive": true,
+ "thermalState": 0,
+ "lowPowerMode": false,
+ "mountedMarkerViews": 0
+ }
+ },
+ {
+ "mode": "cluster-layout",
+ "count": 1000,
+ "pass": 1,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6070.447000005515,
+ "environmentBefore": {
+ "mountedMarkerViews": 48,
+ "lowPowerMode": false,
+ "os": "26.5",
+ "visibleMarkerViews": 48,
+ "applicationActive": true,
+ "thermalState": 0
+ },
+ "environmentAfter": {
+ "mountedMarkerViews": 24,
+ "lowPowerMode": false,
+ "os": "26.5",
+ "visibleMarkerViews": 23,
+ "applicationActive": true,
+ "thermalState": 0
+ }
+ },
+ {
+ "mode": "cluster-transform",
+ "count": 1000,
+ "pass": 1,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6822.899833350675,
+ "environmentBefore": {
+ "thermalState": 0,
+ "os": "26.5",
+ "visibleMarkerViews": 48,
+ "applicationActive": true,
+ "mountedMarkerViews": 48,
+ "lowPowerMode": false
+ },
+ "environmentAfter": {
+ "thermalState": 0,
+ "os": "26.5",
+ "applicationActive": true,
+ "visibleMarkerViews": 23,
+ "mountedMarkerViews": 24,
+ "lowPowerMode": false
+ }
+ },
+ {
+ "mode": "cluster-static",
+ "count": 1000,
+ "pass": 1,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6079.998333327239,
+ "environmentBefore": {
+ "applicationActive": true,
+ "visibleMarkerViews": 48,
+ "mountedMarkerViews": 48,
+ "lowPowerMode": false,
+ "os": "26.5",
+ "thermalState": 0
+ },
+ "environmentAfter": {
+ "applicationActive": true,
+ "os": "26.5",
+ "visibleMarkerViews": 23,
+ "lowPowerMode": false,
+ "mountedMarkerViews": 24,
+ "thermalState": 0
+ }
+ },
+ {
+ "mode": "cluster-pins",
+ "count": 1000,
+ "pass": 1,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6014.580999995815,
+ "environmentBefore": {
+ "os": "26.5",
+ "visibleMarkerViews": 0,
+ "lowPowerMode": false,
+ "applicationActive": true,
+ "thermalState": 0,
+ "mountedMarkerViews": 0
+ },
+ "environmentAfter": {
+ "os": "26.5",
+ "visibleMarkerViews": 0,
+ "lowPowerMode": false,
+ "applicationActive": true,
+ "thermalState": 0,
+ "mountedMarkerViews": 0
+ }
+ },
+ {
+ "mode": "cluster-pins",
+ "count": 200,
+ "pass": 2,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6008.01925000269,
+ "environmentBefore": {
+ "mountedMarkerViews": 0,
+ "lowPowerMode": false,
+ "thermalState": 0,
+ "applicationActive": true,
+ "os": "26.5",
+ "visibleMarkerViews": 0
+ },
+ "environmentAfter": {
+ "applicationActive": true,
+ "lowPowerMode": false,
+ "thermalState": 0,
+ "mountedMarkerViews": 0,
+ "os": "26.5",
+ "visibleMarkerViews": 0
+ }
+ },
+ {
+ "mode": "cluster-static",
+ "count": 200,
+ "pass": 2,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6065.660791675327,
+ "environmentBefore": {
+ "applicationActive": true,
+ "os": "26.5",
+ "mountedMarkerViews": 48,
+ "lowPowerMode": false,
+ "visibleMarkerViews": 48,
+ "thermalState": 0
+ },
+ "environmentAfter": {
+ "applicationActive": true,
+ "os": "26.5",
+ "lowPowerMode": false,
+ "mountedMarkerViews": 24,
+ "visibleMarkerViews": 22,
+ "thermalState": 0
+ }
+ },
+ {
+ "mode": "cluster-transform",
+ "count": 200,
+ "pass": 2,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6065.691875002813,
+ "environmentBefore": {
+ "mountedMarkerViews": 48,
+ "os": "26.5",
+ "applicationActive": true,
+ "thermalState": 0,
+ "lowPowerMode": false,
+ "visibleMarkerViews": 48
+ },
+ "environmentAfter": {
+ "mountedMarkerViews": 24,
+ "os": "26.5",
+ "applicationActive": true,
+ "lowPowerMode": false,
+ "thermalState": 0,
+ "visibleMarkerViews": 22
+ }
+ },
+ {
+ "mode": "cluster-layout",
+ "count": 200,
+ "pass": 2,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6070.110625005327,
+ "environmentBefore": {
+ "applicationActive": true,
+ "os": "26.5",
+ "visibleMarkerViews": 48,
+ "thermalState": 0,
+ "mountedMarkerViews": 48,
+ "lowPowerMode": false
+ },
+ "environmentAfter": {
+ "applicationActive": true,
+ "os": "26.5",
+ "thermalState": 0,
+ "mountedMarkerViews": 24,
+ "visibleMarkerViews": 22,
+ "lowPowerMode": false
+ }
+ },
+ {
+ "mode": "cluster-pins",
+ "count": 1000,
+ "pass": 2,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6009.8441666632425,
+ "environmentBefore": {
+ "mountedMarkerViews": 0,
+ "visibleMarkerViews": 0,
+ "os": "26.5",
+ "thermalState": 0,
+ "applicationActive": true,
+ "lowPowerMode": false
+ },
+ "environmentAfter": {
+ "visibleMarkerViews": 0,
+ "thermalState": 0,
+ "os": "26.5",
+ "mountedMarkerViews": 0,
+ "applicationActive": true,
+ "lowPowerMode": false
+ }
+ },
+ {
+ "mode": "cluster-static",
+ "count": 1000,
+ "pass": 2,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6070.38245833246,
+ "environmentBefore": {
+ "os": "26.5",
+ "thermalState": 0,
+ "visibleMarkerViews": 48,
+ "mountedMarkerViews": 48,
+ "applicationActive": true,
+ "lowPowerMode": false
+ },
+ "environmentAfter": {
+ "thermalState": 0,
+ "os": "26.5",
+ "visibleMarkerViews": 23,
+ "applicationActive": true,
+ "mountedMarkerViews": 24,
+ "lowPowerMode": false
+ }
+ },
+ {
+ "mode": "cluster-transform",
+ "count": 1000,
+ "pass": 2,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6060.8458333299495,
+ "environmentBefore": {
+ "mountedMarkerViews": 48,
+ "thermalState": 0,
+ "os": "26.5",
+ "visibleMarkerViews": 48,
+ "applicationActive": true,
+ "lowPowerMode": false
+ },
+ "environmentAfter": {
+ "thermalState": 0,
+ "mountedMarkerViews": 24,
+ "os": "26.5",
+ "visibleMarkerViews": 23,
+ "applicationActive": true,
+ "lowPowerMode": false
+ }
+ },
+ {
+ "mode": "cluster-layout",
+ "count": 1000,
+ "pass": 2,
+ "cameraBefore": {
+ "center": {
+ "latitude": 52.229699999999994,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 0,
+ "pitch": 0,
+ "altitude": 2996.3187130528754
+ },
+ "cameraAfter": {
+ "center": {
+ "latitude": 52.22870000000001,
+ "longitude": 21.01220000000001
+ },
+ "zoom": 14,
+ "heading": 36,
+ "pitch": 0,
+ "altitude": 2996.386203923062
+ },
+ "cameraRouteCompleted": true,
+ "durationMs": 6064.618874981534,
+ "environmentBefore": {
+ "os": "26.5",
+ "lowPowerMode": false,
+ "mountedMarkerViews": 48,
+ "visibleMarkerViews": 48,
+ "thermalState": 0,
+ "applicationActive": true
+ },
+ "environmentAfter": {
+ "os": "26.5",
+ "lowPowerMode": false,
+ "applicationActive": true,
+ "visibleMarkerViews": 23,
+ "thermalState": 0,
+ "mountedMarkerViews": 24
+ }
+ }
+ ]
+}